/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: visibility 0s 1.2s; /* matches animation length */
}

.loader.hidden {
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
}

.loader-logo {
    height: 60px;
    width: auto;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.loader-progress {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-primary);
}

/* --- Design System --- */
:root {
    --bg-color: #f6f4f1;
    --text-primary: #1e1e1e;
    --text-secondary: #5e5e5e;
    --accent-color: #a3896b; /* Soft Gold/Beige */
    --neutral-light: #f9f9f9;
    --neutral-dark: #1e1e1e;
    --white: #f6f4f1;

    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", system-ui, -apple-system, sans-serif;

    --container-width: 1320px;
    --section-padding: 60px 0;
    --gutter: 20px;

    /* Premium Smooth Animation System */
    --ease-out: cubic-bezier(
        0.19,
        1,
        0.22,
        1
    ); /* Buttery smooth deceleration */
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* Balanced smooth */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1); /* Material smooth */

    /* Optimized Timing */
    --duration-fast: 0.25s;
    --duration-normal: 0.4s;
    --duration-slow: 0.5s;
    --duration-drawer: 0.5s; /* Perfect for modals/drawers */
}

.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

.nav-left-mobile {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: flex !important;
    }
    .nav-left-mobile {
        display: flex;
    }
}

/* --- Reset & Base --- */
::selection {
    background: var(--text-primary);
    color: var(--white);
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: #1E1E1E;
    color: var(--white);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 2000;
}

.announcement-slider {
    display: flex;
    flex-direction: column;
    transition: transform 0.8s var(--ease-out);
    height: 100%;
}

.announcement-slider p {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: initial; /* Handled by GSAP if needed */
    scrollbar-gutter: stable;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 6px;
    }
}

.italic {
    font-style: italic;
}

/* --- Typography Utilities --- */
.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.title {
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: 30px;
    line-height: 1.2;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

/* --- Utility Classes --- */
@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

.tablet-only {
    display: none !important;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tablet-only {
        display: block !important;
    }
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}

.btn-primary {
    background-color: #1f3142;
    color: #f6f4f1;
    border-color: #1f3142;
}

.btn-primary:hover {
    background-color: #cfb79e;
    color: #1f3142;
    border-color: #cfb79e;
}

.btn-outline {
    border-color: #1f3142;
    color: #1f3142;
}

.btn-outline:hover {
    background-color: #cfb79e;
    color: #1f3142;
    border-color: #cfb79e;
}

.btn-dark {
    background-color: #1f3142;
    color: #f6f4f1;
    border-color: #1f3142;
}

.btn-dark:hover {
    background-color: #cfb79e;
    color: #1f3142;
    border-color: #cfb79e;
}


/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0 10px;
    transition: all 0.4s var(--ease-out);
    background: transparent;
    color: var(--white);
}

/* Ensure product pages always have solid header if they lack hero */
body.product-page .navbar,
body.checkout-page .navbar,
body.favorites-page .navbar,
body.success-page .navbar,
body.cart-page .navbar,
body.product-detail-page .navbar {
    padding: 10px 0 5px;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.navbar.scrolled {
    padding: 10px 0 5px;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
    .navbar {
        background: rgba(255, 255, 255, 1) !important;
        color: var(--text-primary) !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: fixed !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }
    .navbar .logo-img {
        filter: none !important;
        height: 40px;
    }
    .navbar .icon-btn,
    .navbar .mobile-menu-toggle {
        color: var(--text-primary) !important;
    }
}

.nav-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 5px 0;
}

