/* =============== FONTS =============== */
@font-face {
    font-family: 'Author';
    src: url('../fonts/author/Author-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Vonca';
    src: url('../fonts/vonca/Vonca-ExtraLight.otf') format('opentype');
    font-weight: 200;
}

@font-face {
    font-family: 'Vonca';
    src: url('../fonts/vonca/Vonca-Light.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'Vonca';
    src: url('../fonts/vonca/Vonca-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Vonca';
    src: url('../fonts/vonca/Vonca-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'Vonca';
    src: url('../fonts/vonca/Vonca-Semibold.otf') format('opentype');
    font-weight: 600;
}

@font-face {
    font-family: 'Vonca';
    src: url('../fonts/vonca/Vonca-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Vonca';
    src: url('../fonts/vonca/Vonca-ExtraBold.otf') format('opentype');
    font-weight: 800;
}

/* =============== ROOT VARIABLES =============== */
:root {
    --announcement-height: 36px;
    /* Precise height to remove gap */
    --header-top-height: 70px;
    /* Height of the white logo section */
    --total-header-height: calc(var(--announcement-height) + var(--header-top-height));
}

/* =============== RESET & BASE =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 0;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    background-color: #FAFAFA;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.nav-links a,
.mobile-nav-links a {
    font-family: 'Vonca', serif;
    font-weight: 375;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

li {
    list-style: none;
}

/* =============== ANNOUNCEMENT BAR =============== */
.announcement-bar {
    background-color: #FFFFFF;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 2%;
    font-size: 0.85rem;
    font-weight: 375;
    letter-spacing: 1px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.3s ease;
}

@media (min-width: 992px) {
    .announcement-bar {
        gap: 15rem;
        font-size: 1.1rem;
        padding: 0.5rem 5%;
        letter-spacing: 1.5px;
        /* Slightly more gap on desktop to stay professional but close */
    }
}

.announcement-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Author', sans-serif;
    font-weight: 500;
    position: relative;
    width: auto;
    /* Arrows stay close naturally via flex gap */
}

.messages-container {
    width: 200px;
    /* Reduced base width for mobile */
    max-width: 60vw;
    /* Responsive constraint */
    position: relative;
    height: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message {
    position: absolute;
    width: max-content;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    /* Perfect horizontal centering */
}

.message.active {
    opacity: 1;
    visibility: visible;
}

.arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    color: #555;
    z-index: 10;
    display: none;
    /* Hidden on mobile */
    align-items: center;
}

@media (min-width: 992px) {
    .arrow-btn {
        display: flex;
        /* Shown on desktop */
    }
}

.dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 4px;
    height: 4px;
    background-color: #CCC;
    border-radius: 50%;
}

.dot.active {
    background-color: #612c3b;
    /* A dark burgundy as per screenshot */
}

/* Hide announcement bar when mobile menu is open */
body.no-scroll .announcement-bar {
    display: none !important;
}

/* =============== HEADER & NAVIGATION =============== */
.header {
    position: fixed;
    top: var(--announcement-height);
    /* Dynamic height calculation */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease, top 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

@media (min-width: 992px) {
    .header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Base header-top */
.header-top {
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 4%;
    transition: padding 0.3s ease, background-color 0.3s ease;
}

@media (min-width: 992px) {
    .header-top {
        padding: 1rem 6%;
    }
}

/* Scrolled header-top */
.header.scrolled .header-top {
    background-color: transparent;
    padding: 0.8rem 4%;
}

@media (min-width: 992px) {
    .header.scrolled .header-top {
        background-color: #FFFFFF;
        padding: 0.8rem 6%;
    }
}

/* Hide announcement bar on scroll globally */
body.scrolled-down .announcement-bar {
    transform: translateY(-100%);
}

body.scrolled-down .header {
    top: 0;
}

/* Visibility classes */
.mobile-only {
    display: flex !important;
}

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

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

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

/* Mobile Search vs Hamburger toggle logic */
.mobile-search-btn {
    display: none !important;
    /* hidden by default */
}

/* On mobile scroll: hide hamburger & location, show search */
@media (max-width: 991px) {

    .header.scrolled .hamburger-btn.mobile-only,
    .header.scrolled .location-btn {
        display: none !important;
    }

    .header.scrolled .mobile-search-btn {
        display: flex !important;
    }

    .header.scrolled .nav-container {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Reset to default desktop behavior - hide the mobile search always */
@media (min-width: 992px) {
    .header.scrolled .mobile-search-btn {
        display: none !important;
    }
}

.nav-icon {
    width: 22px;
    height: 22px;
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
}

@media (min-width: 992px) {
    .nav-icon {
        width: 30px;
        height: 30px;
    }
}

.search-toggle .nav-icon {
    width: 18px;
    height: 18px;
}

@media (min-width: 992px) {
    .search-toggle .nav-icon {
        width: 20px;
        height: 20px;
    }
}

.icon-btn:hover .nav-icon {
    filter: invert(72%) sepia(21%) saturate(1001%) hue-rotate(5deg) brightness(97%) contrast(89%);
}

.header.scrolled .nav-icon {
    filter: invert(1);
    /* Turn white on scroll */
}

@media (min-width: 992px) {
    .header.scrolled .nav-icon {
        filter: none;
        /* Keep black on desktop scroll */
    }
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .icon-btn {
        padding: 0.5rem;
    }
}



.icon-btn:hover {
    color: #d4af37;
}

/* Left & Right Icons container spacing */
.left-icons,
.right-icons {
    display: flex;
    gap: 0.8rem;
    /* Tighter gap for mobile header layout */
    align-items: center;
}

@media (min-width: 768px) {

    .left-icons,
    .right-icons {
        gap: 2rem;
    }
}

/* Logo */
.logo-container {
    text-align: center;
    flex-grow: 1;
}

.logo {
    height: 30px;
    /* Logo scaling for mobile */
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

@media (min-width: 768px) {
    .logo {
        height: 60px;
    }
}

.header:not(.scrolled) .logo {
    filter: none;
}

.header.scrolled .logo {
    transform: scale(0.9);
    filter: brightness(0) invert(1);
    /* Make it white (Mobile/Tablet scrolled) */
}

@media (min-width: 992px) {
    .header.scrolled .logo {
        filter: none;
        /* Keep black on desktop */
    }
}

/* Navigation Container (Bottom row of header) */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the content wrapper */
    padding: 0.5rem 4%;
    background: transparent;
    transition: padding 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
    position: relative;
    /* For absolute positioning of hamburger */
}

.hamburger-btn {
    display: none;
    /* margin-right: 1.5rem; */
}

@media (min-width: 992px) {
    .hamburger-btn {
        display: flex;
        /* Visible on desktop */
    }
}

/* Standardize Mobile Icons - White on Scroll/Transparency */
.header.scrolled .header-top .nav-icon,
.header.scrolled .nav-container .nav-icon,
.nav-links img.mobile-only {
    filter: brightness(0) invert(1) !important;
}

@media (min-width: 992px) {

    .header.scrolled .header-top .nav-icon,
    .header.scrolled .nav-container .nav-icon,
    .nav-links img.mobile-only {
        filter: none !important;
        /* Revert to black on desktop */
    }
}


@media (min-width: 992px) {
    .nav-container {
        padding: 0.5rem 6%;
        background: #FFFFFF;
        border-top: 1px solid #EEE;
    }

    .header.scrolled .nav-container {
        border-top: 1px solid #EEE;
        background: #FFFFFF;
        border-bottom: none;
    }

    .nav-container .hamburger-btn {
        position: absolute;
        left: 6%;
        top: 50%;
        transform: translateY(-50%);
        margin-right: 0;
        padding: 0.5rem;
        /* Match other header icons */
    }

    .hamburger-btn .nav-icon {
        filter: none;
        /* Black on desktop */
    }
}

.nav-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    /* Take full width to center effectively */
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: #EEE;
    margin: 0 1.5rem;
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 992px) {
    .nav-divider {
        display: block;
    }
}

.nav-search-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 0.75rem;
}

/* Desktop Nav (now also handles mobile) */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    /* horizontally scrollable on mobile */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* hide scrollbar firefox */
}

.search-toggle .nav-icon {
    filter: none;
    /* Black by default */
}

@media (min-width: 992px) {
    .search-toggle .nav-icon {
        filter: none;
        /* Black on desktop */
    }
}

.desktop-nav::-webkit-scrollbar {
    display: none;
    /* hide scrollbar webkit */
}

@media (min-width: 992px) {
    .desktop-nav {
        overflow-x: visible;
    }
}

.nav-links {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    gap: 1.25rem;
    /* Balanced gap for mobile */
    padding-right: 0;
}

@media (min-width: 992px) {
    .nav-links {
        gap: 3.5rem;
    }
}

.nav-links a {
    font-size: 16px;
    font-family: 'Vonca', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 4px;
    color: #FFF;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .nav-links a {
        font-size: 1.05rem;
        color: #111;
    }

    .header.scrolled .nav-links a {
        color: #111;
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #FFF;
    /* white underline on mobile */
    transition: width 0.3s ease;
}

@media (min-width: 992px) {
    .nav-links a::after {
        background-color: #111;
        /* black underline on desktop */
    }

    .header.scrolled .nav-links a::after {
        background-color: #111;
    }
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-divider {
    display: none;
}

@media (min-width: 992px) {
    .nav-divider {
        display: block;
        height: 20px;
        width: 1px;
        background-color: #181818;
        margin: 0 1.5rem;
    }
}

.search-toggle {
    display: none;
}

@media (min-width: 992px) {
    .search-toggle {
        display: block;
    }
}

/* Hamburger Menu (Mobile & Desktop) */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    color: #111;
}

.header.scrolled .hamburger-btn {
    color: #FFF;
}

/* DESKTOP ONLY: Hamburger menu stays black on scroll */
@media (min-width: 992px) {
    .header.scrolled .hamburger-btn {
        color: #111;
    }
}

/* Mobile Sidebar (Redesign) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    /* More like 100% since it's full screen in the pic */
    max-width: 400px;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    min-height: 70px;
}

.mobile-menu-header .hamburger-btn {
    margin-right: 0;
}

.mobile-menu-header .nav-icon {
    width: 23px;
    height: 23px;
    filter: none !important;
}

.mobile-menu-header [aria-label="Search"] .nav-icon {
    width: 19px;
    height: 19px;
}

.sidebar-top-icons,
.sidebar-right-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.sidebar-logo .logo {
    height: 31px;
    width: auto;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
}

.sidebar-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.sidebar-nav-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
    font-family: 'Author', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-divider {
    height: 1px;
    background-color: #EEE;
    margin: 1rem 0;
}

.sidebar-secondary-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gold-prices-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #111;
    font-family: 'Author', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-menu-footer {
    background-color: #F7EFE5;
    /* Tan background */
    padding: 1.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #111;
    font-family: 'Author', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.footer-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

body.no-scroll {
    overflow: hidden;
}

/* Sidebar Panels & Transitions */
.mobile-menu-body {
    position: relative;
    flex: 1;
    overflow: hidden;
    padding: 0 !important;
    /* Managed by panels */
}

.mobile-menu-panels {
    display: flex;
    width: 200%;
    /* Two panels side by side */
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-menu.submenu-active .mobile-menu-panels {
    transform: translateX(-50%);
}

.menu-panel {
    width: 50%;
    height: 100%;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    transition: opacity 0.4s ease;
}

#main-panel {
    opacity: 1;
}

.submenu-panel {
    opacity: 0;
    display: none;
}

.mobile-menu.submenu-active #main-panel {
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.submenu-active .submenu-panel {
    opacity: 1;
}

/* Submenu Panel Styling */
.submenu-header {
    margin-bottom: 2rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: 'Author', serif;
    font-size: 20px;
    font-weight: 400;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.submenu-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.submenu-nav-links li a {
    color: #111;
    font-family: 'Author', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.submenu-nav-links li a.shop-all {
    /* text-decoration: underline; */
    text-underline-offset: 6px;
    margin-top: 0.5rem;
    display: inline-block;
}

.submenu-promo {
    margin-top: auto;
    width: 100%;
}

.submenu-promo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 3px solid #612c3b;
    /* Accent border as seen in screenshot */
}

/* =============== MAIN SECTIONS =============== */
main {
    width: 100%;
}

@media (min-width: 992px) {
    main {
        padding-top: 0;
        /* Removed padding to allow sticky sections to cover full viewport */
    }
}

/* ============================================================
   Collections Sticky Scroll — collections.css
   Enqueue karo functions.php mein:
   wp_enqueue_style( 'collections', get_template_directory_uri() . '/assets/css/collections.css' );
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

/* ── Each sticky section ─────────────────────────────────── */
.cs-section {
    width: 100%;
    height: 100vh;
    height: 100svh;
    position: sticky;
    top: 0;
    overflow: hidden;
}

/* Z-index stacking — new section slides OVER previous */
.cs-section:nth-child(1) { z-index: 1; }
.cs-section:nth-child(2) { z-index: 2; }
.cs-section:nth-child(3) { z-index: 3; }
.cs-section:nth-child(4) { z-index: 4; }
.cs-section:nth-child(5) { z-index: 5; }
.cs-section:nth-child(6) { z-index: 6; }

/* ── Full-cover anchor ───────────────────────────────────── */
.cs-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

/* ── Picture / Image ─────────────────────────────────────── */
.cs-section picture {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.cs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Premium: slight scale that settles when section enters */
    transform: scale(1.06);
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.cs-section.cs-active .cs-img {
    transform: scale(1);
}

/* ── Dark gradient overlays ──────────────────────────────── */
.cs-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,   rgba(0, 0, 0, 0.72)  0%, transparent 55%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

/* ── Overlay text block ──────────────────────────────────── */
.cs-overlay {
    position: absolute;
    bottom: 150px;
    left: 60px;
    z-index: 2;
    color: #fff;
    /* Start hidden + shifted down */
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.cs-section.cs-active .cs-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* ── Counter label  e.g. 01 / 06 ────────────────────────── */
.cs-counter {
    display: block;
    font-family: 'Author', 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

/* ── Title ───────────────────────────────────────────────── */
.cs-overlay h2 {
    font-family: 'Vonca', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 59px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
}

/* ── Description ─────────────────────────────────────────── */
.cs-overlay p {
    font-family: 'Author', 'DM Sans', sans-serif;
    font-size: 20px;
    color: white;
}

/* ── Explore CTA ─────────────────────────────────────────── */
.cs-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Author', 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 3px;
    transition: border-color 0.3s ease, gap 0.3s ease;
}

.cs-cta::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
}

.cs-link:hover .cs-cta {
    border-color: #fff;
    gap: 16px;
}

.cs-link:hover .cs-cta::after {
    transform: translateX(4px);
}

/* ── Side progress dots (desktop) ───────────────────────── */
#cs-progress {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#cs-progress.cs-visible {
    opacity: 1;
}

.cs-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: background 0.4s ease, transform 0.4s ease;
}

.cs-dot.cs-dot-active {
    background: #fff;
    transform: scale(1.5);
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 767px) {

    .sidebar-nav-links li a {
    font-size: 16px;
}
.gold-prices-link {
    font-size: 16px;
}

    .cs-overlay {
        bottom: 115px;
        left: 0px;
        transform: translateX(-50%) translateY(22px);
        text-align: center;
        max-width: 100%;
    }

    .cs-section.cs-active .cs-overlay {
        /* transform: translateX(-50%) translateY(0); */
        opacity: 1;
    }

    .cs-overlay h2 {
        font-size: 36px;
    }

    .cs-overlay p {
        font-size: 16px;
        max-width: 90%;
        justify-self: center;
    }

    #cs-progress {
        display: none;
    }
    #cs-mens .cs-overlay {
    left: 14%;
}
.son-overlay.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    height: 100vh;
}
.nav-links {
    gap: 15px;
}
p.contact-label {
    font-size: 16px;
    font-weight: 400;
}
.footer-contact h3 {
    font-family: Author, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: black;
    margin: 0.5rem 0px;
}
p.contact-hours {
    font-size: 16px;
    font-weight: 400;
}
}

/* Ensure footer comes after the sticky stack and covers it */
.footer {
    position: relative;
    z-index: 10;
    /* Bring footer above the sticky sections at the end */
    background-color: #FFFFFF;
    color: #111;
    padding: 3rem 4% 2rem;
    border-top: 1px solid #EEE;
    font-family: 'Author', sans-serif;
    /* scroll-snap-align: start; */
}

@media (min-width: 992px) {
    .footer {
        padding: 1.5rem 6% 1rem;
    }
}

.footer-top-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .footer-top-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
}

