/* components.css - Reusable UI Components */



/* --- Headings --- */

/* Breadcrumb bar */
.breadcrumb-bar {
    background-color: #fafafa;
    border-top: 1px solid #efefef;
    margin-top: 172px;
}

.breadcrumb-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}

.breadcrumb-title {
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

.breadcrumb-nav {
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: rgba(0, 0, 0, 0.5);
}

.breadcrumb-list a {
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--color-text-main);
}

.breadcrumb-list .current {
    color: var(--color-text-main);
}

@media (max-width: 1024px) {
    .breadcrumb-bar {
        margin-top: 77px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        height: auto;
        padding: 14px 20px;
        gap: 6px;
    }

    .breadcrumb-title,
    .breadcrumb-nav {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
}

.hero-title {

    font-size: var(--fs-h1);

    line-height: 1.1;

    text-transform: capitalize;

    margin-bottom: 24px;

}



.section-title {

    font-size: var(--fs-h2);

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 40px; /* Increased margin */

}



.section-title.split {

    max-width: 305px;

    line-height: 1.4;

}



.subtitle {

    font-size: var(--fs-subtitle);

    line-height: 1.5;

    margin-bottom: 32px;

}



/* --- Buttons --- */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 32px;

    font-size: 16px;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    transition: all 0.3s ease;

}



.btn-primary {

    background-color: var(--color-brand);

    color: var(--color-white);

}



.btn-primary:hover {

    background-color: var(--color-brand-dark);

}



.nav-btn {

    padding: 12px 24px;

    font-size: 14px;

}



.btn-underline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-transform: uppercase;

    font-size: 16px;

    letter-spacing: 1.6px;

    padding: 16px 0;

    border-bottom: 1px solid currentColor;

    transition: all 0.3s ease;

    cursor: pointer;

}



.btn-underline-white {

    color: var(--color-white);

}



.btn-underline-brand {

    color: var(--color-brand);

}



.btn-underline:hover {

    opacity: 0.8;

}



.btn-outline {

    border: 1px solid var(--color-white);

    color: var(--color-white);

}



.btn-outline:hover {

    background-color: var(--color-white);

    color: var(--color-brand-dark);

}



.btn-link {

    border-bottom: 1px solid var(--color-brand);

    color: var(--color-brand);

    padding: 16px 0;

}



.btn-link:hover {

    color: var(--color-brand-dark);

    border-color: var(--color-brand-dark);

}



/* --- Navbar --- */

.navbar {

    display: flex;

    flex-direction: column;

    align-items: center;

    padding-top: 17px;

    padding-bottom: 29px;

    position: fixed; /* Always fixed at top */

    top: 0;

    left: 0;

    right: 0;

    width: 100%; /* Ensure it doesn't exceed viewport */

    z-index: 1000;

    background: var(--color-white) !important;

    border-bottom: 1px solid var(--color-gray-light);

    transition: all 0.3s ease;

    overflow: hidden; /* Contain children */

}



.mobile-menu-toggle {

    display: none;

    cursor: pointer;

    background: none;

    border: none;

    padding: 10px;

    z-index: 1002;

}



.mobile-menu-toggle span {

    display: block;

    width: 25px;

    height: 2px;

    background-color: var(--color-brand-dark);

    margin: 5px 0;

    transition: 0.3s;

}



.mobile-menu-toggle.active span:nth-child(1) {

    transform: rotate(45deg) translate(5px, 5px);

}



.mobile-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}



.mobile-menu-toggle.active span:nth-child(3) {

    transform: rotate(-45deg) translate(5px, -5px);

}



.navbar.sticky {

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

    padding-top: 10px;

    padding-bottom: 15px;

}



.nav-top {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 80px;

    height: 79px;

}



.nav-logo {

    width: 283px;

    height: 79px;

    object-fit: contain;

}



.nav-logo-container {

    flex: 1;

    display: flex;

    justify-content: center;

}



.nav-search,