.nav-top-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icon-nav {
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.social-icon-nav:hover {
    transform: translateY(-2px);
    opacity: 0.7;
}

.nav-menu-bottom {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 10px;
    width: 100%;
}

.navbar.scrolled .nav-menu-bottom,
body.product-page .navbar .nav-menu-bottom,
body.product-detail-page .navbar .nav-menu-bottom,
body.favorites-page .navbar .nav-menu-bottom,
body.checkout-page .navbar .nav-menu-bottom,
body.cart-page .navbar .nav-menu-bottom {
    border-top-color: rgba(0, 0, 0, 0.05);
}

.logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-img {
    height: 55px; /* Increased from 40px */
    width: auto;
    transition: filter 0.4s var(--ease-out);
}

/* On Hero (Transparent Navbar), invert the black logo to white for visibility */
/* .navbar:not(.scrolled) .logo-img {
    filter: invert(1) brightness(100%);
} */

.navbar.scrolled .logo-img,
body.product-page .navbar .logo-img,
body.product-detail-page .navbar .logo-img,
body.favorites-page .navbar .logo-img,
body.checkout-page .navbar .logo-img,
body.success-page .navbar .logo-img,
body.cart-page .navbar .logo-img {
    filter: invert(0);
}

.nav-links {
    display: flex;
    gap: 40px;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.nav-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    position: relative;
    padding: 15px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.color-accent {
    color: var(--accent-color);
}

/* Mega Menu Container */
.nav-item.has-mega {
    position: static;
}

/* .nav-menu-bottom consolidated above */

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    padding: 60px 0;
    min-height: 420px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        transform 0.5s cubic-bezier(0.33, 1, 0.68, 1),
        opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1),
        visibility 0s 0.5s;
    z-index: 10;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    pointer-events: none;
    will-change: transform, opacity;
}

/* Invisible bridge so the mouse doesn't leave the menu when moving down */
.mega-menu-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
}

.nav-item.has-mega.active .mega-menu-content,
.nav-item.has-mega:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    pointer-events: auto;
}

/* Staggered Column Reveal */
.mega-menu-content .mega-col,
.mega-menu-content .mega-featured {
    opacity: 0;
    transform: translateY(15px);
    transition:
        transform 0.8s var(--ease-out),
        opacity 0.8s var(--ease-out);
}

.nav-item.has-mega.active .mega-menu-content .mega-col,
.nav-item.has-mega:hover .mega-menu-content .mega-col,
.nav-item.has-mega.active .mega-menu-content .mega-featured,
.nav-item.has-mega:hover .mega-menu-content .mega-featured {
    opacity: 1;
    transform: translateY(0);
}

.nav-item.has-mega.active .mega-menu-content .mega-featured,
.nav-item.has-mega:hover .mega-menu-content .mega-featured {
    transition-delay: 0.1s;
}
.nav-item.has-mega.active .mega-menu-content .mega-col:nth-child(2),
.nav-item.has-mega:hover .mega-menu-content .mega-col:nth-child(2) {
    transition-delay: 0.12s;
}
.nav-item.has-mega.active .mega-menu-content .mega-col:nth-child(3),
.nav-item.has-mega:hover .mega-menu-content .mega-col:nth-child(3) {
    transition-delay: 0.14s;
}
.nav-item.has-mega.active .mega-menu-content .mega-col:nth-child(4),
.nav-item.has-mega:hover .mega-menu-content .mega-col:nth-child(4) {
    transition-delay: 0.16s;
}

.mega-grid {
    display: grid;
    grid-template-columns: 350px 1fr 1fr 1fr;
    gap: 60px;
}

.mega-featured {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.mega-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.mega-featured:hover img {
    transform: scale(1.05);
}

.mega-featured-link {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--text-primary);
    width: fit-content;
}

.mega-col h5 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.mega-col ul li {
    margin-bottom: 12px;
}

.mega-col ul li a {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 400;
}

.mega-col ul li a:hover {
    color: var(--text-primary);
}

/* Currency Switcher */
.currency-switcher {
    position: relative;
    margin-right: 15px;
}

.currency-current {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: inherit;
    padding: 5px 0;
}

.currency-current .flag {
    font-size: 16px;
}

.currency-current svg {
    transition: transform 0.3s ease;
}

.currency-switcher.active .currency-current svg {
    transform: rotate(180deg);
}

.currency-list {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    max-height: 400px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out);
    z-index: 1001;
    border-radius: 4px;
}

.currency-switcher.active .currency-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

/* Custom Scrollbar for Currency List */
.currency-list::-webkit-scrollbar {
    width: 6px;
}

.currency-list::-webkit-scrollbar-track {
    background: transparent;
}

.currency-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.currency-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.currency-item:hover {
    background: var(--neutral-light);
}

.currency-item .flag {
    font-size: 18px;
}

.currency-item .country {
    font-size: 13px;
    flex: 1;
    color: var(--text-primary);
}

.currency-item .code {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Consolidated nav-actions in top section */

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s var(--ease-out);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--text-primary);
    color: var(--white);
    font-size: 9px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
}

.navbar:not(.scrolled) .cart-count {
    background: var(--white);
    color: var(--text-primary);
}

