/* ==========================================================================
   CSS Variables & Base Reset
   ========================================================================== */
:root {
    /* Color Palette - Premium Luxury */
    --color-primary: #1A1A1A;
    /* Deep Obsidian */
    --color-secondary: #BEA365;
    /* Champagne Gold */
    --color-accent: #E5D5B5;
    /* Warm Beige */

    --color-bg-light: #EEF0F2;
    /* Pastel Gri / Pastel Gray */
    --color-dark-gold: #996515;
    /* Koyu Altın / Dark Gold */
    --color-golden-yellow: #D4AF37;
    /* Koyu Altın Sarısı / Rich Metallic Gold */
    --color-bg-dark: #121212;
    /* Rich Black */

    --color-text-main: #333333;
    --color-text-muted: #666666;

    --color-gray-100: #F3F3F3;
    --color-gray-300: #D1D1D1;
    --color-gray-800: #2A2A2A;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

main {
    display: block;
}

/* Accessibility: Keyboard Skip Link */
.skip-to-content {
    position: absolute;
    top: -120px;
    left: 20px;
    background: #000000;
    color: #ffffff;
    padding: 10px 18px;
    z-index: 99999;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: top 0.25s ease;
}

.skip-to-content:focus {
    top: 20px;
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.text-white {
    color: #fff !important;
}

.text-large {
    font-size: 1.125rem;
    font-weight: 300;
}

.bg-light {
    background-color: var(--color-gray-100);
}

.bg-dark {
    background-color: var(--color-primary);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.small {
    font-size: 0.875rem;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   Components (Buttons, Dividers)
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-primary);
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-secondary);
    margin: 1.5rem 0;
}

.divider.border-white {
    background-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

/* Default / Dark Background State: Pure White Logo & Nav Links */
.navbar .logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) !important; /* Pure White on dark backgrounds */
    transition: filter 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.navbar .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff !important; /* Pure White on dark backgrounds */
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff !important;
    transition: width 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #ffffff !important;
    opacity: 0.85;
}

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

/* Dark Background Scrolled State */
.navbar.scrolled,
.navbar.on-dark,
.navbar.dark-bg,
.navbar.navbar-dark,
.navbar[data-theme="dark"] {
    background: rgba(18, 18, 18, 0.52) !important; /* Higher Transparency Rich Black */
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
}

.navbar.scrolled .logo-img,
.navbar.on-dark .logo-img,
.navbar.dark-bg .logo-img,
.navbar.navbar-dark .logo-img,
.navbar[data-theme="dark"] .logo-img {
    filter: brightness(0) invert(1) !important; /* Pure White */
}

.navbar.scrolled .nav-links a,
.navbar.on-dark .nav-links a,
.navbar.dark-bg .nav-links a,
.navbar.navbar-dark .nav-links a,
.navbar[data-theme="dark"] .nav-links a {
    color: #ffffff !important; /* Pure White */
}

.navbar.scrolled .nav-links a::after,
.navbar.on-dark .nav-links a::after,
.navbar.dark-bg .nav-links a::after,
.navbar.navbar-dark .nav-links a::after,
.navbar[data-theme="dark"] .nav-links a::after {
    background-color: #ffffff !important;
}

.navbar.scrolled .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

/* Light / White Background State: Matches index.html body background (#EEF0F2) */
.navbar.on-light,
.navbar.light-bg,
.navbar.navbar-light,
.navbar[data-theme="light"],
.navbar.scrolled.on-light {
    background: rgba(238, 240, 242, 0.55) !important; /* Higher Transparency off-white #EEF0F2 */
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.on-light .logo-img,
.navbar.light-bg .logo-img,
.navbar.navbar-light .logo-img,
.navbar[data-theme="light"] .logo-img,
.navbar.scrolled.on-light .logo-img {
    filter: brightness(0) !important; /* Pure Black on white / light backgrounds */
}

.navbar.on-light .nav-links a,
.navbar.light-bg .nav-links a,
.navbar.navbar-light .nav-links a,
.navbar[data-theme="light"] .nav-links a,
.navbar.scrolled.on-light .nav-links a {
    color: #000000 !important; /* Pure Black on white / light backgrounds */
}

.navbar.on-light .nav-links a::after,
.navbar.light-bg .nav-links a::after,
.navbar.navbar-light .nav-links a::after,
.navbar[data-theme="light"] .nav-links a::after,
.navbar.scrolled.on-light .nav-links a::after {
    background-color: #000000 !important;
}

.navbar.on-light .nav-links a:hover,
.navbar.light-bg .nav-links a:hover,
.navbar.navbar-light .nav-links a:hover,
.navbar[data-theme="light"] .nav-links a:hover,
.navbar.scrolled.on-light .nav-links a:hover {
    color: #333333 !important;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: clamp(1.2rem, 2vw, 2.2rem);
    align-items: center;
}

.nav-links-left {
    flex: 1;
    justify-content: flex-start;
}

.nav-links-right {
    flex: 1;
    justify-content: flex-end;
}

.navbar .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
}

/* ==========================================================================
   Accessible Mobile & Tablet Navigation System
   ========================================================================== */

/* Mobile Menu Toggle Button (Real <button>) */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    cursor: pointer;
    color: #ffffff;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-golden-yellow, #D4AF37);
    color: var(--color-golden-yellow, #D4AF37);
}

