/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #fee900;
    --black: #000000;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #777777;
    --background-light: rgba(221, 221, 221, 0.87);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* ===== Header Styles ===== */
.header {
    background-color: #000;
    padding: 0px 40px;
    position: sticky;
    top: 0;
    width: 100%;
    overflow: visible;
    z-index: 1000;
    border-bottom: 2px solid #fee900;
}

/* Search Bar - Positioned in top center */
.search-container{
    position: absolute;
    top: 15px;
    left: 52%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.3s ease;
}

/* Search Toggle Button (Mobile Only) */
.search-toggle-btn {
    display: none;
    position: absolute;
    top: 15px;
    left: 52%;
    transform: translateX(-50%);
    background-color: #fee900;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 11;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    flex-direction: row;
}

.search-toggle-btn:hover {
    background-color: #ffed33;
    transform: translateX(-50%) scale(1.1);
}

.search-toggle-btn i {
    color: #000;
}

/* Login/Signup Buttons - Positioned in top right */
.auth-buttons{
    position: absolute;
    top: 15px;
    right: 40px;
    z-index: 10;
}

.button-bg{
    background-color: #fee900;
    color: #000;
    display: flex;
    font-family: 'Changa One';
    font-style: italic;
    font-size: 16px;
    border-radius: 7px;
    border: 2px solid #000;
    height: 30px;
}

.login-bg{
    background-color: #000;
    color: #fee900;
    clip-path: polygon(100% 0, 0 0, 0 100%, 70% 100%);
    padding-left: 15px;
    padding-right: 25px;
    position: relative;
    z-index: 1;
    border: 2px solid #fee900;
    border-right: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.login-bg a{
    text-decoration: none;
    color: #fee900;
    display: inline-block;
}

.signup-bg{
    padding-right: 15px;
    /* padding-left: 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.signup-bg a{
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.login-bg:hover,
.signup-bg:hover{
    transform: scale(1.09);
}

.search-form{
    display: flex;
    align-items: center;
}

.search-button{
    background-color: #fee900;
    border: 2px solid #000;
    border-radius: 25px 0 0 25px;
    border-right: none;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    height: 40px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    margin-right: 0;
    z-index: 1;
}

.search-button i{
    color: #000;
    font-size: 16px;    
}

.search-button:hover{
    background-color: #ffed33;
}

.search-input{
    width: 340px;
    padding: 10px 20px;
    border: 2px solid #000;
    border-left: none;
    border-radius: 0 25px 25px 0;
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    height: 40px;
    position: relative;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -15px;
    z-index: 0;
}

.search-close-btn {
    display: none;
    background-color: transparent;
    border: none;
    color: #fee900;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

.search-input::placeholder{
    color: #999;
}

.header-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    min-height: 120px;
    /* max-width: 1400px; */
    /* margin: 0 auto; */
}

.logo-container{
    flex: 0 0 auto;
}

.logo{
    width: 200px;
    height: 120px;
    object-fit: contain;
}

.nav{
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
    padding-top: 50px;
    overflow: visible;
    min-width: 0;
    flex-shrink: 1;
}

.nav-link{
    font-family: 'Changa One';
    font-style: italic;
    color: #fee900;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover{
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 5px;
}


.nav-link-wrapper{
    position: relative;
    display: inline-block;
    pointer-events: auto;
}

.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    width: max-content;
    min-width: fit-content;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 200px);
    padding: 20px 30px;
    display: flex !important;
    flex-direction: row;
    gap: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 4px 8px rgba(0, 0, 0, 0.2);
    will-change: opacity, transform;
    box-sizing: border-box;
    border-radius: 8px;
    margin-top: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-menu-exterior {
    flex-direction: column;
    gap: 30px;
}