.icon-btn:hover {
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* For parallax initial state */
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.1)
    );
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: clamp(40px, 8vw, 90px);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 300;
    overflow: hidden;
}

.hero-text p {
    font-size: clamp(14px, 1.5vw, 18px);
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollLine 2s infinite var(--ease-in-out);
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* --- Generic Section --- */
.section {
    padding: var(--section-padding);
}

/* .section-header {
    margin-bottom: 60px;
} */

.section-header.center {
    text-align: center;
}

/* --- Collections Mosaic --- */
.collections-mosaic {
    background: #fff;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.header-right {
    max-width: 400px;
    padding-bottom: 30px;
}

.header-right p {
    font-size: 15px;
    color: var(--text-secondary);
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 30px;
}

.mosaic-card {
    position: relative;
    overflow: hidden;
    background: var(--neutral-light);
}

.card-inner {
    height: 100%;
    width: 100%;
    position: relative;
}

.card-media {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.mosaic-card:hover .card-media img {
    transform: scale(1.08);
}

/* Specific Card Sizes/Positions */
.mosaic-card.vertical {
    grid-column: span 5;
    grid-row: span 6;
    height: 800px;
}

.mosaic-card.square-high {
    grid-column: span 7;
    grid-row: span 3;
    height: 385px;
}

.mosaic-card.square-small {
    grid-column: span 7;
    grid-row: span 3;
    height: 385px;
}

.mosaic-card.horizontal {
    grid-column: span 12;
    height: 500px;
}

/* Content Variations */
.card-content-overlay {
    position: absolute;
    inset: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    z-index: 2;
}

.card-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.card-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.btn-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 20px;
    border-bottom: 1px solid var(--white);
    width: fit-content;
}

.card-content-bottom {
    padding: 30px 0;
}

.card-content-bottom h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-content-bottom p {
    font-size: 14px;
    color: var(--text-secondary);
}

.card-content-side {
    position: absolute;
    inset: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    height: fit-content;
    padding: 20px 30px;
    align-self: flex-end;
    z-index: 2;
}

.card-content-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.subtitle.white {
    color: var(--white);
}
.title.white {
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--text-primary);
}

.btn-white:hover {
    background: var(--text-primary);
    color: var(--white);
}

@media (max-width: 1024px) {
    .mosaic-card.vertical {
        grid-column: span 12;
        height: 600px;
    }
    .mosaic-card.square-high,
    .mosaic-card.square-small {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .mosaic-card.square-high,
    .mosaic-card.square-small {
        grid-column: span 12;
        height: 400px;
    }
    .mosaic-card.horizontal {
        height: 400px;
    }
}

/* --- Products Grid --- */
.all-products {
    background: var(--bg-color);
}

.product-category {
    margin-bottom: 120px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; /* Reduced from 20px */
    }

    .btn-add-to-cart-info.mobile-only,
    .product-actions,
    .action-btn.btn-add-to-cart {
        display: none !important;
    }

    .product-category {
        margin-bottom: 80px;
    }
}

/* --- Editorial Divider --- */
.editorial-divider {
    padding: 100px 0;
    text-align: center;
    background: rgba(207, 183, 158, 0.1);
    margin: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.editorial-quote {
    font-family: var(--font-serif);
    font-size: 32px;
    max-width: 800px;
    margin: 0 auto 20px;
    font-style: italic;
    color: var(--text-primary);
}

.editorial-author {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 14px;
    color: var(--gold);
}

/* --- Editorial Showcase --- */
.editorial-showcase {
    display: flex;
    align-items: center;
    gap: 80px;
    margin: 120px 0;
    padding: 60px 0;
    background: #fdfaf7;
    overflow: hidden;
}

.editorial-showcase.split-right {
    flex-direction: row;
}

.editorial-showcase.split-left {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
    padding: 0 40px;
}

.showcase-text .subtitle {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
}

.showcase-text .title {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.showcase-media {
    flex: 1.2;
    height: 600px;
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-in-out);
}

.editorial-showcase:hover .showcase-media img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .editorial-showcase {
        flex-direction: column !important;
        gap: 40px;
        margin: 80px 0;
        padding: 0;
    }

    .showcase-text {
        padding: 40px;
        text-align: center;
    }

    .showcase-media {
        width: 100%;
        height: 450px;
    }
}
.best-sellers {
    background: #cfb79e;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-img {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text .title {
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* --- Products Carousel --- */
.products-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gutter);
}