.mobile-menu-btn:focus-visible {
    outline: 2px solid var(--color-golden-yellow, #D4AF37);
    outline-offset: 2px;
}

/* Animated Hamburger Lines */
.hamburger-box {
    width: 22px;
    height: 14px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background-color 0.25s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -6px;
}

.hamburger-inner::after {
    content: '';
    bottom: -6px;
}

/* Transformed state when menu is opened */
.mobile-menu-btn[aria-expanded="true"] .hamburger-inner {
    background-color: transparent !important;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-inner::before {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-inner::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* Light / Scrolled Navbar Contrast Adaptations for Mobile Menu Button */
.navbar.on-light .mobile-menu-btn,
.navbar.light-bg .mobile-menu-btn,
.navbar.navbar-light .mobile-menu-btn,
.navbar[data-theme="light"] .mobile-menu-btn,
.navbar.scrolled.on-light .mobile-menu-btn {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.22);
}

.navbar.on-light .mobile-menu-btn:hover,
.navbar.light-bg .mobile-menu-btn:hover,
.navbar.navbar-light .mobile-menu-btn:hover,
.navbar[data-theme="light"] .mobile-menu-btn:hover,
.navbar.scrolled.on-light .mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.06);
    border-color: #000000;
    color: #000000;
}

/* Mobile Drawer Container */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(14, 14, 14, 0.97);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    z-index: 2000;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
    overscroll-behavior: contain;
}

.mobile-menu-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

/* Backdrop Overlay */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Body Scroll Lock */
body.menu-open {
    overflow: hidden !important;
    touch-action: none;
}

