/* Global Forced Suppression for any legacy in-flow drawer markup */
aside#mobileNavDrawer, .mobile-nav-drawer:not(.dynamic-active), .mobile-nav-menu {
    display: none !important;
    visibility: hidden !important;
}

:root {
    /* Color Palette */
    --bg-main: #0a0a0c;
    --bg-surface: #121216;
    --bg-surface-elevated: #18181f;
    --bg-card: rgba(24, 24, 31, 0.7);
    --bg-glass: rgba(18, 18, 22, 0.65);
    
    --gold: #c5a880;
    --gold-light: #dfc8a7;
    --gold-dim: rgba(197, 168, 128, 0.15);
    --gold-glow: rgba(197, 168, 128, 0.35);

    --text-primary: #f5f5f7;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(197, 168, 128, 0.3);
    --border-active: rgba(197, 168, 128, 0.7);

    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-arabic: 'Alexandria', sans-serif;

    /* Transitions & Radii */
    --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Arabic RTL Typography */
html[dir="rtl"] {
    font-family: var(--font-arabic);
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .brand-logo,
html[dir="rtl"] .bento-title,
html[dir="rtl"] .craft-title {
    font-family: var(--font-arabic);
    letter-spacing: normal;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold-glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s var(--ease-fluid), border-color 0.3s ease;
}

/* Header Navigation */
.header-nav {
    position: fixed;
    top: 1.25rem;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 1.5rem;
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.75rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s var(--ease-fluid);
}

.header-nav.scrolled .nav-container {
    background: rgba(10, 10, 12, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-mark {
    color: var(--gold);
    font-size: 1.25rem;
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.logo-text strong {
    font-weight: 800;
    color: var(--gold);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-left: 1px solid var(--border-subtle);
    padding-left: 0.5rem;
    margin-left: 0.25rem;
    text-transform: uppercase;
}

html[dir="rtl"] .logo-sub {
    border-left: none;
    border-right: 1px solid var(--border-subtle);
    padding-left: 0;
    padding-right: 0.5rem;
    margin-left: 0;
    margin-right: 0.25rem;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link i {
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Toggle */
.lang-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.8rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
}

.lang-toggle-btn:hover {
    border-color: var(--gold);
    color: var(--text-primary);
}

.lang-code.current {
    color: var(--gold);
    font-weight: 700;
}

.lang-divider {
    opacity: 0.3;
}

/* Sample Box Button */
.sample-box-btn {
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s var(--ease-fluid);
}

.sample-box-btn:hover {
    background: var(--gold);
    color: var(--bg-main);
    box-shadow: 0 0 20px var(--gold-glow);
}

.sample-badge {
    background: var(--gold);
    color: var(--bg-main);
    font-size: 0.72rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sample-box-btn:hover .sample-badge {
    background: var(--bg-main);
    color: var(--gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-fluid);
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mob-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.mob-link:hover {
    color: var(--gold);
}

/* ==========================================================================
   Top Luxury Architectural Navigation Bar
   ========================================================================== */
.top-editorial-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4.5rem;
    background: rgba(10, 11, 14, 0.82);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    transition: all 0.35s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.editorial-brand-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.editorial-brand-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5e3a9 0%, #d4af37 100%);
    color: #0a0b0e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
}

.brand-main-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 1;
}

.brand-sub-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #d4af37;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

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

.editorial-nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

.editorial-nav-link {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: #d4d4d8;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
}

.editorial-nav-link i {
    color: #d4af37;
    font-size: 0.75rem;
    opacity: 0.75;
}

.editorial-nav-link:hover,
.editorial-nav-link.active {
    color: #f5e3a9;
    background: rgba(212, 175, 55, 0.08);
}

.editorial-nav-link:hover i,
.editorial-nav-link.active i {
    opacity: 1;
}

.editorial-actions-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Sound & Quick Actions in Top Bar */
.top-action-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #f5f5f7;
    transition: all 0.25s ease;
}

.top-action-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.08);
    background: rgba(212, 175, 55, 0.12);
}

/* Custom Cursor Reset on Navigation Bar */
.top-editorial-bar,
.top-editorial-bar * {
    cursor: default !important;
}
.top-editorial-bar a,
.top-editorial-bar button,
.top-editorial-bar [role="button"] {
    cursor: pointer !important;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1000;
}

/* ==========================================================================
   Mobile & Tablet Responsive Header (Clean, Zero Clutter)
   ========================================================================== */
@media (max-width: 992px) {
    .top-editorial-bar {
        padding: 0 1.25rem !important;
        height: 65px !important;
        min-height: 65px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* Hide desktop navigation links & extra desktop buttons */
    .editorial-nav-wrapper {
        display: none !important;
    }

    .editorial-actions-group .theme-toggle-btn,
    .editorial-actions-group .sound-toggle-btn,
    .editorial-actions-group .admin-link-btn,
    .editorial-actions-group .lang-toggle-btn {
        display: none !important;
    }

    .brand-main-name {
        font-size: 1.15rem !important;
    }

    .brand-sub-tag {
        display: none !important;
    }

    .sample-box-btn .btn-text {
        display: none !important;
    }

    .sample-box-btn {
        padding: 0.45rem 0.75rem !important;
        gap: 0.35rem !important;
    }

    .mobile-menu-btn {
        display: inline-flex !important;
        width: 40px !important;
        height: 40px !important;
        background: rgba(212, 175, 55, 0.15) !important;
        border: 1.5px solid #d4af37 !important;
        color: #d4af37 !important;
        font-size: 1.2rem !important;
        border-radius: 12px !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }
}

.top-action-btn.muted {
    opacity: 0.5;
}

/* Sample Box Button */
.sample-box-btn {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid #d4af37;
    color: #f5e3a9;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    transition: all 0.3s ease;
}

.sample-box-btn:hover {
    background: #d4af37;
    color: #0a0b0e;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.sample-badge {
    background: #d4af37;
    color: #0a0b0e;
    font-size: 0.68rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-box-btn:hover .sample-badge {
    background: #0a0b0e;
    color: #d4af37;
}

/* ==========================================================================
   Hero Fullscreen 3D Interactive Stage
   ========================================================================== */
.hero-interactive-stage {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0b0e;
}

/* 3D WebGL Canvas Layer */
.hero-canvas-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: grab;
}

.hero-canvas-layer:active {
    cursor: grabbing;
}

.hero-canvas-layer canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    outline: none;
}

/* ==========================================================================
   Central Frosted Glassmorphism Pill Capsule (Matching Reference Image)
   ========================================================================== */
.hero-glass-pill-container {
    position: relative;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 640px;
    padding: 0 1.5rem;
}

.hero-glass-pill {
    pointer-events: auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 9999px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 
                inset 0 1px 2px rgba(255, 255, 255, 0.8),
                inset 0 -1px 2px rgba(0, 0, 0, 0.04);
    padding: 2.2rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: transform 0.4s var(--ease-fluid), box-shadow 0.4s ease, background 0.3s ease;
    animation: floatPill 6s ease-in-out infinite alternate;
}

[data-theme="dark"] .hero-glass-pill {
    background: rgba(20, 22, 28, 0.55);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 
                inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

@keyframes floatPill {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

.hero-glass-pill:hover {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12), 
                inset 0 1px 3px rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .hero-glass-pill:hover {
    background: rgba(25, 28, 36, 0.7);
}

.hero-pill-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    color: #111115;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
}

[data-theme="dark"] .hero-pill-heading {
    color: #ffffff;
}

.hero-pill-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}

.hero-pill-link {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #27272a;
    position: relative;
    padding: 0.35rem 0.2rem;
    transition: color 0.25s ease;
}

[data-theme="dark"] .hero-pill-link {
    color: #e4e4e7;
}

.hero-pill-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.hero-pill-link:hover {
    color: var(--gold);
}

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

/* ==========================================================================
   Interactive Faucet Handle Hotspot & Callout
   ========================================================================== */
.faucet-handle-hotspot {
    position: absolute;
    top: 41%;
    left: 63.5%;
    transform: translate(-50%, -50%);
    z-index: 12;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.3s var(--ease-fluid);
}

.hotspot-pulse {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(214, 183, 140, 0.45);
    animation: hotspotRadar 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    pointer-events: none;
}

@keyframes hotspotRadar {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.hotspot-dot {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(18, 20, 24, 0.85);
    backdrop-filter: blur(8px);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.faucet-handle-hotspot:hover .hotspot-dot {
    transform: scale(1.18);
    background: var(--gold);
    color: #121418;
    box-shadow: 0 6px 20px rgba(214, 183, 140, 0.6);
}

.hotspot-callout {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(18, 20, 24, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(214, 183, 140, 0.4);
    border-radius: 20px;
    padding: 0.4rem 0.9rem;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.hotspot-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #f4f4f5;
}

.faucet-handle-hotspot:hover .hotspot-callout {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    border-color: var(--gold);
}

/* Hide hotspot when panning away from center sink view */
.faucet-handle-hotspot.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   Hero Floating Interactive HUD Controls
   ========================================================================== */
.hero-floating-hud {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}

.hud-group-left,
.hud-group-right {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Hero Floating HUD Responsive Mobile Optimization */
@media (max-width: 768px) {
    .hero-interactive-stage {
        min-height: 460px !important;
        height: 66vh !important;
        max-height: 520px !important;
    }

    .hero-floating-hud {
        bottom: 0.6rem !important;
        left: 0.4rem !important;
        right: 0.4rem !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.35rem !important;
    }

    .hud-group-left {
        width: 100% !important;
        justify-content: center !important;
        gap: 0.35rem !important;
        flex-wrap: nowrap !important;
    }

    .hud-group-right {
        width: 100% !important;
        justify-content: center !important;
        gap: 0.3rem !important;
        transform: scale(0.92) !important;
    }

    .hero-water-toggle-btn {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.7rem !important;
        gap: 0.3rem !important;
        white-space: nowrap !important;
    }

    .hero-hud-badge {
        padding: 0.35rem 0.65rem !important;
        font-size: 0.68rem !important;
        white-space: nowrap !important;
    }

    .hero-finishes-bar {
        padding: 0.25rem 0.4rem !important;
        gap: 0.3rem !important;
    }

    .hero-finish-chip {
        width: 20px !important;
        height: 20px !important;
    }

    .faucet-handle-hotspot {
        top: 45% !important;
        left: 52% !important;
        transform: translate(-50%, -50%) scale(0.85) !important;
    }
}

/* Hero Water Toggle CTA Button */
.hero-water-toggle-btn {
    background: rgba(18, 20, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s var(--ease-fluid);
}

.hero-water-toggle-btn:hover {
    background: #000000;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.hero-water-toggle-btn.active {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(2, 132, 199, 0.5);
}

.hero-hud-badge {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #18181b;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .hero-hud-badge {
    background: rgba(18, 20, 26, 0.75);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f4f4f5;
}

/* Finish Chips Selector on Hero */
.hero-finishes-bar {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .hero-finishes-bar {
    background: rgba(18, 20, 26, 0.75);
    border-color: rgba(255, 255, 255, 0.12);
}

.hero-finish-chip {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.hero-finish-chip:hover {
    transform: scale(1.18);
}

.hero-finish-chip.active {
    border-color: #09090b;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transform: scale(1.15);
}

[data-theme="dark"] .hero-finish-chip.active {
    border-color: #ffffff;
}

.hero-finish-chip[data-finish="chrome"] { background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%); }
.hero-finish-chip[data-finish="gold"] { background: linear-gradient(135deg, #fef08a 0%, #d6b78c 50%, #854d0e 100%); }
.hero-finish-chip[data-finish="black"] { background: linear-gradient(135deg, #3f3f46 0%, #18181b 100%); }
.hero-finish-chip[data-finish="rose"] { background: linear-gradient(135deg, #fecdd3 0%, #df9e87 50%, #9f1239 100%); }
.hero-finish-chip[data-finish="titanium"] { background: linear-gradient(135deg, #94a3b8 0%, #5a5d68 100%); }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gold);
    color: var(--bg-main);
    padding: 0.95rem 2.2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-fluid);
    box-shadow: 0 4px 20px rgba(197, 168, 128, 0.25);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    padding: 0.95rem 2.2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s var(--ease-fluid);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-gold);
    color: var(--gold-light);
}

/* Hero Metrics Bar */
.hero-metrics-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.25rem 2.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.metric-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-top: 0.2rem;
}

.metric-divider {
    width: 1px;
    height: 35px;
    background: var(--border-subtle);
}

/* Section Header Commons */
.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem auto;
}

.section-tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Craftsmanship Section
   ========================================================================== */
.craft-section {
    padding: 7rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%);
}

.craft-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.craft-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.craft-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.craft-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.craft-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.craft-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.craft-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sample Box Mockup 3D Card */
.craft-box-visual {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.sample-box-mockup {
    background: #0d0d10;
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

.box-lid {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.3);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.box-samples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.box-chip {
    height: 90px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    padding: 0.6rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.box-chip span {
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #fff;
}

.chip-marble {
    background: radial-gradient(circle at 30% 30%, #f7f7f7 0%, #d8d8d8 60%, #b8b8b8 100%);
}

.chip-brass {
    background: linear-gradient(135deg, #dfc8a7 0%, #c5a880 50%, #7d6542 100%);
}

.chip-oak {
    background: repeating-linear-gradient(90deg, #2b2219, #2b2219 4px, #1f1812 4px, #1f1812 8px);
}

.chip-terrazzo {
    background-color: #1a1b20;
    background-image: radial-gradient(#c5a880 15%, transparent 16%), radial-gradient(#ffffff 10%, transparent 11%);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
}

.craft-badge-floating {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-main);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px var(--gold-glow);
    white-space: nowrap;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 7rem 0;
}

.contact-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}

.contact-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: var(--gold);
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 0.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.check-item input[type="checkbox"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.form-submit-row {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 0.95rem 1.8rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #25d366;
    color: #000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #060608;
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 0 2.5rem 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 1rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-nav-col h5 {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-nav-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-nav-col a:hover {
    color: var(--gold);
}

.footer-nav-col p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-nav-col p i {
    color: var(--gold);
    width: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--gold);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .craft-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-metrics-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
    .metric-divider {
        display: none;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .form-submit-row {
        flex-direction: column;
        grid-column: span 1;
    }
    .form-submit-row button,
    .form-submit-row a {
        width: 100%;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
/* ==========================================================================
   Bento Grid & Curated Product Showcase
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.25rem;
    transition: transform 0.4s var(--ease-fluid), border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-card-large {
    grid-column: span 2;
    min-height: 440px;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.bento-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-fluid);
    z-index: 1;
}

.bento-card:hover .bento-img {
    transform: scale(1.06);
}

.bento-img-1 { background-image: url('../images/hero-bath-left.jpg'); }
.bento-img-2 { background-image: url('../images/product-faucet-gold.jpg'); }
.bento-img-3 { background-image: url('../images/product-faucet-black.jpg'); }

.bento-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 10, 14, 0.2) 0%, rgba(9, 10, 14, 0.88) 75%, rgba(9, 10, 14, 0.98) 100%);
    z-index: 2;
}

.bento-content {
    position: relative;
    z-index: 3;
}

.bento-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    display: inline-block;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.bento-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

/* Spatial Hotspots Stage */
.hotspot-stage {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 580px;
    border: 1px solid var(--border-subtle);
    margin-top: 2rem;
}

.scene-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.scene-view.active {
    opacity: 1;
    pointer-events: auto;
}

.scene-visual {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.scene-visual.kitchen-bg { background-image: url('../images/hero-sink-water-on.jpg'); }
.scene-visual.bath-bg { background-image: url('../images/hero-bath-left.jpg'); }

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card-large {
        grid-column: span 1;
    }
    .editorial-nav-wrapper {
        display: none !important;
    }
    .mobile-menu-btn {
        display: inline-flex !important;
    }
}

/* ==========================================================================
   Mobile Navigation Drawer & Responsive Styles
   ========================================================================== */
.mobile-menu-btn {
    display: none;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: #0d1017;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 10001;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.9);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .mobile-nav-drawer {
    right: auto;
    left: -340px;
    border-left: none;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.9);
}

.mobile-nav-drawer.active {
    transform: translateX(340px);
}

[dir="rtl"] .mobile-nav-drawer.active {
    transform: translateX(340px);
}

[data-theme="light"] .mobile-nav-drawer {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .mobile-drawer-header {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.brand-logo-mobile {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 800;
}

.drawer-close-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

[data-theme="light"] .drawer-close-btn {
    background: #f1f5f9;
    color: #0f172a;
}

.drawer-close-btn:hover {
    background: var(--gold);
    color: #07080b;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-menu li {
    margin-bottom: 0.65rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

[data-theme="light"] .mobile-link {
    color: #1e293b;
}

.mobile-link i {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-link:hover, .mobile-link:active {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    transform: translateX(4px);
}

[dir="rtl"] .mobile-link:hover {
    transform: translateX(-4px);
}

.mobile-link.admin-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid var(--gold);
    color: #ffffff;
    font-weight: 700;
}

[data-theme="light"] .mobile-link.admin-highlight {
    color: #92400e;
    background: rgba(212, 175, 55, 0.18);
}

.drawer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1rem 0;
}

[data-theme="light"] .drawer-divider {
    background: rgba(0, 0, 0, 0.08);
}

.mobile-drawer-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .mobile-drawer-footer {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Mobile Screen Layout Rules */
@media (max-width: 768px) {
    .top-editorial-bar {
        padding: 0.6rem 1rem;
    }
    .brand-sub-tag {
        display: none;
    }
    .brand-main-name {
        font-size: 1.15rem;
    }
    .sample-box-btn .btn-text {
        display: none;
    }
    .sample-box-btn {
        padding: 0.45rem 0.75rem;
    }
    .hero-spatial-hud {
        bottom: 1rem;
        width: 92%;
        flex-direction: column;
        gap: 0.6rem;
    }
    .activehop-banner-stage {
        padding: 4rem 1rem 3rem;
        min-height: 480px;
    }
    .activehop-editorial-top {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