.nav-cta {

    flex: 1; /* Allow flexible growth instead of fixed 200px */

    max-width: 200px;

}



.nav-cta {

    display: flex;

    justify-content: flex-end;

}



.nav-search svg {

    display: block;

}



.nav-links {

    display: flex;

    gap: 70px;

    margin-top: 22px;

    text-transform: uppercase;

    font-size: 14px;

    letter-spacing: -0.14px;

    position: relative;

}



.nav-links .nav-item {

    position: static;

    padding-bottom: 45px;

    margin-bottom: -45px;

}



.nav-links .nav-item > a {

    display: block;

    padding-bottom: 5px;

}



.nav-links .nav-item:hover > a {

    color: var(--color-brand);

}



/* --- Mega Menu --- */

.mega-menu {

    position: fixed; /* Restore fixed to span viewport and overlay content */

    top: 172px; /* Header total height */

    left: 0;

    width: 100vw;

    background: var(--color-white);

    border-top: 1px solid var(--color-gray-light);

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    display: none;

    padding: 60px 0;

    z-index: 999;

    max-height: calc(100vh - 172px);

    overflow-y: auto;

}



.nav-item:hover .mega-menu {

    display: block;

}



.mega-menu:hover {

    display: block;

}



/* Force container alignment */

.mega-menu-content {

    display: grid;

    grid-template-columns: 200px 350px 1fr; /* Adjusted column widths */

    gap: 40px;

    max-width: var(--container-max-width);

    margin: 0 auto;

    padding: 0 80px; /* Aligned with nav-top padding */

}



.mega-menu-col h3 {

    font-size: 14px; /* Smaller heading size */

    color: #af6f44;

    text-transform: uppercase;

    margin-bottom: 30px;

    letter-spacing: 1.4px;

    white-space: nowrap;

}



.mega-menu-list {

    display: grid;

    gap: 15px;

}



/* Enable two columns for brands list */

.mega-menu-list.two-cols {

    grid-template-columns: 1fr 1fr;

}



.mega-menu-list a {

    font-size: 14px;

    color: #2a190e;

    text-transform: none;

    transition: color 0.3s ease;

}



.mega-menu-list a:hover {

    color: var(--color-brand);

}



.all-brands-container {

    margin-top: 30px;

}



.all-brands-link {

    display: inline-block;

    border-bottom: 0.777px solid #af6f44;

    color: #af6f44;

    text-transform: uppercase;

    font-size: 12.426px;

    letter-spacing: 1.2426px;

    padding: 12.426px 0;

    transition: all 0.3s ease;

}



.all-brands-link:hover {

    color: #8b5a35;

    border-color: #8b5a35;

}



.mega-featured {

    display: grid;

    grid-template-columns: 244px 244px;

    gap: 20px;

    justify-content: flex-end; /* Flush right */

}



.mega-product-info {

    margin-top: 15px;

    text-align: left;

}



.mega-product-info .price {

    color: #af6f44;

    font-size: 14px;

    margin-bottom: 5px;

}



.mega-product-info .name {

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    color: #2a190e;

}



.featured-item {

    position: relative;

    height: 310px;

    width: 244px;

    overflow: hidden;

}



.featured-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: opacity 0.4s ease;

}



.featured-item .image-primary {

    position: absolute;

    inset: 0;

    z-index: 1;

}



.featured-item .image-secondary {

    position: absolute;

    inset: 0;

    z-index: 0;

    opacity: 0;

}



.featured-item:hover .image-primary {

    opacity: 0;

}



.featured-item:hover .image-secondary {

    opacity: 1;

}



.featured-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.4);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: opacity 0.4s ease;

    z-index: 3;

}



.featured-item:hover .featured-overlay {

    opacity: 1;

}



/* --- Footer --- */

.footer {

    background-color: var(--color-brand);

    color: var(--color-white);

    font-family: 'Tenor Sans', serif;

    position: relative;

    padding-top: 150px;

}