@media (max-width: 768px) {
    .products-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.product-card {
    cursor: pointer;
    position: relative; /* Added for stretched link */
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.product-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--ease-out);
    z-index: 10;
    color: var(--text-primary);
}

.wishlist-btn svg {
    width: 16px;
    height: 16px;
}

.wishlist-btn:hover {
    background: var(--text-primary);
    color: var(--white);
    transform: scale(1.1);
}

.add-cart-icon {
    position: absolute;
    top: 55px; /* wishlist top(15) + wishlist height(30) + gap(10) */
    right: 15px;
    background: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--ease-out);
    z-index: 10;
    color: var(--text-primary);
}

.add-cart-icon:hover {
    background: var(--text-primary);
    color: var(--white);
    transform: scale(1.1);
}

.btn-add-to-cart-info {
    width: 100%;
    height: 52px;
    background: #1f3142;
    color: #f6f4f1;
    border: 1px solid #1f3142;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-add-to-cart-info:hover {
    background: #cfb79e;
    color: #1f3142;
    border-color: #cfb79e;
}

.wishlist-btn.active,
.wishlist-btn.wishlisted {
    color: #ff4d4d;
}

.wishlist-btn.wishlisted svg {
    fill: #ff4d4d;
    stroke: #ff4d4d;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.card-actions-hover {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
    pointer-events: none;
    z-index: 10;
}

.product-card:hover .card-actions-hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.action-btn-card {
    flex: 1;
    padding: 14px 25px; /* Increased padding */
    font-size: 13px; /* Increased from 10px */
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.15em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn {
    background: #fff;
    color: #1E1E1E;
}
.add-to-cart-btn:hover {
    background: #f0f0f0;
    color: #1E1E1E;
}

/* buy-now-btn removed to favor prominent Add to Cart */

.product-info {
    margin-top: 15px;
    position: relative;
}

.product-title-link::after {
    content: "";
    position: absolute;
    top: -300px; /* More robust coverage for image area */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.product-card h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.product-card .price {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.product-meta {
    margin-bottom: 12px;
}

.product-colors {
    display: flex;
    gap: 8px;
}

.swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
}

.swatch::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1.2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.2s ease;
}

.swatch.active::after {
    border-color: #999;
}

.swatch:hover {
    transform: scale(1.15);
}

.product-color-pie {
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.product-color-pie:hover {
    transform: scale(1.12);
}

@media (max-width: 768px) {
    .product-colors {
        gap: 12px;
        margin: 5px 0;
    }
    .swatch {
        width: 18px;
        height: 18px;
    }
    .swatch::after {
        inset: -4px;
    }
}

.product-info h4 {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}

.price {
    font-size: 14px;
    color: var(--text-secondary);
}

/* --- Testimonials Immersive --- */
.testimonials-immersive {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: #1E1E1E;
    overflow: hidden;
    color: var(--white);
}

.testimonial-container,
.testimonial-slides {
    height: 100%;
    width: 100%;
}

.t-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
}

.t-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.t-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #1E1E1E;
}

.t-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1);
}

/* Ken Burns Effect - Subtle */
.t-slide.active .t-bg img {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
        object-position: center 30%;
    }
    to {
        transform: scale(1.03);
        object-position: center 35%;
    }
}

/* Mobile: Use cover for full-bleed effect */
@media (max-width: 768px) {
    .t-bg img {
        object-fit: cover;
    }
}