.footer-contact {
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 992px) {
    .footer-contact {
        display: block;
    }
}

.footer-contact h3 {
    font-family: 'Author', sans-serif;
    font-weight: 494;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #111;
}

.contact-label,
.contact-hours {
    font-size: 1rem;
    color: black;
    font-weight: 375;
}

.newsletter-section {
    max-width: 622px;
    width: 100%;
}

.newsletter-title {
    font-family: 'Vonca', serif;
    font-weight: 500;
    font-size: 1.3rem;
    /* Smaller for mobile */
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: #111;
}

@media (min-width: 992px) {
    .newsletter-title {
        font-size: 40px;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        font-weight: 500;
    }
}

.newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid #111;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    font-family: 'Author', sans-serif;
    font-size: 1.1rem;
    /* Smaller for mobile */
    font-weight: 494;
    color: black;
    outline: none;
    padding: 0.4rem 0;
}

@media (min-width: 992px) {
    .newsletter-form input {
        font-size: 1.5rem;
        padding: 0.5rem 0;
    }
}

.newsletter-submit {
    background: #000;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-submit:hover {
    transform: scale(1.1);
}

.newsletter-note {
    font-size: 0.78rem;
    /* Smaller for mobile */
    text-align: center;
    /* Centered for mobile */
    font-weight: 375;
    color: black;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .newsletter-note {
        font-size: 16px;
        text-align: left;
    }
}