.footer-divider {

    position: absolute;

    top: 0;

    bottom: 0;

    left: 50%;

    width: 1px;

    background-color: rgba(255, 255, 255, 0.15);

    pointer-events: none;

}



.footer-main {

    display: grid;

    grid-template-columns: 220px 1fr 1fr 1fr;

    gap: 0 60px;

    padding-bottom: 80px;

    align-items: start;

}



.footer-logo-col {

    padding-top: 10px;

}



.footer-logo {

    width: 220px;

    display: block;

}



.footer-menu-col {

    display: flex;

    flex-direction: column;

    gap: 72px;

}



.footer-menu-col:nth-child(3) {

    align-items: flex-start;

    margin: 0 auto;

}



.footer-menu-col:last-child {

    align-items: flex-start;

    margin-left: auto;

}



.footer-menu-group {

    display: flex;

    flex-direction: column;

    gap: 16px;

}



.footer-menu-label {

    font-size: 12px;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    opacity: 0.5;

    margin: 0;

}



.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.footer-links li a {

    font-size: 16px;

    letter-spacing: 0.32px;

    color: var(--color-white);

    text-decoration: none;

    transition: opacity 0.2s ease;

}



.footer-links li a:hover {

    opacity: 0.7;

}



.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 0;

}



.footer-contact p {

    font-size: 16px;

    letter-spacing: 0.32px;

    line-height: 1.6;

    margin: 0;

    color: var(--color-white);

}



.footer-social {

    display: flex;

    align-items: center;

    gap: 16px;

}



.footer-social a {

    display: flex;

    align-items: center;

    transition: opacity 0.2s ease;

}



.footer-social a:hover {

    opacity: 0.7;

}



.footer-back-to-top {

    display: flex;

    justify-content: center;

    margin-bottom: 40px;

}



.back-to-top-btn {

    width: 96px;

    height: 96px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.4);

    background: transparent;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: opacity 0.2s ease;

}



.back-to-top-btn:hover {

    background: rgba(255, 255, 255, 0.1);

}



.footer-bottom {

    padding: 24px 0 40px;

    border-top: none;

    display: flex;

    justify-content: space-around;

    align-items: center;

    font-size: 14px;

    letter-spacing: 0.28px;

}



.footer-bottom p {

    margin: 0;

    color: var(--color-white);

}



.footer-policy {

    display: flex;

    align-items: center;

    gap: 24px;

}



.footer-policy a {

    color: var(--color-white);

    text-decoration: none;

    font-size: 14px;

    letter-spacing: 0.28px;

    transition: opacity 0.2s ease;

}



.footer-policy a:hover {

    opacity: 0.7;

}



.footer-policy-divider {

    width: 1px;

    height: 16px;

    background: rgba(255, 255, 255, 0.24);

    display: inline-block;

}



.brand-col {

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.mega-product-banner {

    transition: transform 0.3s ease;

}



.mega-product-banner:hover {

    transform: scale(1.02);

}



.mega-product-banner .banner-info .name {

    font-weight: 400;

    letter-spacing: 1.2px;

}



.category-card {

    height: 579px;

    position: relative;

    cursor: pointer;

}



.category-card .category-title {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    font-size: 19.3px;

    letter-spacing: 1.93px;

    text-transform: uppercase;

    color: #2a190e;

    transition: all 0.3s ease;

    z-index: 3; /* Stay above overlay */

    white-space: nowrap;

}



.category-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.5);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: opacity 0.4s ease;

    z-index: 2;

}



.category-card:hover .category-overlay {

    opacity: 1;

}



.category-card:hover .category-title {

    opacity: 0;

}



.showcase-section {

    position: relative;

    padding-top: 100px;

    padding-bottom: 0; /* Bottom image will overlap */

    overflow: visible;

}



.showcase-integrated {

    position: relative;

    margin-top: 120px;

}



.showcase-integrated .grid-2 {

    align-items: center; /* Vertical alignment */

    gap: 120px; /* Increased gap for better spacing */

}