/* Below 1400px: Make GLAZE'S wrap to second row */
@media (max-width: 1399px) {
    .dropdown-menu-exterior .dropdown-row {
        flex-wrap: wrap;
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(1),
    .dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(2) {
        flex: 0 0 calc(50% - 30px);
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) {
        flex: 0 0 100%;
        margin-top: 0;
    }
}

/* At 1400px and above, make all three columns appear in one row */
@media (min-width: 1400px) {
    .dropdown-menu-exterior {
        flex-direction: row;
        gap: 60px;
    }
    
    .dropdown-menu-exterior .dropdown-row {
        flex-wrap: nowrap;
        width: 100%;
        gap: 60px;
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column {
        flex: 0 0 auto;
    }
}

.dropdown-row {
    display: flex;
    flex-direction: row;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Custom Scrollbar for Dropdown Menu */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #000;
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #fee900;
    border-radius: 3px;
    border: none;
    transition: background 0.3s ease;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #ffeb3b;
}

.dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #fee900 #000;
}

.nav-link-wrapper:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    display: flex !important;
}

.dropdown-column{
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    width: max-content;
    max-width: calc((100vw - 140px) / 2);
    box-sizing: border-box;
}


.dropdown-heading{
    font-family: 'Changa One';
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: #fee900;
    text-transform: uppercase;
    margin-bottom: 15px;
    /* font-weight: bold; */
    opacity: 0;
    transform: translateY(-25px);
    transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

.dropdown-column:nth-child(1) .dropdown-heading {
    transition-delay: 0.05s;
}

.dropdown-column:nth-child(2) .dropdown-heading {
    transition-delay: 0.15s;
}

.dropdown-column:nth-child(3) .dropdown-heading {
    transition-delay: 0.25s;
}

.dropdown-column:nth-child(4) .dropdown-heading {
    transition-delay: 0.35s;
}

.dropdown-column:nth-child(5) .dropdown-heading {
    transition-delay: 0.45s;
}

/* Exterior dropdown specific - GLAZE'S in third column */
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(1) .dropdown-heading {
    transition-delay: 0.05s;
}

.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(2) .dropdown-heading {
    transition-delay: 0.15s;
}

.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-heading {
    transition-delay: 0.25s;
}

.nav-link-wrapper:hover .dropdown-menu .dropdown-heading,
.dropdown-menu:hover .dropdown-heading {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reset on close - no delay for smooth reverse */
.dropdown-menu:not(:hover) .dropdown-heading {
    transition-delay: 0s;
}

/* Activate animation on hover */
.nav-link-wrapper:hover .dropdown-menu .dropdown-list li,
.dropdown-menu:hover .dropdown-list li {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reset on close - no delay for smooth reverse */
.dropdown-menu:not(:hover) .dropdown-list li {
    transition-delay: 0s;
}

.dropdown-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-width: max-content;
    padding: 0;
    margin: 0;
    pointer-events: auto;
}

/* Universal Dropdown List Items - Brick-by-Brick Animation */
.dropdown-list li {
    margin: 0;
    opacity: 0;
    transform: translateY(-25px);
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

/* Universal animation delays - works for all columns and items */
/* Column 1 items */
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(1) { transition-delay: 0.1s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(2) { transition-delay: 0.15s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(3) { transition-delay: 0.2s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(4) { transition-delay: 0.25s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(5) { transition-delay: 0.3s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(6) { transition-delay: 0.35s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(7) { transition-delay: 0.4s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(8) { transition-delay: 0.45s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(9) { transition-delay: 0.5s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(10) { transition-delay: 0.55s; }

/* Column 2 items */
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(1) { transition-delay: 0.2s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(2) { transition-delay: 0.25s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(3) { transition-delay: 0.3s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(4) { transition-delay: 0.35s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(5) { transition-delay: 0.4s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(6) { transition-delay: 0.45s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(7) { transition-delay: 0.5s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(8) { transition-delay: 0.55s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(9) { transition-delay: 0.6s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(10) { transition-delay: 0.65s; }

/* Column 3 items */
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(1) { transition-delay: 0.3s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(2) { transition-delay: 0.35s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(3) { transition-delay: 0.4s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(4) { transition-delay: 0.45s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(5) { transition-delay: 0.5s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(6) { transition-delay: 0.55s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(7) { transition-delay: 0.6s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(8) { transition-delay: 0.65s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(9) { transition-delay: 0.7s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(10) { transition-delay: 0.75s; }

/* Exterior dropdown specific - GLAZE'S items in third column/wrapped row */
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(1) { transition-delay: 0.3s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(2) { transition-delay: 0.35s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(3) { transition-delay: 0.4s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(4) { transition-delay: 0.45s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(5) { transition-delay: 0.5s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(6) { transition-delay: 0.55s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(7) { transition-delay: 0.6s; }
.dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) .dropdown-list li:nth-child(8) { transition-delay: 0.65s; }

.dropdown-list a{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    transition: color 0.2s ease;
    white-space: nowrap;
    width: 100%;
    pointer-events: auto;
    cursor: pointer;
}

.dropdown-list a:hover{
    color: #fee900;
}

.dropdown-list .list-out{
    color: var(--light-gray);
}

.dropdown-list .list-out:hover{
    color: var(--light-gray);
}

/* Social Icons */
.header-container .social-icons{
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: 0;
    padding-top: 50px;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    isolation: isolate;
}

.header-container .social-icons .social-icon{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}

.header-container .social-icons .social-icon:hover{
    color: #fee900;

    transform: scale(1.1);
}

/* ===== Hamburger Menu Styles ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    margin-left: 15px;
    flex-shrink: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #fee900;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

/* Custom Scrollbar for Mobile Menu Overlay */
.mobile-menu-overlay::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-overlay::-webkit-scrollbar-track {
    background: #000;
    border-radius: 3px;
}

.mobile-menu-overlay::-webkit-scrollbar-thumb {
    background: #fee900;
    border-radius: 3px;
    border: none;
    transition: background 0.3s ease;
}

.mobile-menu-overlay::-webkit-scrollbar-thumb:hover {
    background: #ffeb3b;
}

.mobile-menu-overlay {
    scrollbar-width: thin;
    scrollbar-color: #fee900 #000;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fee900;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.mobile-menu-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-size: 32px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 120px 30px 30px;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.mobile-nav-link {
    font-family: 'Changa One';
    font-style: italic;
    color: #fee900;
    font-size: 20px;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    word-wrap: break-word;
}

.mobile-nav-link:hover {
    color: #fff;
}

.mobile-nav-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown {
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #111;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav-dropdown-content.active {
    max-height: 2000px;
}

.mobile-dropdown-section {
    padding: 15px 0;
    border-bottom: 1px solid #222;
    width: 100%;
    box-sizing: border-box;
}

.mobile-dropdown-heading {
    font-family: 'Changa One';
    font-style: italic;
    font-size: 16px;
    color: #fee900;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 0 20px;
    word-wrap: break-word;
    box-sizing: border-box;
}

.mobile-dropdown-link-list-out{
    color: var(--light-gray);
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease, padding-left 0.3s ease;
    width: 100%;
    text-decoration: none;
    padding: 10px 15px;
}

.mobile-dropdown-link {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.mobile-dropdown-link:hover {
    color: #fee900;
    padding-left: 30px;
}

/* Product Details Section */
.product-details{
    padding: 10px 50px 0px 50px;
    background-color: #000000;
    min-height: calc(100vh - 200px);
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Product Info Section Container */
.product-info-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

/* Row for side-by-side product images */
.product-images-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    padding-bottom: 50px;
    padding-top: 25px;
    box-sizing: border-box;
}

.product-images-row .product-image-section {
    flex: 1;
    min-width: 280px;
    max-width: 50%;
    padding-bottom: 0;
    padding-top: 0;
}

/* Pagination dots below product images (hidden when no scrolling) */
.product-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 24px;
}
.product-dots.no-scroll {
    display: none;
}
@media (min-width: 1025px) {
    .product-dots {
        display: none;
    }
}
.product-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fee900;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}
.product-dot:hover {
    background: rgba(254, 233, 0, 0.4);
}
.product-dot.active {
    background: #fee900;
}

/* Left Side: Product Image */
.product-image-section{
    flex: 1;
    max-width: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
    padding-top: 25px;
    width: 100%;
}

.product-image{
    max-width: 80%;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    margin: 0 auto;
    border: 1px solid #ffffff;
}

/* Brand Logo */
.brand-logo{
    margin-bottom: 0;
    flex-shrink: 0;
}

.brand-logo-img{
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Brand Logo and Title Container */
.brand-title-container{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    width: 100%;
    align-self: flex-start;
}

/* Product Title */
.product-title{
    font-family: 'Changa One', sans-serif;
    font-style: italic;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: left;
    width: 100%;
}


.quick-links{
    background-color: #fff;
    padding: 60px 40px 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 2px solid #000;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-main{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    box-sizing: border-box;
}

.footer-links-privacy-terms{
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}
.footer-links-privacy-terms:hover{
    color: #fee900;
}
.footer-logo{
    flex: 0 0 200px;
    transition: transform 0.3s ease;
}
.footer-logo:hover{
    transform: scale(1.05);
}
.logo-img{
    max-width: 100%;
    height: auto;
}

.footer-section{
    flex: 0 0 150px;
}

.footer-heading{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 12px;
}

.footer-links a{
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover{
    color: #fee900;
}

.footer-newsletter{
    flex: 0 0 280px;
}

.newsletter-label{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.newsletter-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 4px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-input::placeholder{
    color: #999;
}

.newsletter-btn{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.newsletter-btn:hover{
    background-color: #333;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 20px auto 0;
    padding-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-copyright{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #000;
}

.footer-social{
    display: flex;
    gap: 20px;
}

.footer-social .social-icon{
    color: #000;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social .social-icon:hover{
    color: #fee900;
}


/* ===== Desktop 1080px and above ===== */
@media (min-width: 1080px) {
    .hamburger-menu {
        display: none;
    }


    .search-container {
        display: block;
        position: absolute;
        top: 15px;
        left: 52%;
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        padding: 0;
        border-bottom: none;
    }

    .search-input {
        width: 300px;
    }

    .search-toggle-btn {
        display: none;
    }
}

/* ===== Desktop 1024px (1024px - 1079px) ===== */
@media (min-width: 1024px) and (max-width: 1079px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .header {
        padding: 0px 35px;
        overflow: visible;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header-container {
        overflow: visible;
        max-width: 100%;
        box-sizing: border-box;
    }

    .logo {
        width: 190px;
        height: 114px;
    }

    .nav {
        display: flex;
        gap: 20px;
        min-width: 0;
        overflow: visible;
    }

    .nav-link-wrapper {
        overflow: visible;
    }

    .nav-link {
        font-size: 16px;
    }

    .dropdown-menu {
        max-width: calc(100vw - 70px);
        padding: 18px 25px;
        gap: 40px;
    }

    .dropdown-menu-exterior {
        gap: 25px;
    }

    .dropdown-row {
        gap: 40px;
    }

    .dropdown-column {
        max-width: calc((100vw - 200px) / 2);
        min-width: 180px;
    }

    .hamburger-menu {
        display: none;
    }

    .search-container {
        display: block;
        position: absolute;
        top: 15px;
        left: 52%;
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        padding: 0;
        border-bottom: none;
    }

    .search-input {
        width: 280px;
    }

    .search-toggle-btn {
        display: none;
    }

    .header-container .social-icons {
        gap: 19px;
    }

    .header-container .social-icons .social-icon {
        font-size: 19px;
    }

    /* Product Details */
    .product-title {
        font-size: 26px;
    }

    /* Footer Responsive */
    .quick-links {
        padding: 50px 35px 20px;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 25px;
    }

    .footer-logo {
        flex: 0 0 180px;
    }

    .footer-section {
        flex: 0 0 140px;
    }

    .footer-newsletter {
        flex: 0 0 260px;
    }
}

/* ===== Tablet Responsive (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    html {
        font-size: 15px;
        overflow-x: hidden;
        max-width: 100%;
    }

    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .header {
        padding: 0px 30px;
        overflow-x: hidden;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header-container {
        max-width: 100%;
        box-sizing: border-box;
    }

    .header-container {
        gap: 15px;
    }

    .logo {
        width: 160px;
        height: 96px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
        padding-top: 0;
    }

    .nav-link {
        font-size: 16px;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 12px;
    }

    .social-icons {
        gap: 15px;
        flex-shrink: 0;
        padding-top: 0;
    }

    .social-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .search-container {
        display: block;
        position: absolute;
        top: 15px;
        left: 52%;
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        padding: 0;
        border-bottom: none;
        z-index: 10;
    }

    .search-container .search-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
    }

    .search-container .search-input {
        width: 250px;
        border-radius: 0 25px 25px 0;
        border: 2px solid #000;
        border-left: none;
        clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%);
        margin-left: -15px;
        padding-left: 20px;
    }

    .search-container .search-button {
        border-radius: 25px 0 0 25px;
        clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
        margin-right: 0;
    }

    .search-container .search-close-btn {
        display: none;
    }

    .search-toggle-btn {
        display: none;
    }

    .auth-buttons {
        position: absolute;
        top: 15px;
        right: 30px;
        z-index: 10;
    }

    .button-bg {
        font-size: 14px;
        height: 30px;
    }

    .login-bg {
        padding-left: 12px;
        padding-right: 20px;
    }

    .signup-bg {
        padding-right: 12px;
    }

    /* Product Details */
    .product-details {
        padding: 40px 20px;
    }

    .product-info-section {
        padding-right: 0;
    }

    .product-title {
        font-size: 24px;
    }

    .product-image {
        max-width: 90%;
    }

    /* Footer Responsive */
    .quick-links {
        padding: 40px 30px 20px;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-logo {
        flex: 0 0 180px;
    }

    .footer-section {
        flex: 0 0 140px;
    }

    .footer-newsletter {
        flex: 0 0 250px;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
        overflow-x: hidden;
        max-width: 100%;
    }

    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .header {
        padding: 0px 15px;
        overflow-x: hidden;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header-container {
        gap: 10px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .logo {
        width: 120px;
        height: 72px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
        padding-top: 0;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 10px;
        width: 26px;
        height: 26px;
    }

    .social-icons {
        gap: 10px;
        flex-shrink: 0;
        padding-top: 0;
    }

    .social-icon {
        font-size: 16px;
        flex-shrink: 0;
    }

    .header-container .social-icons .social-icon:hover {
        transform: none;
    }

    .search-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 10002;
        background-color: #000;
        padding: 15px;
        box-sizing: border-box;
        border-bottom: 2px solid #fee900;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .search-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .search-container .search-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-container .search-input {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        flex: 1;
        border-radius: 25px;
        border: 2px solid #000;
        clip-path: none;
        padding-left: 20px;
    }

    .search-container .search-button {
        flex-shrink: 0;
        border-radius: 25px;
        clip-path: none;
        margin-right: 0;
    }

    .search-container .search-close-btn {
        display: flex;
    }

    .search-toggle-btn {
        display: flex;
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .auth-buttons {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }

    .button-bg {
        font-size: 12px;
        height: 28px;
    }

    .login-bg {
        padding-left: 10px;
        padding-right: 15px;
    }

    .signup-bg {
        padding-right: 10px;
    }
    
    .mobile-menu-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 45px;
        height: 45px;
    }

    .mobile-menu-close i {
        font-size: 28px;
    }

    .mobile-nav {
        padding: 100px 20px 20px;
    }

    .mobile-nav-link {
        font-size: 18px;
        padding: 12px 0;
    }

    .mobile-dropdown-heading {
        font-size: 14px;
        padding: 0 15px;
    }

    .mobile-dropdown-link {
        font-size: 12px;
        padding: 8px 15px;
    }

    /* Product Details */
    .product-details {
        padding: 40px 20px;
    }

    .product-info-section {
        padding-right: 0;
    }

    .product-title {
        font-size: 22px;
    }

    .product-image {
        max-width: 100%;
    }

    /* Footer Responsive */
    .quick-links {
        padding: 40px 20px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-logo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
    }

    .footer-section {
        flex: 0 0 auto;
        width: 100%;
    }

    .footer-newsletter {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        text-align: left;
    }

    .footer-copyright {
        width: 100%;
    }

    .footer-social {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .newsletter-label {
        font-size: 13px;
    }

    .newsletter-input {
        font-size: 13px;
    }

    .newsletter-btn {
        font-size: 13px;
        padding: 8px 18px;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }

    .header {
        padding: 0px 15px;
        overflow-x: hidden;
    }

    .header-container {
        gap: 10px;
    }

    .logo {
        width: 120px;
        height: 72px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
        padding-top: 0;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 10px;
        width: 20px;
        height: 20px;
    }

    .social-icons {
        gap: 10px;
        flex-shrink: 0;
        padding-top: 0;
    }

    .social-icon {
        font-size: 16px;
        flex-shrink: 0;
    }

    .header-container .social-icons .social-icon:hover {
        transform: none;
    }

    .search-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 10002;
        background-color: #000;
        padding: 15px;
        box-sizing: border-box;
        border-bottom: 2px solid #fee900;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .search-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .search-container .search-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-container .search-input {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        flex: 1;
        border-radius: 25px;
        border: 2px solid #000;
        clip-path: none;
        padding-left: 20px;
    }

    .search-container .search-button {
        flex-shrink: 0;
        border-radius: 25px;
        clip-path: none;
        margin-right: 0;
    }

    .search-container .search-close-btn {
        display: flex;
    }

    .search-toggle-btn {
        display: flex;
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .auth-buttons {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }

    .button-bg {
        font-size: 12px;
        height: 28px;
    }

    .login-bg {
        padding-left: 10px;
        padding-right: 15px;
    }

    .signup-bg {
        padding-right: 10px;
    }
    
    .mobile-menu-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 45px;
        height: 45px;
    }

    .mobile-menu-close i {
        font-size: 28px;
    }

    .mobile-nav {
        padding: 100px 20px 20px;
    }

    .mobile-nav-link {
        font-size: 18px;
        padding: 12px 0;
    }

    .mobile-dropdown-heading {
        font-size: 14px;
        padding: 0 15px;
    }

    .mobile-dropdown-link {
        font-size: 12px;
        padding: 8px 15px;
    }

    /* Product Details */
    .product-details {
        padding: 40px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .product-info-section {
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }


    .product-title {
        font-size: 18px;
    }

    .product-image {
        max-width: 80%;
        width: 80%;
        box-sizing: border-box;
    }

    .product-image-section {
        width: 100%;
        padding: 20px 20px;
        box-sizing: border-box;
    }

    /* Ensure full screen layout */
    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .main-header {
        width: 100%;
        box-sizing: border-box;
    }

    .quick-links {
        width: 100%;
        box-sizing: border-box;
        padding: 60px 20px 20px;
    }
}

@media (max-width: 375px) {
    .product-title {
        font-size: 20px;
    }
}

/* Responsive Design for Product Section */
@media (max-width: 1024px){
    .product-container{
        flex-direction: column;
        gap: 40px;
    }

    .product-image-section,
    .product-info-section{
        max-width: 100%;
    }

    .product-info-section{
        padding-right: 0;
    }

    .product-title{
        font-size: 24px;
    }

    .product-image{
        max-width: 90%;
    }

    /* Upcoming product: horizontal scroll on mobile (same as Active Offers) */
    .product-images-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        user-select: none;
    }
    .product-images-row::-webkit-scrollbar {
        display: none;
    }
    .product-images-row.is-dragging .product-image-section .product-image:hover {
        opacity: 1;
    }
    .product-images-row .product-image-section {
        flex: 0 0 auto;
        min-width: 280px;
        max-width: none;
    }
}

/* ===== Ultra-Wide Display (2560px and above) ===== */
@media (min-width: 2560px) {
    body {
        font-size: 18px;
    }

    /* Header Styles */
    .header {
        padding: 0px 80px;
    }

    .header-container {
        min-height: 160px;
        max-width: 2400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .logo {
        width: 280px;
        height: 160px;
    }

    .nav {
        gap: 50px;
        padding-top: 60px;
    }

    .nav-link {
        font-size: 24px;
    }

    .auth-buttons {
        right: 80px;
        top: 20px;
    }

    .button-bg {
        font-size: 20px;
        height: 40px;
        border-radius: 10px;
    }

    .login-bg {
        padding-left: 20px;
        padding-right: 35px;
    }

    .signup-bg {
        padding-right: 20px;
    }

    .search-container {
        left: 52%;
        top: 20px;
    }

    .search-input {
        width: 480px;
        padding: 14px 28px;
        font-size: 18px;
        height: 52px;
    }

    .search-button {
        padding: 14px 28px;
        height: 52px;
    }

    .search-button i {
        font-size: 20px;
    }

    .header-container .social-icons {
        gap: 30px;
        padding-top: 60px;
    }

    .header-container .social-icons .social-icon {
        font-size: 28px;
    }

    /* Dropdown Menus */
    .dropdown-menu {
        padding: 30px 50px;
        gap: 80px;
        max-width: calc(100vw - 160px);
    }

    .dropdown-menu-exterior {
        gap: 40px;
    }

    .dropdown-row {
        gap: 80px;
    }

    .dropdown-column {
        min-width: 280px;
        max-width: calc((100vw - 400px) / 2);
    }

    .dropdown-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .dropdown-list {
        gap: 16px;
    }

    .dropdown-list a {
        font-size: 18px;
    }

    /* Product Details Section */
    .product-details {
        padding: 40px 100px 0px 100px;
        max-width: 2400px;
        margin: 0 auto;
    }

    .product-info-section {
        width: 100%;
        max-width: 100%;
    }

    .product-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .product-image-section {
        padding-bottom: 80px;
        padding-top: 40px;
        width: 100%;
    }

    .product-image {
        max-width: 75%;
        max-height: 750px;
        border-radius: 15px;
        border: 2px solid #ffffff;
    }

    .brand-title-container {
        gap: 30px;
        margin-bottom: 20px;
    }

    /* Footer Section */
    .quick-links {
        padding: 100px 80px 40px;
        max-width: 2400px;
        margin: 0 auto;
    }

    .footer-main {
        max-width: 2000px;
        margin: 0 auto;
        padding-bottom: 60px;
        gap: 60px;
    }

    .footer-logo {
        flex: 0 0 280px;
    }

    .logo-img {
        max-width: 100%;
    }

    .footer-section {
        flex: 0 0 220px;
    }

    .footer-heading {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links li {
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 18px;
    }

    .footer-newsletter {
        flex: 0 0 380px;
    }

    .newsletter-label {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .newsletter-input {
        font-size: 18px;
        padding: 14px;
        border-radius: 6px;
    }

    .newsletter-btn {
        font-size: 18px;
        padding: 14px 28px;
        border-radius: 12px;
    }

    .footer-bottom {
        max-width: 2000px;
        margin: 30px auto 0;
        padding-top: 30px;
    }

    .footer-copyright {
        font-size: 16px;
    }

    .footer-social {
        gap: 30px;
    }

    .footer-social .social-icon {
        font-size: 24px;
    }

    .footer-links-privacy-terms {
        font-size: 16px;
    }
}
