/* ==========================================================================
   ROYAL HONEY VIP - HAUTE HORLOGERIE & MINIMALIST LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-dark: #161516;
    --bg-surface: #1E1D1E;
    --bg-surface-elevated: #242224;
    --accent-gold: #E0A96D;
    --accent-gold-light: #F7E1C6;
    --accent-gold-muted: #B88B58;
    --color-cream: #E8D8C8;
    --text-pure: #FAF7F2;
    --text-muted: #9E9893;
    --text-dim: #6E6864;
    --border-gold-subtle: rgba(224, 169, 109, 0.15);
    --border-gold-glow: rgba(224, 169, 109, 0.45);
    --font-serif: 'Cormorant Garamond', 'Cinzel', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
}

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

html {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    letter-spacing: 0.2px;
}

/* Haute Typography */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-serif);
    color: var(--text-pure);
    margin: 0 0 16px 0;
    font-weight: 400;
}

p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 16px 0;
    font-weight: 300;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Ambient Subtle Radial Glow */
.ambient-glow {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(224, 169, 109, 0.08) 0%, rgba(22, 21, 22, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Luxury Global Navigation Header */
.vip-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(22, 21, 22, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold-subtle);
    transition: all 0.3s ease;
}

.vip-header-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vip-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.vip-logo-link img {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(224, 169, 109, 0.3));
}

.vip-logo-link span {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-pure);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.vip-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vip-nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.vip-nav-links a:hover, .vip-nav-links a.active {
    color: var(--accent-gold);
}

.vip-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Minimalist Button Styling */
.vip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vip-btn-gold {
    background: linear-gradient(135deg, #E0A96D 0%, #C59155 100%);
    color: #121112 !important;
    box-shadow: 0 4px 16px rgba(224, 169, 109, 0.25);
}

.vip-btn-gold:hover {
    background: linear-gradient(135deg, #F4D3A1 0%, #E0A96D 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 169, 109, 0.4);
}

.vip-btn-outline {
    background: transparent;
    border: 1px solid var(--border-gold-subtle);
    color: var(--accent-gold) !important;
}

.vip-btn-outline:hover {
    border-color: var(--accent-gold);
    background: rgba(224, 169, 109, 0.08);
    transform: translateY(-2px);
}

.vip-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure);
    padding: 8px;
    border-radius: 4px;
    border: 1px solid var(--border-gold-subtle);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.2s;
}

.vip-cart-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(224, 169, 109, 0.1);
}

.vip-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-gold);
    color: #121112;
    font-size: 10px;
    font-weight: 800;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Mobile Hamburger & Dropdown Menu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--border-gold-subtle);
    color: var(--text-pure);
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu-dropdown {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    background: rgba(22, 21, 22, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-gold-subtle);
    display: none;
    flex-direction: column;
    padding: 20px 24px 30px;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.mobile-menu-dropdown.open {
    display: flex;
    animation: dropDownSlide 0.28s ease-out forwards;
}

@keyframes dropDownSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-dropdown a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-dropdown a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.mobile-menu-dropdown a.mobile-cta {
    margin-top: 18px;
    text-align: center;
    border-bottom: none;
    padding: 14px;
}

/* ==========================================================================
   HORIZONTAL SCROLL ENGINE (DESKTOP)
   ========================================================================== */
.scroll-container {
    position: relative;
    height: 300vh;
    width: 100%;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.horizontal-track {
    display: flex;
    height: 100%;
    width: 300vw;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.slide-frame {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 6vw 30px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.slide-inner {
    max-width: 1240px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
    z-index: 2;
}

/* Slide Typography & Meta UX */
.tag-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 18px;
    opacity: 0.9;
}

.title-huge {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-weight: 400;
    line-height: 1.02;
    color: var(--text-pure);
    margin-bottom: 20px;
    letter-spacing: 1px;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--color-cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.poetic-hook {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--accent-gold);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 300;
}

.narrative-box {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 520px;
    font-weight: 300;
}

/* Minimalist Spec Pills */
.specs-minimal-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.spec-minimal-item {
    border-left: 1px solid var(--border-gold-subtle);
    padding-left: 12px;
}

.spec-minimal-item-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 3px;
}

.spec-minimal-item-val {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-pure);
}

.action-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.price-tag {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--accent-gold);
    display: flex;
    align-items: baseline;
    gap: 6px;
    letter-spacing: 0.5px;
}