.showcase-content {

    max-width: 400px;

    padding-bottom: 40px;

}



.showcase-image {

    position: relative;

    height: 600px;

    width: 100%;

    max-width: 500px;

    margin-left: auto;

    z-index: 5;

    margin-bottom: -500px; /* Overlap into the next section */

}



.showcase-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    box-shadow: 0 20px 40px rgba(0,0,0,0.05);

}



.showcase-integrated.reversed .grid-2 {

    direction: rtl;

}



.showcase-integrated.reversed .showcase-content,

.showcase-integrated.reversed .showcase-image {

    direction: ltr;

}



.showcase-integrated.reversed .showcase-image {

    margin-left: 0;

    margin-right: auto;

}



.showcase-section-peach {

    background-color: var(--color-bg-light);

    padding: 100px 0;

    margin-top: 150px;

    position: relative;

    overflow: visible;

}



/* --- Collections Banner (Side-by-side images) --- */

.collections-banner {

    display: flex;

    width: 100%;

    height: 850px;

}



.collection-item {

    flex: 1;

    position: relative;

    overflow: hidden;

    height: 100%;

}



.collection-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;

}



.collection-item:hover img {

    transform: scale(1.04);

}



.collection-item .collection-overlay {

    transition: background 0.4s ease;

}



/* Sliding hover overlay */

.collection-item::before {

    content: '';

    position: absolute;

    inset: 0;

    background: rgba(255, 255, 255, 0.05);

    z-index: 3;

    pointer-events: none;

    transform: translateX(-101%);

    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}



/* Left item: slides left → right */
.collection-item.overlay-left-in::before {
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item.overlay-left-out::before {
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Right item: starts off-screen right, slides right → left */
.collection-item.overlay-right-idle::before {
    transform: translateX(101%);
    transition: none;
}

.collection-item.overlay-right-in::before {
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item.overlay-right-out::before {
    transform: translateX(101%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}



.collection-content {

    position: absolute;

    bottom: 80px;

    left: 80px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    gap: 24px;

    align-items: flex-start;

}



.collection-title {

    font-size: 40px;

    text-transform: uppercase;

    letter-spacing: 4px;

    color: white;

    line-height: 1.4;

    margin: 0;

    max-width: 350px;

}



.collection-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.3);

    transition: background 0.4s ease;

    z-index: 2;

}



.collection-item:hover .collection-overlay {

    background: rgba(0, 0, 0, 0.5);

}



.collection-item.dark-overlay .collection-overlay {

    background: rgba(0, 0, 0, 0.4);

}



.collection-item.dark-overlay:hover .collection-overlay {

    background: rgba(0, 0, 0, 0.6);

}



.product-card {

    position: relative;

    height: 592px;

    border: 1px solid var(--color-gray-light);

    background-color: var(--color-white);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    overflow: hidden;

}

.product-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}



.product-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

}



.product-image-container {

    position: absolute;

    top: 62px;

    left: 0;

    right: 0;

    bottom: 97px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 16px 40px;

    z-index: 1;

}



.product-image {

    width: 100%;

    height: 100%;

    object-fit: contain;

}

.product-image.image-primary {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.product-image.image-secondary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image.image-primary {
    opacity: 0;
}

.product-card:hover .product-image.image-secondary {
    opacity: 1;
}



.product-top-info {

    position: absolute;

    top: 31.5px;

    left: 31.5px;

    right: 31.5px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 5;

}



.product-rate {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 11.8px;

    text-transform: uppercase;

    letter-spacing: 1.18px;

    color: var(--color-brand-dark);

}



.product-rate img {

    width: 15.8px;

    height: 15.8px;

}



.product-badge {

    padding: 8px 16px;

    border: 1px solid rgba(42, 25, 14, 0.24);

    border-radius: 100px;

    font-size: 11.8px;

    text-transform: uppercase;

    letter-spacing: 1.18px;

    color: var(--color-brand-dark);

}



.product-bottom-info {

    position: absolute;

    bottom: 31.5px;

    left: 0;

    right: 0;

    text-align: center;

    display: flex;

    flex-direction: column;

    gap: 15.8px;

    z-index: 5;

}



.product-price {

    color: var(--color-brand);

    font-size: 19.7px;

    letter-spacing: 1.97px;

    text-transform: uppercase;

}



.product-name {

    font-size: 15.8px;

    letter-spacing: 1.58px;

    text-transform: uppercase;

    color: var(--color-brand-dark);

}



.mobile-only-cta {

    display: none;

}



/* --- Product Slider Section --- */

.product-slider-section {

    overflow: visible;

}





.product-slider-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 40px;

    gap: 24px;

}