/* Refined Footer Divider (Single Line) */
.footer-divider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0;
    width: 100%;
    /* height: 26px; */
    /* Match icon height */
}

.divider-line-svg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    opacity: 0.8;
    transform: translateY(-50%);
    z-index: 1;
}

.divider-icon-svg {
    position: relative;
    z-index: 2;
    height: 14px;
    /* Small refined height */
    width: auto;
}

/* Footer Links Columns */
.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 3rem 0;
    text-align: left;
    /* Aligned left for mobile */
}

@media (min-width: 480px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.footer-header {
    display: flex;
    justify-content: space-between;
    /* Text left, Icon right */
    align-items: center;
    cursor: pointer;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f5f5f5;
    /* Subtle divider for mobile */
}

.footer-header.no-chevron {
    cursor: default;
}

.footer-column h4 {
    font-family: 'Author', sans-serif;
    font-weight: 500;
    font-size: 24px;
    margin: 0;
    color: #111;
}

.accordion-icon {
    transition: transform 0.3s ease;
    display: block;
    color: #111;
}

.footer-header.no-chevron .accordion-icon {
    display: none;
}

.footer-column.active .accordion-icon {
    transform: rotate(180deg);
}

.footer-column ul {
    display: none;
    /* Hidden on mobile by default */
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.footer-column.active ul {
    display: flex;
}

@media (min-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
        /* Maintained for desktop */
        margin: 0.5rem 0;
        text-align: left;
    }

    .footer-header {
        justify-content: flex-start;
        cursor: default;
        padding: 0;
        display: block;
        border-bottom: none;
    }

    .footer-column h4 {
        font-weight: 494;
        /* Restored for desktop */
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .accordion-icon {
        display: none !important;
    }

    .footer-column ul {
        display: flex !important;
        /* Always show on desktop */
        padding: 0;
        gap: 0.8rem;
        /* Restored for desktop */
    }
}

.footer-column ul li a {
    font-size: 16px;
    color: black;
    transition: color 0.3s ease;
    font-family: 'Author', sans-serif;
    font-weight: 400;
}

.footer-column ul li a:hover {
    color: #111;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid #EEE;
}

@media (min-width: 992px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-reviews {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-small .logo {
    height: 78px;
    width: auto;
}

.reviews-vertical-divider {
    width: 0.5px;
    height: 82px;
    background-color: #181818;
}

.google-rating p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-family: 'Author', sans-serif;
    color: #111;
}

.rating-stars {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.rating-stars span {
    color: #FFB400;
    margin-left: 2px;
}

.copyright {
    font-size: 15px;
    color: #555;
    order: 3;
    font-weight: 500;
    font-family: 'Author', sans-serif;
}

@media (min-width: 992px) {
    .copyright {
        order: 2;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    order: 2;
}

@media (min-width: 992px) {
    .social-links {
        order: 3;
    }
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
}

/* =============== Global Product Grid & Cards =============== */
.product-grid-section {
    padding: 1rem 4% 4rem 4%;
}

@media (min-width: 992px) {
    .product-grid-section {
        padding: 3rem 6%;
        padding-top: 1rem;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: flex-start;
    /* Stop cards in same row stretching */
}

@media (min-width: 0) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: #FFF;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* For absolute button positioning */
}

.product-card:not(.featured-wide):hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    z-index: 10;
}

.product-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9F9F9;
    padding: 2rem;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    z-index: 5;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-card:hover .nav-arrow {
    opacity: 0.6;
    visibility: visible;
}

.nav-arrow:hover {
    opacity: 1;
}

.nav-arrow.left {
    left: 10px;
}

.nav-arrow.right {
    right: 10px;
}

.card-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-dots .dot {
    width: 6px;
    height: 6px;
    background: #E0E0E0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card-dots .dot.active {
    width: 18px;
    height: 6px;
    border-radius: 10px;
    background: #999;
}

.product-info {
    padding: 1.5rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Vonca', serif;
    font-size: 24px;
    font-weight: 300;
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.product-price {
    font-family: 'Author', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #333;
    margin-bottom: 0.2rem;
}

.expert-btn {
    width: 100%;
    padding: 0 0.9rem;
    background: #FFF;
    border: 0px solid #383F1B;
    color: #383F1B;
    font-family: 'Author', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
}

.product-card:hover .expert-btn {
    opacity: 1;
    visibility: visible;
    max-height: 50px;
    padding: 0.9rem;
    margin-top: 1rem;
    border-width: 1px;
}

.expert-btn:hover {
    background: #383F1B;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.expert-btn:hover img {
    filter: brightness(0) invert(1);
}

.whatsapp-icon {
    opacity: 0.8;
}

.tax-info {
    font-size: 0.8rem;
    color: #888;
    margin-left: 0.5rem;
}

.featured-wide {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    height: auto;
}

@media (min-width: 992px) {
    .product-grid>.featured-wide {
        grid-column: span 2;
    }
}

.wide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============== Product Image Slider (Internal) =============== */
.product-image-area {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F9F9F9;
}

.image-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-track img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover .inner-arrow {
    opacity: 1;
}

.inner-arrow.prev {
    left: 10px;
}

.inner-arrow.next {
    right: 10px;
}

/* White Arrow Interaction (User Request) */
.inner-arrow:hover,
.inner-arrow:active,
.product-arrow:hover,
.product-arrow:active,
.why-choose-arrow:hover,
.why-choose-arrow:active {
    background: #111 !important;
}

.inner-arrow:hover img,
.inner-arrow:active img,
.product-arrow:hover img,
.product-arrow:active img,
.why-choose-arrow:hover img,
.why-choose-arrow:active img {
    filter: brightness(0) invert(1) !important;
}

.image-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.image-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-dots span.active {
    background: #111;
    transform: scale(1.2);
}
/* Search Template */

.search-overlay-new {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}
.search-overlay-new.active {
    opacity: 1;
    visibility: visible;
}
.son-wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

/* Top Bar */
.son-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
}
.son-topbar-logo { display: flex; align-items: center; }
.son-logo { height: 36px; width: auto; }
.son-close-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.son-close-btn:hover { opacity: 1; }

/* Search Input */
.son-search-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 28px 0 14px;
}
.son-search-label {
    font-size: 1.05rem;
    color: #111;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.son-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    color: #111;
    background: transparent;
    font-family: inherit;
    padding: 0;
    caret-color: #111;
}
.son-search-input::placeholder { color: #bbb; }
.son-divider {
    height: 1px;
    background: #e5e5e5;
    margin-bottom: 36px;
}

/* Section Titles */
.son-section-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #111;
    margin: 0 0 14px;
    text-transform: uppercase;
}

/* Suggestions */
.son-suggestions { margin-bottom: 40px; }
.son-suggestion-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.son-suggestion-list li { margin-bottom: 4px; }
.son-suggestion-list li a {
    font-size: 0.88rem;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.son-suggestion-list li a:hover { color: #000; text-decoration: underline; }

/* Cards Grid */
.son-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.son-card {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f2f2f2;
}
.son-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.son-card:hover .son-card-img { transform: scale(1.04); }
.son-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.son-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.son-card-shop {
    font-size: 0.7rem;
    color: #fff;
    letter-spacing: 0.1em;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
    .son-wrapper { padding: 0 20px 40px; }
    .son-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .son-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .son-logo { height: 28px; }
}


/* ══════════════════════════════════════════════════
   ALL PAGES EXCEPT HOME — white header, black icons
   ══════════════════════════════════════════════════ */
body:not(.home) #main-header,
body:not(.home) #main-header.scrolled {
    background-color: #FFFFFF !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body:not(.home) #main-header .header-top,
body:not(.home) #main-header.scrolled .header-top {
    background-color: #FFFFFF !important;
}

body:not(.home) #main-header .nav-icon,
body:not(.home) #main-header.scrolled .nav-icon,
body:not(.home) #main-header .hamburger-btn img,
body:not(.home) #main-header .search-toggle img,
body:not(.home) #main-header .logo {
    filter: brightness(0) !important;
}

body:not(.home) #main-header .nav-links a,
body:not(.home) #main-header.scrolled .nav-links a {
    color: #000 !important;
}
@media (max-width: 360px) {
    html, body { overflow-x: hidden; }
    .nav-icon { width: 18px !important; height: 18px !important; }
    .left-icons, .right-icons { gap: 0.4rem; }
    .logo { height: 24px; }
    .header-top { padding: 0.6rem 3%; }
    .nav-links a { font-size: 12px; }
    .nav-links { gap: 10px; }
    .mobile-menu { width: 100% !important; max-width: 100% !important; }
    .product-grid { grid-template-columns: 1fr !important; gap: 1rem; }
    .product-name { font-size: 18px; }
    .product-price { font-size: 16px; }
    .footer-links { grid-template-columns: 1fr !important; }
    .checkout-grid { grid-template-columns: 1fr !important; }
    .checkout-container { padding: 0 12px; }
}