.price-tag span {
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--font-sans);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Visual UX (Floating 3D Asset) */
.visual-ux {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.floating-3d-asset {
    position: relative;
    z-index: 2;
    max-height: 480px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 35px rgba(224, 169, 109, 0.15));
    animation: float-slow 7s ease-in-out infinite;
}

@keyframes float-slow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}

/* Slide Navigator */
.slide-nav-tracker {
    position: fixed;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(22, 21, 22, 0.8);
    border: 1px solid var(--border-gold-subtle);
    backdrop-filter: blur(16px);
    padding: 8px 18px;
    border-radius: 50px;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background: var(--accent-gold);
    width: 24px;
    border-radius: 10px;
    box-shadow: 0 0 8px var(--accent-gold);
}

.scroll-progress-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   MINIMALIST EXTRA SECTIONS (3D GALLERY & REVIEWS)
   ========================================================================== */
.section-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 24px;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* 3D Gallery Carousel / Grid */
.gallery-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-3d-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold-subtle);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.gallery-3d-card:hover {
    border-color: var(--border-gold-glow);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.gallery-3d-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

/* Minimalist Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold-subtle);
    border-radius: 6px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-pure);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
}

.review-author strong {
    color: var(--text-muted);
}

/* Minimalist Footer */
.vip-footer {
    background: #111011;
    border-top: 1px solid var(--border-gold-subtle);
    padding: 70px 24px 36px;
    color: var(--text-muted);
}

.vip-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.vip-footer-brand p {
    font-size: 13.5px;
    margin-top: 14px;
    max-width: 320px;
}

.vip-footer-col h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-pure);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.vip-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.vip-footer-col ul li a {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 300;
}

.vip-footer-col ul li a:hover {
    color: var(--accent-gold);
}

.vip-footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   RESPONSIVE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
    .scroll-container {
        height: auto !important;
    }
    .sticky-wrapper {
        position: static !important;
        height: auto !important;
        overflow: visible !important;
    }
    .horizontal-track {
        flex-direction: column !important;
        width: 100% !important;
        transform: none !important;
    }
    .slide-frame {
        width: 100% !important;
        height: auto !important;
        min-height: 85vh !important;
        padding: 90px 20px 50px !important;
        border-bottom: 1px solid var(--border-gold-subtle);
    }
    .slide-inner {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
    .slide-frame:not(:first-child) .slide-inner {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    .floating-3d-asset {
        max-height: 340px !important;
    }
    .slide-nav-tracker {
        display: none !important;
    }
    .vip-nav-links {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex !important;
    }
    .vip-footer-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}


/* Compact Horizontal Scroll Visual Strip */
.visual-carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) transparent;
}

.visual-carousel-container::-webkit-scrollbar {
    height: 4px;
}
.visual-carousel-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.visual-carousel-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding: 0 4px;
}

.visual-carousel-card {
    background: rgba(30, 29, 30, 0.6);
    border: 1px solid var(--border-gold-subtle);
    border-radius: 6px;
    padding: 16px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.visual-carousel-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    background: rgba(36, 34, 36, 0.9);
}

.visual-carousel-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
}


/* ==========================================================================
   MOBILE HEADER & HERO TEXT CLEARANCE ENHANCEMENTS
   ========================================================================== */
@media (max-width: 1024px) {
    .vip-header-inner {
        padding: 10px 16px !important;
    }
    
    /* 1. Hide logo text on mobile, keep logo icon */
    .vip-logo-link span {
        display: none !important;
    }
    
    .vip-logo-link img {
        height: 32px !important;
    }

    /* 2. Hide Order Now CTA in mobile topbar */
    .vip-header-actions .vip-btn-gold,
    .vip-header-actions .vip-btn {
        display: none !important;
    }

    /* 3. Ensure header never covers hero section text */
    .slide-frame {
        padding-top: 110px !important;
        padding-bottom: 50px !important;
    }

    .slide-frame:first-child {
        padding-top: 115px !important;
    }

    .mobile-menu-dropdown {
        top: 53px !important;
    }
}