.product-slider-heading {

    flex: 1;

}



.product-slider-nav {

    display: flex;

    align-items: center;

    gap: 16px;

    flex-shrink: 0;

}



.product-slider-container {

    position: relative;

    overflow: visible;

}



.product-slider {

    display: flex;

    gap: 24px;

    overflow-x: scroll;

    scroll-behavior: smooth;

    scrollbar-width: none;

    -ms-overflow-style: none;

}



.product-slider::-webkit-scrollbar {

    display: none;

}



.product-slider .product-card {

    flex: 0 0 calc(33.333% - 16px);

    min-width: calc(33.333% - 16px);

}



.product-slider-container .slider-arrow-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

}



.product-slider-container .slider-prev {

    left: -24px;

}



.product-slider-container .slider-next {

    right: -24px;

}



.slider-arrow-btn {

    width: 48px;

    height: 48px;

    background: #222;

    border: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    transition: background 0.2s ease;

}



.slider-arrow-btn:hover {

    background: #333;

}



/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {

    .navbar {

        padding-bottom: 0;

    }



    .nav-top {

        padding: 0 20px;

        height: 60px;

        justify-content: space-between;

        width: 100%;

    }



    .nav-logo {

        width: 120px;

        height: auto;

    }



    .nav-logo-container {

        order: 1;

        flex: 0 0 auto;

        display: flex;

        align-items: center;

    }



    .nav-search {

        order: 2;

        flex: 0 0 auto;

        margin-left: auto;

        margin-right: 15px;

    }



    .nav-cta {

        display: none !important;

    }



    .mobile-menu-toggle {

        display: block;

        order: 3;

    }



    .nav-btn {

        padding: 8px 16px;

        font-size: 12px;

    }



    .nav-links {

        display: none !important; /* Force hide by default on mobile */

        position: fixed;

        top: 60px;

        left: 0;

        width: 100%;

        height: calc(100vh - 60px);

        background: var(--color-white);

        flex-direction: column;

        align-items: center;

        padding: 40px 20px;

        gap: 30px;

        z-index: 1001;

        overflow-y: auto;

        margin-top: 0;

    }



    .nav-links.active {

        display: flex !important; /* Force show when active class is added via JS */

    }



    .mobile-only-cta {

        display: block;

        margin-top: 20px;

        width: 100%;

        text-align: center;

    }



    .mobile-only-cta .nav-btn {

        width: 80%;

        padding: 15px;

        font-size: 16px;

    }



    .mega-menu {

        position: static;

        width: 100%;

        padding: 20px 0;

        box-shadow: none;

        max-height: none;

        display: none !important;

    }



    .nav-item:hover .mega-menu {

        display: none !important; /* Disable hover mega menu on mobile */

    }



    .mega-menu-content {

        grid-template-columns: 1fr;

        padding: 0 20px;

        gap: 20px;

    }



    .showcase-integrated .showcase-image {

        width: 100%;

        height: 400px;

        margin-top: 40px;

        margin-bottom: 0;

        max-width: none;

    }



    .showcase-integrated.reversed .grid-2 {

        direction: ltr;

    }



    .showcase-integrated .grid-2 {

        gap: 40px; /* Reduced gap for tablet */

    }



    .showcase-section-peach {

        padding: 60px 0;

        margin-top: 60px;

    }



    .product-slider-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 16px;

    }



    .watch-showcase-section {

        margin-bottom: 0;

    }



    .product-slider-nav {

        align-self: flex-start;

    }



    .collections-banner {

        flex-direction: column;

        height: auto;

    }



    .collection-item {

        height: 500px;

    }



    .collection-overlay {

        padding: 40px 20px;

    }



    .product-card {

        height: 450px;

    }



    .product-slider .product-card {

        flex: 0 0 calc(50% - 12px);

        min-width: calc(50% - 12px);

    }



    .product-image-container {

        padding: 40px;

    }



    .product-price {

        font-size: 16px;

    }



    .product-name {

        font-size: 14px;

    }

}