.t-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.t-content-wrapper {
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.t-content {
    max-width: 800px;
    pointer-events: auto;
}

.t-quote {
    font-family: var(--font-serif);
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: -0.01em;
}

.t-author-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.t-author {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.t-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Controls */
.t-controls {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t-numbers {
    display: flex;
    align-items: center;
    gap: 20px;
}

.t-numbers .current,
.t-numbers .total {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.t-numbers .progress-bar {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.t-numbers .progress-bar .fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--white);
    transition: width 0.3s linear;
}

.t-arrows {
    display: flex;
    gap: 20px;
}

.t-arrows button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-arrows button:hover {
    background: var(--white);
    color: #1E1E1E;
    border-color: var(--white);
}

@media (max-width: 768px) {
    .testimonials-immersive {
        height: 100vh;
    }

    .t-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .t-content {
        text-align: center;
    }

    .t-controls {
        bottom: 40px;
        flex-direction: column;
        gap: 40px;
    }
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 400px;
    background: var(--bg-color);
    z-index: 4000;
    padding: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    overflow: hidden;
    box-shadow: 2px 0 30px rgba(0, 0, 0, 0.12);
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Overlay backdrop */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3999;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease,
        visibility 0s 0.5s;
    will-change: opacity;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0s 0s;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.mobile-menu-header .logo-img {
    height: 28px;
}

.menu-close {
    background: none;
    border: none;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    color: var(--text-primary);
    padding: 5px;
    line-height: 1;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0 30px 100px;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(-20px);
    transition:
        transform 1.0s cubic-bezier(0.33, 1, 0.68, 1),
        opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform, opacity;
}

.mobile-menu > .mobile-menu-item:last-child {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu.active .mobile-menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Stunning Staggered Delays */
.mobile-menu.active .mobile-menu-item:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-item:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.active .mobile-menu-item:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.active .mobile-menu-item:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu.active .mobile-menu-item:nth-child(5) { transition-delay: 0.43s; }
.mobile-menu.active .mobile-menu-item:nth-child(6) { transition-delay: 0.50s; }
.mobile-menu.active .mobile-menu-item:nth-child(7) { transition-delay: 0.57s; }
.mobile-menu.active .mobile-menu-item:nth-child(8) { transition-delay: 0.64s; }

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu-link .chevron {
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    font-size: 12px;
}

.mobile-menu-item.active .chevron {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    padding-left: 15px;
}

.mobile-menu-item.active .mobile-submenu {
    max-height: 2000px;
    padding-bottom: 10px;
}

/* Currency list — sits at the very bottom of the sidebar */
.mobile-currency-item {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-top: 1px solid #eee;
    padding: 0 30px 20px;
}

.mobile-currency-item .mobile-menu-link {
    padding: 16px 0;
}

.mobile-currency-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 15px;
}

.mobile-currency-item.active .mobile-currency-list {
    max-height: 250px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.mobile-currency-list .submenu-inner {
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
}

/* Flip chevron when currency item is open */
.mobile-currency-item.active .chevron {
    transform: rotate(180deg);
}

/* Custom scrollbar for mobile currency list */
.mobile-currency-list::-webkit-scrollbar {
    width: 4px;
}
.mobile-currency-list::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.03);
}
.mobile-currency-list::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}

.mobile-submenu a {
    display: block;
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateX(-10px);
    transition:
        transform 0.9s cubic-bezier(0.33, 1, 0.68, 1),
        opacity 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}

.mobile-menu-item.active .mobile-submenu a {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Sub-links Reveal */
.mobile-menu-item.active .mobile-submenu a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu-item.active .mobile-submenu a:nth-child(2) { transition-delay: 0.25s; }
.mobile-menu-item.active .mobile-submenu a:nth-child(3) { transition-delay: 0.35s; }
.mobile-menu-item.active .mobile-submenu a:nth-child(4) { transition-delay: 0.45s; }
.mobile-menu-item.active .mobile-submenu a:nth-child(5) { transition-delay: 0.55s; }
.mobile-menu-item.active .mobile-submenu a:nth-child(6) { transition-delay: 0.65s; }
.mobile-menu-item.active .mobile-submenu a:nth-child(7) { transition-delay: 0.75s; }

.mobile-submenu a:hover {
    color: var(--text-primary);
}

/* Currency Options in Mobile Menu */
.currency-option {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    font-family: var(--font-sans);
}

.currency-option:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
}

.currency-option.active {
    color: var(--text-primary);
    font-weight: 600;
}

#selectedCurrency {
    font-weight: 600;
    color: var(--text-primary);
}
.mobile-simple-link {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

/* --- Newsletter --- */
.newsletter {
    background-color: var(--neutral-light);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-top: 40px;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-sans);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--text-primary);
}

/* --- Footer --- */
.footer {
    padding: 100px 0 60px;
    background-color: #cfb79e; /* Very light blue/neutral as seen in image */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
}

.newsletter-col {
    max-width: 400px;
}

.footer-newsletter {
    display: flex;
    margin-bottom: 25px;
}

.footer-newsletter input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-right: none;
    font-family: var(--font-sans);
    font-size: 14px;
    background: #ffffff;
}