/* Mobile Drawer Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-logo {
    display: inline-flex;
    align-items: center;
}

.mobile-menu-logo .mobile-logo-img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.35rem;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(212, 175, 55, 0.15);
    border-color: var(--color-golden-yellow, #D4AF37);
    color: var(--color-golden-yellow, #D4AF37);
    transform: rotate(90deg);
}

.mobile-menu-close:focus-visible {
    outline: 2px solid var(--color-golden-yellow, #D4AF37);
    outline-offset: 2px;
}

/* Mobile Drawer Content */
.mobile-menu-body {
    flex: 1;
    padding: 20px 24px;
    overflow-y: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e6e6e6 !important;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    color: var(--color-golden-yellow, #D4AF37);
    transition: transform 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--color-golden-yellow, #D4AF37) !important;
    padding-left: 18px;
    outline: none;
}

.mobile-nav-link:hover i,
.mobile-nav-link:focus-visible i {
    transform: scale(1.15);
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
}

.mobile-sublinks {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 42px;
    margin: 4px 0 8px 0;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    margin-left: 20px;
}

.mobile-sublink {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.88rem;
    letter-spacing: 0.6px;
    color: #b0b0b0 !important;
    padding: 6px 12px;
    border-radius: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-sublink:hover,
.mobile-sublink:focus-visible {
    color: var(--color-golden-yellow, #D4AF37) !important;
    transform: translateX(4px);
    outline: none;
}

/* Mobile Drawer Footer */
.mobile-menu-footer {
    padding: 18px 24px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
}

.mobile-gold-divider {
    width: 36px;
    height: 2px;
    background: var(--color-golden-yellow, #D4AF37);
    margin-bottom: 12px;
}

.mobile-menu-tagline {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-golden-yellow, #D4AF37);
    margin-bottom: 10px;
}

.mobile-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #888888 !important;
    font-size: 0.85rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    transition: color 0.2s ease;
}

.mobile-footer-link:hover,
.mobile-footer-link:focus-visible {
    color: #ffffff !important;
    outline: none;
}

/* Mobile Drawer Purchase Quick Actions */
.mobile-drawer-purchase {
    margin-top: 14px;
    padding: 16px 0 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-purchase-title {
    display: block;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.74rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-golden-yellow, #D4AF37);
    margin-bottom: 10px;
    padding-left: 4px;
}

.mobile-purchase-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.mobile-store-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-golden-yellow, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.mobile-store-btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.mobile-store-svg {
    height: 24px;
    width: auto;
    max-width: 100%;
}

.mobile-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.mobile-footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-social-icon {
    color: #888888;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-social-icon:hover {
    color: var(--color-golden-yellow, #D4AF37);
    transform: scale(1.15);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/unsplash_b2b_bg.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 5%;
}

.hero-title {
    font-size: 4rem;
    /* Reduced size */
    line-height: 1.2;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.75rem;
    font-weight: 300;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-buttons .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-secondary:hover {
    background: #fff;
    color: var(--color-primary);
}

.hero-buy-on {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    padding: 16px 32px;
    background: rgba(14, 14, 14, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
    text-align: center;
}

.hero-buy-on-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-golden-yellow);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-buy-on-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-wt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 24px;
    min-width: 160px;
    height: 50px;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.hero-wt-btn:hover {
    transform: translateY(-2px);
    border-color: var(--color-golden-yellow);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    background-color: rgba(255, 255, 255, 0.22);
}

.hero-wt-btn .wt-logo-svg {
    height: 26px;
    width: auto;
    transition: transform 0.3s ease;
}

.hero-wt-btn:hover .wt-logo-svg {
    transform: scale(1.06);
}

.hero-buy-on-divider {
    width: 1.5px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, var(--color-golden-yellow), transparent);
    opacity: 0.9;
}

/* ==========================================================================
   Section Titles & Animations (Reveal)
   ========================================================================== */
.section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* Initial hidden states for JS scroll observer */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.scroll-reveal.right {
    transform: translateX(40px);
}

.scroll-reveal.left {
    transform: translateX(-40px);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* In-hero reveal text */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: smoothFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes smoothFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Heritage / About
   ========================================================================== */
.heritage-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.heritage-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.heritage-image img {
    height: 700px;
    object-fit: cover;
    width: 100%;
    display: block;
    border-radius: 4px;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.heritage-image:hover img {
    transform: scale(1.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-300);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ==========================================================================
   Collections Grid
   ========================================================================== */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.collection-card {
    background: #fff;
    cursor: pointer;
}

.collection-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

/* Disabled / Non-clickable Coming Soon Collection Cards */
.collection-card.is-disabled,
.collection-card[aria-disabled="true"] {
    cursor: default !important;
    pointer-events: none !important;
    user-select: text;
}

.collection-card.is-disabled .card-img-wrapper,
.collection-card[aria-disabled="true"] .card-img-wrapper {
    cursor: default !important;
}

.collection-card.is-disabled:hover .card-img-wrapper img,
.collection-card[aria-disabled="true"]:hover .card-img-wrapper img {
    transform: none !important;
}

.collection-card.is-disabled:hover .card-overlay,
.collection-card[aria-disabled="true"]:hover .card-overlay {
    opacity: 0 !important;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    width: 68.85%;
    /* Scaled down area by 15% from previous 81% */
    margin: 0 auto;
    /* Keep it centered */
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Coming Soon Ribbon */
.coming-soon-ribbon {
    position: absolute;
    top: 22px;
    right: -42px;
    width: 160px;
    height: 32px;
    background: var(--color-secondary);
    color: var(--color-primary);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.card-info {
    padding: 2rem 1rem;
    text-align: center;
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 80%;
    margin: 0 auto;
}

/* ==========================================================================
   Parallax / Quality Section
   ========================================================================== */
.parallax-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
}

.quality-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.cert-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.cert-circle i {
    font-size: 3rem;
    color: var(--color-secondary);
}

.cert-circle span {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* ==========================================================================
   B2B Section
   ========================================================================== */
.b2b {
    background-color: var(--color-primary);
}

.b2b .section-title {
    color: #fff;
}

.split-parallax-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.parallax-half {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5%;
    min-height: 60vh;
}

.parallax-half .quality-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

@media (max-width: 992px) {
    .split-parallax-wrapper {
        flex-direction: column;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-gray-300);
    padding-top: 55px;
}

.footer .container {
    max-width: 1440px;
    padding: 0 4%;
}

.main-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.8fr;
    gap: clamp(1.5rem, 2.5vw, 3rem);
    padding-bottom: 45px;
}

.footer-col h4 {
    color: var(--color-golden-yellow);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--color-gray-300);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--color-secondary);
    transform: translateX(3px);
}

.border-left {
    padding-left: 1.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.footer-logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

.footer-vertical-divider {
    width: 2px;
    height: 48px;
    background-color: #ffffff;
}

.footer-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 500;
    width: 130px;
}

.tag-line {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.tag-line .spacer {
    width: 0.3rem;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.brand-col p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-golden-yellow);
    line-height: 1.6;
    max-width: 335px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 335px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.social-links .insta-icon {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.social-links .insta-icon:hover {
    background: #E1306C;
    border-color: #E1306C;
}

.social-links .fb-icon {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.social-links .fb-icon:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    flex-grow: 1;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    color: var(--color-secondary);
}

.marketplace-links a {
    color: var(--color-secondary);
}

.marketplace-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 18px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--color-golden-yellow);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: left;
}

.footer-bottom a.footer-legal-link,
.footer-bottom .footer-legal-link {
    color: var(--color-golden-yellow);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a.footer-legal-link:hover,
.footer-bottom a.footer-legal-link:focus-visible,
.footer-bottom .footer-legal-link:hover,
.footer-bottom .footer-legal-link:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (min-width: 1025px) {
    .mobile-menu-btn,
    .mobile-menu-drawer,
    .mobile-menu-backdrop {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.6;
        max-width: 640px;
        margin-bottom: 2.25rem;
    }

    .two-col {
        gap: 2rem;
    }

    .heritage-image img {
        height: 500px;
    }

    /* Tablet & Mobile Navigation */
    .nav-links,
    .nav-actions {
        display: none !important;
    }

    .navbar {
        padding: 14px 0;
    }

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

    /* 44px spacer on left balances 44px button on right to keep logo in exact center */
    .nav-container::before {
        content: '';
        width: 44px;
        height: 44px;
        display: block;
        flex-shrink: 0;
    }

    .logo {
        margin: 0 auto;
    }

    .logo .logo-img {
        height: 54px;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    /* Tablet Footer Layout (Balanced 2x2 Grid) */
    .footer {
        padding-top: 45px;
    }

    .footer .container {
        padding: 0 4%;
    }

    .main-footer {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
        padding-bottom: 35px;
    }

    .footer-col.brand-col {
        grid-column: 1;
        grid-row: 1;
        align-items: flex-start;
        text-align: left;
    }

    .footer-col.brand-col p {
        max-width: 335px;
    }

    .footer-col:nth-child(4) { /* Purchase Section */
        grid-column: 2;
        grid-row: 1;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 2.5rem;
        margin-top: 0;
    }

    .footer-purchase-section {
        align-items: center;
        text-align: center;
    }

    .footer-wt-buttons {
        align-items: center;
    }

    .footer-col:nth-child(2) { /* Collections */
        grid-column: 1;
        grid-row: 2;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 2rem;
        margin-top: 0;
    }

    .footer-col:nth-child(3) { /* Company */
        grid-column: 2;
        grid-row: 2;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 2.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 2rem;
        margin-top: 0;
    }
}

@media (max-width: 768px) {

    .two-col {
        grid-template-columns: 1fr;
    }

    .heritage-image img {
        height: 400px;
    }

    .heritage-text {
        order: -1;
    }

    /* Text above image on mobile */
    .collection-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Footer Layout */
    .footer {
        padding-top: 40px;
    }

    .footer .container {
        padding: 0 5%;
    }

    .main-footer {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.25rem;
        padding-bottom: 30px;
    }

    .footer-col.brand-col {
        grid-column: 1 / -1;
        grid-row: 1;
        align-items: center;
        text-align: center;
    }

    .footer-brand-header {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-col.brand-col p {
        max-width: min(335px, 92%);
        margin: 0 auto 1.25rem;
        font-size: 0.86rem;
    }

    .social-links {
        justify-content: center;
        max-width: min(335px, 92%);
        margin: 0 auto;
    }

    .footer-col:nth-child(2) { /* Collections */
        grid-column: 1;
        grid-row: 2;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.75rem;
        margin-top: 0;
    }

    .footer-col:nth-child(3) { /* Company */
        grid-column: 2;
        grid-row: 2;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.75rem;
        margin-top: 0;
    }

    .footer-col h4 {
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
    }

    .footer-col ul li {
        margin-bottom: 0.65rem;
    }

    .footer-col ul li a {
        font-size: 0.88rem;
    }

    .footer-col:nth-child(4) { /* Purchase Section */
        grid-column: 1 / -1;
        grid-row: 3;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.75rem;
        margin-top: 0.25rem;
    }

    .footer-purchase-section {
        align-items: center;
        text-align: center;
    }

    .footer-purchase-section p {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
    }

    .footer-wt-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }

    .footer-wt-buttons .wt-btn {
        max-width: 160px;
        height: 48px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.55;
        max-width: 540px;
        margin-bottom: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .stat-number {
        font-size: 2rem !important;
        word-break: break-word;
    }

    .hero-buy-on {
        bottom: 20px;
        padding: 12px 18px;
        max-width: 92%;
    }

    .hero-buy-on-links {
        gap: 12px;
    }

    .hero-wt-btn {
        min-width: 125px;
        height: 44px;
        padding: 6px 14px;
    }

    .hero-wt-btn .wt-logo-svg {
        height: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .logo .logo-img {
        height: 44px;
    }

    .nav-container::before {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-drawer {
        width: 90vw;
    }

    .mobile-menu-header {
        padding: 16px 20px 14px 20px;
    }

    .mobile-menu-body {
        padding: 16px 18px;
    }

    .mobile-menu-footer {
        padding: 16px 20px 20px 20px;
    }

    /* Small Mobile Footer */
    .footer {
        padding-top: 35px;
    }

    .footer-brand-header {
        gap: 1rem;
    }

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

    .footer-vertical-divider {
        height: 40px;
    }

    .footer-tagline {
        font-size: 0.82rem;
        width: 115px;
    }

    .footer-col.brand-col p {
        font-size: 0.82rem;
        max-width: 290px;
        margin: 0 auto 1.25rem;
    }

    .footer-col:nth-child(3) { /* Company */
        padding-left: 0.75rem;
    }

    .footer-wt-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-wt-buttons .wt-btn {
        max-width: 220px;
        width: 100%;
    }

    .footer-bottom {
        padding: 14px 0;
    }

    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .footer-bottom p,
    .footer-bottom a.footer-legal-link {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.8vw, 0.98rem);
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }

    .stat-number {
        font-size: 1.6rem !important;
    }

    .hero-buy-on {
        padding: 10px 12px;
        max-width: 95%;
    }

    .hero-buy-on-links {
        gap: 8px;
    }

    .hero-wt-btn {
        min-width: 110px;
        height: 42px;
        padding: 6px 10px;
    }

    .hero-wt-btn .wt-logo-svg {
        height: 18px;
    }
}

/* ==========================================================================
   Footer Where to Buy Buttons
   ========================================================================== */
.footer-purchase-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.footer-purchase-section p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-golden-yellow) !important;
    line-height: 1.5;
    margin-bottom: 1.25rem !important;
    text-align: center;
    width: 100%;
}

.footer-wt-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.footer-wt-buttons .wt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    width: 100%;
    max-width: 200px;
    height: 52px;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    color: #fff;
    margin: 0 auto;
}

.footer-wt-buttons .wt-logo-svg {
    height: 24px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-wt-buttons .wt-btn:hover {
    transform: translateY(-3px);
    border-color: var(--color-secondary);
    box-shadow: 0 6px 20px rgba(190, 163, 101, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-wt-buttons .wt-btn:hover .wt-logo-svg {
    transform: scale(1.04);
}

/* ==========================================================================
   Pending / Disabled Retailer Buttons (Amazon etc. - Coming Soon)
   ========================================================================== */
.hero-wt-btn.is-disabled,
.wt-btn.is-disabled,
.hero-wt-btn[aria-disabled="true"],
.wt-btn[aria-disabled="true"] {
    opacity: 0.48 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.hero-wt-btn.is-disabled:hover,
.wt-btn.is-disabled:hover,
.hero-wt-btn[aria-disabled="true"]:hover,
.wt-btn[aria-disabled="true"]:hover {
    transform: none !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
}

.hero-wt-btn.is-disabled .wt-logo-svg,
.wt-btn.is-disabled .wt-logo-svg {
    transform: none !important;
}

/* ==========================================================================
   Collections Navigation Enhancement: Desktop Dropdown / Mega Menu
   ========================================================================== */

.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff !important;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px 0;
}

.nav-dropdown-toggle .nav-caret {
    font-size: 0.85rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--color-golden-yellow, #D4AF37);
}

.nav-item-dropdown.is-open .nav-dropdown-toggle .nav-caret,
.nav-item-dropdown:hover .nav-dropdown-toggle .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff !important;
    transition: width 0.3s ease;
}

.nav-dropdown-toggle:hover::after,
.nav-item-dropdown.is-open .nav-dropdown-toggle::after {
    width: 100%;
}

/* Light / Scrolled Navbar Overrides for Toggle */
.navbar.on-light .nav-dropdown-toggle,
.navbar.light-bg .nav-dropdown-toggle,
.navbar.navbar-light .nav-dropdown-toggle,
.navbar[data-theme="light"] .nav-dropdown-toggle,
.navbar.scrolled.on-light .nav-dropdown-toggle {
    color: #000000 !important;
}

.navbar.on-light .nav-dropdown-toggle::after,
.navbar.light-bg .nav-dropdown-toggle::after,
.navbar.navbar-light .nav-dropdown-toggle::after,
.navbar[data-theme="light"] .nav-dropdown-toggle::after,
.navbar.scrolled.on-light .nav-dropdown-toggle::after {
    background-color: #000000 !important;
}

/* Dropdown Menu Container (Luxury Glassmorphic) */
/* Dropdown Menu Container (Luxury Glassmorphic Mega Menu with Subcategory Flyout) */
/* Dropdown Menu Container (Luxury Glassmorphic Mega Menu with Subcategory Flyout) */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    width: 300px;
    background: rgba(16, 16, 16, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(212, 175, 55, 0.14);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

/* Invisible hover bridge to prevent hover loss over the 14px gap */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
    background: transparent;
}

/* Open State (via Hover or Keyboard / JS is-open) */
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown Menu when Navbar is on Light Background */
.navbar.on-light .nav-dropdown-menu,
.navbar.light-bg .nav-dropdown-menu,
.navbar.navbar-light .nav-dropdown-menu,
.navbar[data-theme="light"] .nav-dropdown-menu,
.navbar.scrolled.on-light .nav-dropdown-menu {
    background: rgba(252, 252, 252, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 0 25px rgba(212, 175, 55, 0.12);
}

/* Mega Menu Main Body */
.mega-menu-body {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Left Panel: 6 Main Category Tabs */
.mega-categories-nav {
    width: 100%;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #e5e5e5;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    border: 1px solid transparent;
    border-left: 3px solid transparent;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    background: transparent;
}

.navbar.on-light .mega-cat-item,
.navbar.light-bg .mega-cat-item,
.navbar[data-theme="light"] .mega-cat-item,
.navbar.scrolled.on-light .mega-cat-item {
    color: #222222;
}

.mega-cat-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mega-cat-icon {
    font-size: 1.15rem;
    color: var(--color-golden-yellow, #D4AF37);
    transition: transform 0.22s ease;
}

.mega-cat-arrow {
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.5);
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), color 0.22s ease;
}

.mega-cat-item:hover,
.mega-cat-item:focus-visible,
.mega-cat-item.is-active {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
    border-left-color: var(--color-golden-yellow, #D4AF37);
    color: var(--color-golden-yellow, #D4AF37) !important;
    outline: none;
}

.mega-cat-item:hover .mega-cat-arrow,
.mega-cat-item:focus-visible .mega-cat-arrow,
.mega-cat-item.is-active .mega-cat-arrow {
    transform: translateX(4px);
    color: var(--color-golden-yellow, #D4AF37);
}

.mega-cat-item:hover .mega-cat-icon,
.mega-cat-item.is-active .mega-cat-icon {
    transform: scale(1.15);
}

/* Category without flyout sub-menu (Home Accessories) */
.mega-cat-item.mega-cat-direct .mega-cat-arrow {
    display: none;
}

/* Right Panel: Side Window / Flyout attached to the right of dropdown */
.mega-subpanel-container {
    position: absolute;
    left: calc(100% + 8px);
    top: -1px;
    width: 540px;
    min-height: 100%;
    background: rgba(16, 16, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(212, 175, 55, 0.14);
    padding: 22px 26px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    pointer-events: none;
    transition: opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1), transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.24s ease;
    z-index: 1060;
}

/* Invisible bridge so mouse transitions seamlessly without losing hover */
.mega-subpanel-container::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 0;
    width: 16px;
    height: 100%;
    background: transparent;
}

/* Side window appears ONLY when a category with subcategories is active/hovered */
.nav-dropdown-menu.has-flyout .mega-subpanel-container {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.navbar.on-light .mega-subpanel-container,
.navbar.light-bg .mega-subpanel-container,
.navbar[data-theme="light"] .mega-subpanel-container,
.navbar.scrolled.on-light .mega-subpanel-container {
    background: rgba(252, 252, 252, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.mega-subpanel {
    display: none;
    flex-direction: column;
    height: 100%;
    animation: panelSlideFade 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mega-subpanel.is-active {
    display: flex;
}

@keyframes panelSlideFade {
    0% {
        opacity: 0;
        transform: translateX(8px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Subpanel Header */
.subpanel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.subpanel-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.subpanel-eyebrow {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-golden-yellow, #D4AF37);
    font-weight: 600;
}

.subpanel-title {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #ffffff;
    margin: 0;
}

.navbar.on-light .subpanel-title,
.navbar.light-bg .subpanel-title,
.navbar[data-theme="light"] .subpanel-title,
.navbar.scrolled.on-light .subpanel-title {
    color: #121212;
}

.subpanel-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-golden-yellow, #D4AF37) !important;
    text-decoration: none;
    transition: gap 0.22s ease;
}

.subpanel-view-all:hover,
.subpanel-view-all:focus-visible {
    gap: 10px;
    outline: none;
}

/* Subcategories 2-Column Grid */
.subpanel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    flex-grow: 1;
    align-content: flex-start;
}

.subcat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #d2d2d2;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.88rem;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.navbar.on-light .subcat-link,
.navbar.light-bg .subcat-link,
.navbar[data-theme="light"] .subcat-link,
.navbar.scrolled.on-light .subcat-link {
    color: #333333;
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.04);
}

.subcat-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.6);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.subcat-link:hover,
.subcat-link:focus-visible {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: #ffffff;
    transform: translateX(4px);
    outline: none;
}

.navbar.on-light .subcat-link:hover,
.navbar.light-bg .subcat-link:hover,
.navbar[data-theme="light"] .subcat-link:hover,
.navbar.scrolled.on-light .subcat-link:hover {
    color: #000000;
}

.subcat-link:hover .subcat-bullet,
.subcat-link:focus-visible .subcat-bullet {
    background: var(--color-golden-yellow, #D4AF37);
    transform: scale(1.6);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.subcat-badge {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.18);
    color: var(--color-golden-yellow, #D4AF37);
    border: 1px solid rgba(212, 175, 55, 0.35);
    margin-left: auto;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 500;
}

/* Mega Menu Bottom Footer */
.mega-menu-footer {
    padding: 14px 28px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.32);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar.on-light .mega-menu-footer,
.navbar.light-bg .mega-menu-footer,
.navbar[data-theme="light"] .mega-menu-footer,
.navbar.scrolled.on-light .mega-menu-footer {
    background: rgba(0, 0, 0, 0.03);
    border-top-color: rgba(212, 175, 55, 0.2);
}

.mega-menu-tagline {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.78rem;
    letter-spacing: 0.6px;
    color: #999999;
    font-style: italic;
    margin: 0;
}

.navbar.on-light .mega-menu-tagline,
.navbar.light-bg .mega-menu-tagline,
.navbar[data-theme="light"] .mega-menu-tagline,
.navbar.scrolled.on-light .mega-menu-tagline {
    color: #666666;
}

.dropdown-all-link,
.dropdown-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-golden-yellow, #D4AF37) !important;
    text-decoration: none;
    transition: gap 0.25s ease;
}

.dropdown-all-link:hover,
.dropdown-all-link:focus-visible,
.dropdown-view-all:hover,
.dropdown-view-all:focus-visible {
    gap: 12px;
    outline: none;
}

/* ==========================================================================
   B2B Wholesale Header Dropdown Menu (Luxury Glassmorphic)
   ========================================================================== */

.b2b-dropdown-menu {
    width: 340px;
    left: auto;
    right: -20px;
    padding: 10px;
}

#b2bDropdown:hover .b2b-dropdown-menu,
#b2bDropdown.is-open .b2b-dropdown-menu,
.nav-item-dropdown:hover .b2b-dropdown-menu,
.nav-item-dropdown.is-open .b2b-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.b2b-menu-body {
    position: relative;
    width: 100%;
}

.b2b-categories-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.b2b-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #e5e5e5;
    border: 1px solid transparent;
    border-left: 3px solid transparent;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    background: transparent;
}

.b2b-menu-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.b2b-menu-icon {
    font-size: 1.3rem;
    color: var(--color-golden-yellow, #D4AF37);
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.b2b-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.b2b-item-title {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #f5f5f5;
    transition: color 0.22s ease;
}

.b2b-item-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.74rem;
    font-weight: 400;
    color: #9c9c9c;
    letter-spacing: 0.2px;
    line-height: 1.25;
    transition: color 0.22s ease;
}

.b2b-menu-arrow {
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), color 0.22s ease;
}

.b2b-menu-item:hover,
.b2b-menu-item:focus-visible {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
    border-left-color: var(--color-golden-yellow, #D4AF37);
    outline: none;
}

.b2b-menu-item:hover .b2b-item-title,
.b2b-menu-item:focus-visible .b2b-item-title {
    color: var(--color-golden-yellow, #D4AF37);
}

.b2b-menu-item:hover .b2b-item-desc,
.b2b-menu-item:focus-visible .b2b-item-desc {
    color: rgba(212, 175, 55, 0.85);
}

.b2b-menu-item:hover .b2b-menu-arrow,
.b2b-menu-item:focus-visible .b2b-menu-arrow {
    transform: translateX(4px);
    color: var(--color-golden-yellow, #D4AF37);
}

.b2b-menu-item:hover .b2b-menu-icon,
.b2b-menu-item:focus-visible .b2b-menu-icon {
    transform: scale(1.15);
}

.b2b-menu-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    margin: 6px 10px;
}

.b2b-menu-overview-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--color-golden-yellow, #D4AF37) !important;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.b2b-menu-overview-link:hover,
.b2b-menu-overview-link:focus-visible {
    background: rgba(212, 175, 55, 0.14);
    transform: translateY(-1px);
    outline: none;
}

/* Light & Scrolled Navbar Support for B2B Menu */
.navbar.on-light .b2b-item-title,
.navbar.light-bg .b2b-item-title,
.navbar[data-theme="light"] .b2b-item-title,
.navbar.scrolled.on-light .b2b-item-title {
    color: #1a1a1a;
}

.navbar.on-light .b2b-item-desc,
.navbar.light-bg .b2b-item-desc,
.navbar[data-theme="light"] .b2b-item-desc,
.navbar.scrolled.on-light .b2b-item-desc {
    color: #666666;
}

.navbar.on-light .b2b-menu-item:hover,
.navbar.light-bg .b2b-menu-item:hover,
.navbar[data-theme="light"] .b2b-menu-item:hover,
.navbar.scrolled.on-light .b2b-menu-item:hover {
    background: rgba(212, 175, 55, 0.15);
}

.navbar.on-light .b2b-menu-item:hover .b2b-item-title,
.navbar.light-bg .b2b-menu-item:hover .b2b-item-title,
.navbar[data-theme="light"] .b2b-menu-item:hover .b2b-item-title,
.navbar.scrolled.on-light .b2b-menu-item:hover .b2b-item-title {
    color: #997300;
}

.navbar.on-light .b2b-menu-item:hover .b2b-item-desc,
.navbar.light-bg .b2b-menu-item:hover .b2b-item-desc,
.navbar[data-theme="light"] .b2b-menu-item:hover .b2b-item-desc,
.navbar.scrolled.on-light .b2b-menu-item:hover .b2b-item-desc {
    color: #6d5407;
}

/* ==========================================================================
   Mobile Menu Drawer: Two-Level Nested Accordion
   ========================================================================== */

.mobile-accordion {
    width: 100%;
}

.mobile-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mobile-accordion-arrow {
    font-size: 1rem;
    color: var(--color-golden-yellow, #D4AF37);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-accordion.is-expanded .mobile-accordion-arrow {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-accordion.is-expanded .mobile-accordion-content {
    grid-template-rows: 1fr;
}

.mobile-accordion-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 14px;
    margin: 6px 0 12px 10px;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
}

/* Level 2 Sub-Accordion for each Category in Mobile Drawer */
.mobile-sub-accordion {
    width: 100%;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-sub-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-sub-toggle span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-sub-toggle span i {
    color: var(--color-golden-yellow, #D4AF37);
    font-size: 1rem;
}

.mobile-sub-arrow {
    font-size: 0.85rem;
    color: var(--color-golden-yellow, #D4AF37);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sub-accordion.is-expanded .mobile-sub-arrow {
    transform: rotate(180deg);
}

.mobile-sub-accordion.is-expanded .mobile-sub-toggle {
    color: var(--color-golden-yellow, #D4AF37);
    background: rgba(212, 175, 55, 0.08);
}

.mobile-sub-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sub-accordion.is-expanded .mobile-sub-content {
    grid-template-rows: 1fr;
}

.mobile-sub-content-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 12px 10px 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.mobile-sub-overview {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-golden-yellow, #D4AF37) !important;
    text-decoration: none;
    padding: 6px 0;
    margin-bottom: 4px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
}

.mobile-nested-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.84rem;
    color: #b0b0b0 !important;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nested-link:hover,
.mobile-nested-link.active {
    color: var(--color-golden-yellow, #D4AF37) !important;
    transform: translateX(4px);
}

.mobile-sub-direct-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #e0e0e0 !important;
    text-decoration: none;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-sub-direct-link span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-sub-direct-link span i {
    color: var(--color-golden-yellow, #D4AF37);
    font-size: 1rem;
}

.mobile-sub-direct-link:hover,
.mobile-sub-direct-link:focus-visible {
    color: var(--color-golden-yellow, #D4AF37) !important;
    background: rgba(212, 175, 55, 0.08);
}

.mobile-sublink-all {
    margin-top: 8px;
    border-top: 1px dashed rgba(212, 175, 55, 0.25);
    padding: 10px 12px !important;
    font-weight: 600;
    color: var(--color-golden-yellow, #D4AF37) !important;
    text-decoration: none;
    display: block;
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */

.breadcrumb-nav {
    width: 100%;
    padding: 24px 0 10px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.breadcrumb-item a {
    color: var(--color-text-muted, #777777);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus-visible {
    color: var(--color-golden-yellow, #D4AF37);
    outline: none;
}

.breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    color: rgba(212, 175, 55, 0.6);
    font-size: 0.75rem;
}

.breadcrumb-item.active,
.breadcrumb-item[aria-current="page"] {
    color: var(--color-golden-yellow, #D4AF37);
    font-weight: 600;
}

/* Breadcrumb on pages without hero (light theme header) */
.collections.section .breadcrumb-nav {
    padding-top: 0;
    padding-bottom: 24px;
}

/* Breadcrumb on dark hero pages (like sheet_sets_bed_sheets.html) */
.sheets-hero .breadcrumb-nav {
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 10;
}

.sheets-hero .breadcrumb-list .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
}

.sheets-hero .breadcrumb-list .breadcrumb-item a:hover {
    color: #ffffff;
}

.sheets-hero .breadcrumb-list .breadcrumb-item[aria-current="page"] {
    color: var(--color-golden-yellow, #D4AF37);
}

/* ==========================================================================
   "Explore Other Collections" Sibling Section
   ========================================================================== */

.other-collections-section {
    padding: 90px 0;
    background-color: var(--color-soft-gray, #F7F7F7);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.other-collections-header {
    text-align: center;
    margin-bottom: 50px;
}

.other-collections-subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-golden-yellow, #D4AF37);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.other-collections-title {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--color-deep-charcoal, #121212);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 16px;
}

.other-collections-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-golden-yellow, #D4AF37), transparent);
    margin: 0 auto;
}

/* Moving Marquee Carousel Track & Wrapper (Continuous Right-to-Left) */
.other-collections-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.other-collections-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 35px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.other-collections-track {
    display: flex;
    width: max-content;
    gap: 28px;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

.other-collection-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(190, 163, 101, 0.22);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 360px;
    flex: 0 0 360px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.other-collection-card:hover,
.other-collection-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--color-golden-yellow, #D4AF37);
    outline: none;
}

.other-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #eaeaea;
}

.other-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.other-collection-card:hover .other-card-img-wrapper img {
    transform: scale(1.08);
}

.other-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.other-card-content h3 {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-deep-charcoal, #121212);
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

.other-card-content p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--color-text-muted, #777777);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.other-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-golden-yellow, #D4AF37);
    transition: gap 0.25s ease;
}

.other-collection-card:hover .other-card-action {
    gap: 12px;
}

/* Navigation Buttons (Prominent Luxury Carousel Arrows) */
.other-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--color-golden-yellow, #D4AF37);
    color: var(--color-golden-yellow, #D4AF37);
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(212, 175, 55, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.other-prev-btn {
    left: -26px;
}

.other-next-btn {
    right: -26px;
}

.other-nav-btn:hover {
    background: var(--color-golden-yellow, #D4AF37);
    color: #ffffff;
    border-color: var(--color-golden-yellow, #D4AF37);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
    transform: translateY(-50%) scale(1.12);
}

.other-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Responsive Breakpoints */
@media (max-width: 1350px) {
    .other-prev-btn {
        left: -20px;
    }

    .other-next-btn {
        right: -20px;
    }
}

@media (max-width: 1100px) {
    .nav-dropdown-menu {
        width: min(820px, calc(100vw - 60px));
        left: -10px;
    }

    .mega-categories-nav {
        width: 250px;
    }

    .mega-subpanel-container {
        padding: 18px 20px;
    }
}

/* Tablet Optimizations (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .other-collections-section {
        padding: 65px 0 80px;
    }

    .other-collections-track {
        gap: 24px;
    }

    .other-collection-card {
        width: 320px;
        flex: 0 0 320px;
    }

    .other-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }

    .other-prev-btn {
        left: -16px;
    }

    .other-next-btn {
        right: -16px;
    }
}

/* Mobile Optimizations (<= 768px) */
@media (max-width: 768px) {
    .other-collections-section {
        padding: 50px 0 65px;
    }

    .other-collections-header {
        margin-bottom: 30px;
    }

    .other-collections-marquee-wrapper {
        padding: 12px 0 25px;
    }

    .other-collections-track {
        gap: 20px;
    }

    .other-collection-card {
        width: 280px;
        flex: 0 0 280px;
    }

    .other-card-body {
        padding: 16px 18px 18px;
    }

    .other-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .other-card-content p {
        font-size: 0.84rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .other-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(212, 175, 55, 0.3);
    }

    .other-prev-btn {
        left: -4px;
    }

    .other-next-btn {
        right: -4px;
    }

    .breadcrumb-nav {
        padding: 16px 0 6px;
    }

    .bg-light .breadcrumb-nav,
    .collections-page .breadcrumb-nav {
        padding-top: 85px;
    }

    .sheets-hero .breadcrumb-nav {
        top: 75px;
    }
}

/* ==========================================================================
   Accessibility: Prefers-Reduced-Motion Support (WCAG 2.2 - 2.3.3)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Prevent invisible states for users with reduced motion */
    .scroll-reveal,
    .scroll-reveal.right,
    .scroll-reveal.left,
    .reveal-text,
    .fade-sequence,
    .scroll-mystic,
    .hero-title,
    .hero-subtitle,
    .hero-buttons,
    .hero-buy-on {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    /* Disable continuous looping auto-scrolls */
    .marquee-track,
    .comments-track,
    .carousel-track {
        animation: none !important;
    }
}