@media (max-width: 768px) {

    .product-slider-header {

        flex-direction: column;

        align-items: center;

        gap: 12px;

        margin-bottom: 24px;

    }



    .product-slider-heading p {

        padding: 0 16px;

    }



    .product-slider-nav {

        align-self: center;

    }



    .product-slider-container .slider-arrow-btn {

        display: none !important;

    }



    .product-slider {

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;

        gap: 12px;

    }



    .product-slider .product-card {

        scroll-snap-align: start;

    }



    .hero {

        height: 450px;

    }



    .hero-content {

        margin-top: 80px; /* Reduced offset for mobile */

    }



    .hero-title {

        margin-bottom: 12px;

        line-height: 1.2;

    }



    .hero-subtitle {

        margin-bottom: 24px;

    }



    .section-title.split {

        max-width: 100%;

        text-align: center;

    }



    /* Pens showcase responsive fix */

    .showcase-integrated[style*="margin-left: 80px"] {

        margin-left: 20px !important;

        margin-right: 20px;

    }



    .showcase-integrated[style*="margin-left: 80px"] .grid-2 {

        gap: 40px !important;

    }



    .showcase-integrated[style*="margin-left: 80px"] .showcase-content {

        max-width: 100% !important;

    }



    .showcase-integrated[style*="margin-left: 80px"] .showcase-image {

        max-width: 100% !important;

        width: 100% !important;

        height: 400px !important;

        margin-bottom: 0 !important;

        margin-right: 0 !important;

        margin-left: 0 !important;

    }



    .showcase-integrated[style*="margin-left: 80px"] .showcase-image img {

        width: 100% !important;

    }



    .section-title {

        text-align: center;

    }



    .category-card {

        height: 400px;

    }



    .btn {

        padding: 12px 24px;

        font-size: 14px;

    }



    .product-slider .product-card {

        flex: 0 0 calc(100% - 0px);

        min-width: calc(100% - 0px);

    }



    .btn-underline {

        font-size: 14px;

        padding: 12px 0;

    }



    .watch-showcase-section {

        margin-bottom: 0;

    }



    .grid-3, .grid-2 {

        grid-template-columns: 1fr;

    }

}



/* --- Watch Showcase Section --- */

.watch-showcase-section {

    width: 100%;

    position: relative;

    margin-bottom: -4rem;

    z-index: 1;

}



.watch-showcase-item {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 850px;

}



.watch-showcase-item .watch-showcase-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    text-align: left;

    gap: 24px;

    padding: 80px 60px;

    margin: 0 auto;

}



.watch-showcase-item .watch-showcase-content .section-title {

    font-size: 40px;

    letter-spacing: 4px;

    line-height: 1.4;

    max-width: 305px;

    width: 100%;

    margin-bottom: 0;

}



.watch-showcase-item .watch-showcase-content .subtitle {

    font-size: 16px;

    line-height: 2;

    letter-spacing: 0.32px;

    max-width: 305px;

    width: 100%;

    margin: 0;

}



.watch-showcase-item .watch-showcase-image {

    overflow: hidden;

    position: relative;

}



.watch-showcase-item .watch-showcase-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}