.footer-newsletter button {
    background: #1f3142; /* Blue button from image */
    color: var(--white);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter button:hover {
    background: #cfb79e;
    color: #1f3142;
}

.disclaimer {
    font-size: 13px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.map-col {
    width: 100%;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: block;
    text-decoration: none;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Clickable map hover effects */
.map-clickable {
    cursor: pointer;
}

.map-clickable:hover img {
    transform: scale(1.05);
}

.map-overlay-pin {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
}

.map-overlay-pin svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.map-overlay-pin span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.map-clickable:hover .map-overlay-pin {
    opacity: 1;
}

.footer-bottom.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo .logo-img {
    height: 45px;
}

.footer-bottom p {
    font-size: 12px;
    color: #777;
    letter-spacing: 0.05em;
}

/* --- Animations Helper --- */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    display: none; /* Only on desktop */
    will-change: transform;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

/* --- Mobile Responsiveness (Comprehensive Fix) --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .split-layout {
        gap: 50px;
    }

    .mosaic-card.vertical {
        grid-column: span 12;
        height: 600px;
    }

    .mosaic-card.square-high,
    .mosaic-card.square-small {
        grid-column: span 6;
    }

    .products-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: currentColor;
    transition:
        transform 0.4s var(--ease-out),
        opacity 0.4s var(--ease-out);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.navbar:not(.scrolled) .mobile-menu-toggle {
    color: var(--white);
}

.navbar.scrolled .mobile-menu-toggle {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 6px;
    }

    .navbar {
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 8px; /* Reduced from 15px */
    }

    /* Left Icon Group */
    .nav-left-mobile {
        display: flex;
        align-items: center;
        grid-column: 1;
    }

    /* Centered Logo */
    .logo {
        grid-column: 2;
        justify-self: center;
    }

    .logo-img {
        height: 28px;
        filter: none !important;
    }

    /* Right Icon Group */
    .nav-actions {
        grid-column: 3;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
        color: var(--text-primary) !important;
    }

    .nav-actions .icon-btn,
    .nav-left-mobile .icon-btn {
        color: var(--text-primary) !important;
    }

    .nav-links,
    .currency-switcher {
        display: none !important;
    }

    /* Core Sections */
    .hero {
        height: 100vh; /* Reverted to 100vh for full visual impact */
        min-height: 500px; /* Prevent it getting too small */
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Force center positioning for mobile */
        object-position: center; 
    }

    .hero-text h1 {
        font-size: clamp(34px, 10vw, 50px);
        margin-bottom: 20px;
    }

    .hero-btns {
        display: none; /* Hidden on mobile */
    }

    .section {
        padding: 40px 0;
    }

    .split-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-img {
        order: -1;
        aspect-ratio: 1/1;
    }

    .about-text {
        text-align: center;
    }

    /* Mosaic Grid Repair */
    .mosaic-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mosaic-card {
        width: 100% !important;
        height: 400px !important;
        grid-column: span 12 !important;
    }

    .card-content-overlay {
        inset: 25px;
    }

    .scroll-indicator {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }

    .card-content-side {
        inset: 20px;
        padding: 15px 20px;
    }

    /* Footer Repair */
    .footer {
        padding: 60px 0 40px;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }

    .footer-newsletter {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .map-col {
        order: -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal {
        justify-content: center;
    }
}

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 5000;
    width: 60px;
    height: 60px;
    background: #1f3142;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #cfb79e;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.scroll-to-top svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 20px;
        width: 55px;
        height: 55px;
        z-index: 99998;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .scroll-to-top {
        bottom: 110px;
        right: 20px;
        width: 55px;
        height: 55px;
        z-index: 99999;
        pointer-events: auto !important;
    }

    .scroll-to-top svg {
        width: 24px;
        height: 24px;
    }
}

/* Adjust position when mobile sticky bar is visible */
@media (max-width: 768px) {
    .mobile-sticky-actions ~ .whatsapp-float,
    .mobile-sticky-bar ~ .whatsapp-float,
    .cart-sidebar ~ .whatsapp-float {
        bottom: 140px !important;
    }

    .mobile-sticky-actions ~ .scroll-to-top,
    .mobile-sticky-bar ~ .scroll-to-top,
    .cart-sidebar ~ .scroll-to-top {
        bottom: 210px !important;
    }
}
.wishlist-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e00606;
    color: var(--white);
    font-size: 9px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
}