.watch-showcase-item.reversed .watch-showcase-content {

    padding: 80px 60px;

    align-items: flex-start;

    text-align: left;

    margin: 0 auto;

    order: 2;

}



.watch-showcase-item.reversed .watch-showcase-content .section-title {

    max-width: 331px;

}



.watch-showcase-item.reversed .watch-showcase-content .subtitle {

    max-width: 331px;

}



.watch-explore-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 16px 16px 0;

    font-family: 'Tenor Sans', serif;

    font-size: 16px;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    color: var(--color-brand);

    border-bottom: 1px solid var(--color-brand);

    text-decoration: none;

    transition: opacity 0.2s ease;

}



.watch-explore-btn:hover {

    opacity: 0.7;

}



.watch-showcase-item.reversed .watch-showcase-image {

    order: 1;

}



/* --- Brands Marquee Section --- */

.brands-marquee-section {

    padding: 80px 0 60px;

    overflow: hidden;

}



.brands-marquee-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 48px;

    gap: 24px;

}





@media (max-width: 768px) {

    .brands-marquee-header {

        flex-direction: column;

        align-items: center;

        gap: 16px;

    }

}



.brands-marquee-track {

    overflow: hidden;

    width: 100%;

}



.brands-marquee-inner {

    display: flex;

    gap: 0;

    animation: marquee-scroll 20s linear infinite;

    width: max-content;

}



.brand-logo-item {

    width: 195px;

    height: 98px;

    border: 1px solid rgba(0,0,0,0.05);

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 16px;

}



.brand-logo-item img {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

}



@keyframes marquee-scroll {

    0% { transform: translateX(0); }

    100% { transform: translateX(-50%); }

}



@media (max-width: 1024px) {

    .watch-showcase-item {

        grid-template-columns: 1fr;

        min-height: auto;

    }



    .watch-showcase-item .watch-showcase-image {

        height: 500px;

        order: 1;

    }



    .watch-showcase-item .watch-showcase-content {

        padding: 60px 40px;

        max-width: 100%;

        order: 2;

        margin-top: 40px;

    }



    .watch-showcase-item .watch-showcase-content .section-title,

    .watch-showcase-item .watch-showcase-content .subtitle,

    .watch-showcase-item.reversed .watch-showcase-content .section-title,

    .watch-showcase-item.reversed .watch-showcase-content .subtitle {

        max-width: 100%;

    }



    .watch-showcase-item.reversed .watch-showcase-content {

        padding: 60px 40px;

        order: 2;

    }



    .watch-showcase-item.reversed .watch-showcase-image {

        order: 1;

    }

}



@media (max-width: 768px) {

    .watch-showcase-item .watch-showcase-content {

        padding: 40px 20px;

    }



    .watch-showcase-item.reversed .watch-showcase-content {

        padding: 40px 20px;

    }



    .watch-showcase-item .watch-showcase-content .section-title,

    .watch-showcase-item.reversed .watch-showcase-content .section-title {

        font-size: var(--fs-h2);

        letter-spacing: 2px;

    }



    .watch-explore-btn {

        align-self: center;

    }



    .watch-showcase-item {

        padding-bottom: 2rem;

    }



    .brands-marquee-section {

        padding: 40px 0 30px;

    }



    .brand-logo-item {

        width: 140px;

        height: 70px;

    }

}



/* --- Interactive Collections Section --- */

.collections-interactive {

    width: 100%;

}



.collections-interactive-wrapper {

    display: flex;

    width: 100%;

}



.collections-left {

    width: 50%;

    flex-shrink: 0;

}



.collections-main-image-wrapper {

    position: relative;

    width: 100%;

    height: 850px;

    overflow: hidden;

}



.collections-main-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



/* Hotspot Styles */

.collections-hotspot {

    position: absolute;

    width: 20px;

    height: 20px;

    background: transparent;

    border: none;

    cursor: pointer;

    padding: 0;

    z-index: 10;

    transform: translate(-50%, -50%);

}



.hotspot-dot {

    position: absolute;

    width: 12px;

    height: 12px;

    background: white;

    border-radius: 50%;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    box-shadow: 0 2px 8px rgba(0,0,0,0.3);

    transition: transform 0.3s ease;

}



.hotspot-pulse {

    position: absolute;

    width: 20px;

    height: 20px;

    border: 2px solid white;

    border-radius: 50%;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    animation: hotspotPulse 2s ease-out infinite;

}



.collections-hotspot:hover .hotspot-dot {

    transform: translate(-50%, -50%) scale(1.3);

}



.collections-hotspot.active .hotspot-dot {

    background: var(--color-brand);

    transform: translate(-50%, -50%) scale(1.3);

}



@keyframes hotspotPulse {

    0% {

        transform: translate(-50%, -50%) scale(1);

        opacity: 1;

    }

    100% {

        transform: translate(-50%, -50%) scale(2);

        opacity: 0;

    }

}



/* Right Side */

.collections-right {

    width: 50%;

    flex-shrink: 0;

    position: relative;

    height: 850px;

    overflow: hidden;

}



.collections-right-image-wrapper {

    position: absolute;

    inset: 0;

}



.collections-right-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: opacity 0.4s ease;

}



.collections-right-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.3);

}



.collections-right-content {

    position: absolute;

    left: 80px;

    top: 513px;

    max-width: 460px;

    z-index: 5;

}



.collections-right-title {

    font-size: 40px;

    line-height: 1.4;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: white;

    margin-bottom: 24px;

    font-family: var(--font-primary);

    transition: opacity 0.3s ease;

}



.collections-right-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px;

    color: white;

    font-size: 16px;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    text-decoration: none;

    border-bottom: 1px solid white;

    font-family: var(--font-primary);

    transition: all 0.3s ease;

}



.collections-right-btn:hover {

    color: var(--color-brand);

    border-color: var(--color-brand);

}



/* Responsive */

@media (max-width: 1024px) {

    .collections-interactive-wrapper {

        flex-direction: column;

    }

    

    .collections-left,

    .collections-right {

        width: 100%;

    }

    

    .collections-main-image-wrapper,

    .collections-right {

        height: 500px;

    }

    

    .collections-right-content {

        left: 40px;

        top: 50%;

        transform: translateY(-50%);

    }

    

    .collections-right-title {

        font-size: 28px;

        letter-spacing: 2px;

    }

}



/* --- Footer Responsive --- */

@media (max-width: 1024px) {

    .footer {

        padding-top: 80px;

    }



    .footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 60px 40px;

    }



    .footer-logo-col {

        grid-column: 1 / -1;

    }



    .footer-divider {

        display: none;

    }



    .footer-menu-col:nth-child(3) {

        margin: 0;

    }



    .footer-menu-col:last-child {

        margin-left: 0;

    }



    .footer-bottom {

        justify-content: space-between;

    }

}



@media (max-width: 768px) {

    .footer {

        padding-top: 60px;

    }



    .footer-main {

        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 48px;

    }



    .footer-logo-col {

        grid-column: auto;

        text-align: center;

    }



    .footer-logo {

        width: 160px;

        margin: 0 auto;

    }



    .footer-menu-col {

        gap: 40px;

    }



    .footer-menu-col:nth-child(3),

    .footer-menu-col:last-child {

        margin: 0;

        align-items: flex-start;

    }



    .footer-back-to-top {

        margin-bottom: 32px;

    }



    .back-to-top-btn {

        width: 72px;

        height: 72px;

    }



    .footer-bottom {

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 16px;

        justify-content: center;

        padding: 24px 0 32px;

    }



    .footer-policy {

        flex-wrap: wrap;

        justify-content: center;

        gap: 12px;

    }

}



/* Safety Overflow Fixes */

* {

    max-width: 100vw;

}



html, body {

    width: 100%;

    overflow-x: hidden;

    position: relative;

}

