@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Elsie+Swash+Caps:wght@400;900&family=Ephesis&family=GFS+Didot&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* ========================================
   CSS VARIABLES - Premium Color Palette
======================================== */
:root {
    /* Primary Colors */
    --color-bg-dark: #0a0a0a;
    --color-bg-primary: #0d0d0d;
    --color-bg-secondary: #141414;
    --color-bg-tertiary: #1a1a1a;
    
    /* Gold Accents */
    --color-gold: #c9a962;
    --color-gold-light: #d4b978;
    --color-gold-dark: #a88a4a;
    --color-gold-muted: rgba(201, 169, 98, 0.15);
    
    /* Text Colors */
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;
    
    /* Grid Lines */
    --color-grid-line: rgba(255, 255, 255, 0.05);
    
    /* Typography */
    --font-heading: 'Elsie Swash Caps', serif;
    --font-subheading: 'Ephesis', cursive;
    --font-body: 'Cormorant Garamond', serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

/* ========================================
   PREMIUM CUSTOM CURSOR
======================================== */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    opacity: 0.7;
}

/* Cursor states */
.cursor.hover {
    width: 12px;
    height: 12px;
    background: var(--color-gold-light);
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: var(--color-gold-light);
    opacity: 0.5;
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

.cursor-follower.click {
    transform: translate(-50%, -50%) scale(0.9);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

/* Set cursor to none for elements that use custom cursor */
html.has-custom-cursor,
html.has-custom-cursor * {
    cursor: none !important;
}

/* Preserve default cursor for inputs and textareas */
html.has-custom-cursor input,
html.has-custom-cursor textarea,
html.has-custom-cursor select {
    cursor: text !important;
}

html.has-custom-cursor input[type="submit"],
html.has-custom-cursor input[type="button"],
html.has-custom-cursor button {
    cursor: none !important;
}

/* ========================================
   PREMIUM GRID LINES OVERLAY
======================================== */
.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.grid-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-grid-line) 10%,
        var(--color-grid-line) 90%,
        transparent 100%
    );
}

/* ========================================
   NAVIGATION
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    background-color: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
    transition: background-color 0.4s var(--transition-smooth),
                padding 0.4s var(--transition-smooth),
                backdrop-filter 0.4s var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s var(--transition-smooth);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-icon {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    transition: color 0.3s var(--transition-smooth),
                transform 0.3s var(--transition-smooth);
}

.nav-icon:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   MOBILE MENU TOGGLE
======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile Nav Links - Slide out menu */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
        touch-action: manipulation;
    }

    .header {
        z-index: 1003;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 80px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        border-left: 1px solid rgba(201, 169, 98, 0.2);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }

    .nav-links a {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    /* Mobile menu overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        pointer-events: none;
    }

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

    .nav-actions {
        gap: 15px;
    }
}

/* ========================================
   HERO SECTION - PREMIUM CENTERED LAYOUT
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 4% 30px;
    overflow: hidden;
    background: var(--color-bg-dark);
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: saturate(0.4) brightness(0.35);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 50%, transparent 0%, var(--color-bg-dark) 75%),
        linear-gradient(180deg, rgba(10,10,10,0.6) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.7) 100%);
}

/* ========================================
   HERO WRAPPER - THREE COLUMN GRID
======================================== */
.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(min(400px, 90vw), min(500px, 35vw)) 1fr;
    gap: clamp(20px, 3vw, 50px);
    width: 100%;
    max-width: min(1500px, 100%);
    align-items: center;
    flex: 0 0 auto;
    padding: 0 clamp(10px, 2vw, 20px);
    box-sizing: border-box;
}

/* ========================================
   SIDE COLUMNS (LEFT & RIGHT)
======================================== */
.hero-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
    padding: 0px clamp(15px, 3vw, 60px);
    opacity: 0;
    animation: sideReveal 1s ease 0.5s forwards;
    min-width: 0; /* Allow shrinking */
    overflow: hidden;
}

@keyframes sideReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-side-left {
    align-items: flex-start;
    text-align: left;
}

.hero-side-right {
    align-items: flex-end;
    text-align: right;
}

.side-content {
    margin-bottom: auto;
}

.side-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.side-icon svg {
    width: 100%;
    height: 100%;
}

.hero-side-right .side-icon {
    margin-left: auto;
}

.side-title {
    font-family: var(--font-accent);
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.25;
    margin-bottom: 12px;
}

.side-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Side Cards */
.side-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: clamp(15px, 2vw, 25px);
    max-width: min(280px, 100%);
    width: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease;
    margin-top: clamp(15px, 2vw, 30px);
    box-sizing: border-box;
}

.hero-side-left .side-card {
    margin-right: 20px;
}

.side-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 98, 0.25);
}

.hero-side-right .side-card {
    margin-left: auto;
    margin-right: 0;
}

.hero-side-right .side-card {
    margin-left: 20px;
}

.side-card-image {
    width: min(200px, 100%);
    height: min(200px, 50vw);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: clamp(10px, 1.5vw, 18px);
    aspect-ratio: 1;
}

.side-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-card-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.side-card-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(180, 180, 180, 1);
    line-height: 1.6;
    margin-bottom: 18px;
}

.side-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.link-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-dark);
    font-size: 0.6rem;
    transition: all 0.3s ease;
}

.side-card-link:hover .link-play {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
}

.side-card-link span:last-child {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(160, 160, 160, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.side-card-link:hover span:last-child {
    color: var(--color-gold);
}

/* Product Card Specific */
.product-card {
    text-align: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    font-size: 1rem;
    color: var(--color-gold);
    animation: twinkle 2s ease infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.product-card .side-card-image {
    width: min(200px, 100%);
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto clamp(10px, 1.5vw, 18px);
    background: rgba(0, 0, 0, 0.3);
}

.product-card .side-card-title {
    text-align: center;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.price-was {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(150, 150, 150, 1);
    text-decoration: line-through;
}

.price-now {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-gold);
}

/* ========================================
   CENTER - MAIN HERO CONTENT
======================================== */
.hero-center-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Main Heading Above Arch */
.hero-heading {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.heading-accent {
    display: block;
    font-family: var(--font-subheading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--color-gold-light);
    margin-bottom: 5px;
}

.heading-main {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    color: var(--color-text-primary);
    letter-spacing: 4px;
    line-height: 1.2;
}

.heading-main em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 2px;
}

/* ========================================
   THE ARCH - PERFECTLY CENTERED
======================================== */
.hero-arch-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Decorative Arch Line Above */
.arch-decorative-line {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 50px);
    height: 60%;
    border: 1px solid rgba(201, 169, 98, 0.12);
    border-bottom: none;
    border-radius: 50% 50% 0 0 / 45% 45% 0 0;
    pointer-events: none;
}

/* Star Above Arch */
.arch-star {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--color-gold);
    z-index: 5;
    animation: starGlow 2.5s ease-in-out infinite;
}

@keyframes starGlow {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

/* Main Arch Frame */
.arch-main {
    position: relative;
    width: 100%;
    max-width: min(420px, 90vw);
    aspect-ratio: 0.7;
    /* background: linear-gradient(
        180deg,
        rgba(120, 50, 50, 0.5) 0%,
        rgba(90, 35, 35, 0.7) 40%,
        rgba(50, 18, 18, 0.9) 100%
    ); */
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
    overflow: hidden;
    box-shadow: 
        0 0 120px rgba(120, 50, 50, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 80px rgba(201, 169, 98, 0.03),
        inset 0 -80px 120px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: archAppear 1.2s ease 0.3s forwards;
}

@keyframes archAppear {
    0% { opacity: 0; transform: translateY(50px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Arch Inner Content */
.arch-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    width: 100%;
}

.arch-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.arch-headline {
    /* width: 100%; */
    font-family: var(--font-accent);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-gold-light);
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fadeIn 0.8s ease 0.9s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Arch Image - Large & Prominent */
.arch-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 1s var(--transition-smooth);
}

.arch-main:hover .model-image {
    transform: scale(1.04);
}

/* Arch Bottom Gradient */
.arch-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    pointer-events: none;
    z-index: 2;
}

/* ========================================
   HERO CTA
======================================== */
.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg-dark);
    border: none;
    box-shadow: 0 5px 25px rgba(201, 169, 98, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.45);
}

.btn-primary i {
    transition: transform 0.3s var(--transition-smooth);
    font-size: 0.75rem;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.btn-outline:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* ========================================
   HERO STATS BAR
======================================== */
.hero-stats-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    z-index: 5;
    margin-top: auto;
    padding: 30px 0 20px;
    opacity: 0;
    animation: fadeIn 1s ease 1.3s forwards;
}

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

.stat-value {
    font-family: var(--font-accent);
    font-size: 2.0rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.stat-separator {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 98, 0.3), transparent);
}

/* ========================================
   SCROLL INDICATOR
======================================== */
.hero-scroll {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    padding-bottom: 15px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

.hero-scroll span {
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ========================================
   TRUST BAR SECTION
======================================== */
.trust-bar {
    background: linear-gradient(180deg, 
        var(--color-bg-dark) 0%, 
        rgba(15, 15, 15, 1) 50%,
        var(--color-bg-dark) 100%);
    padding: 60px 5%;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    position: relative;
    overflow: hidden;
}

/* Subtle shimmer effect */
.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 169, 98, 0.03) 50%,
        transparent 100%
    );
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.trust-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.trust-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    position: relative;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.trust-item:hover .trust-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.3));
}

.trust-content {
    text-align: left;
}

.trust-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.trust-item:hover .trust-title {
    color: var(--color-gold);
}

.trust-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

/* Elegant Separator */
.trust-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    opacity: 0.4;
}

.separator-diamond {
    font-size: 0.6rem;
    color: var(--color-gold);
    animation: pulse-diamond 3s ease-in-out infinite;
}

@keyframes pulse-diamond {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Trust Bar Responsive */
@media (max-width: 1200px) {
    .trust-bar-container {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .trust-item {
        flex: 0 0 calc(50% - 40px);
        justify-content: flex-start;
        padding-left: 10%;
    }
    
    .trust-separator {
        display: none;
    }
}

@media (max-width: 768px) {
    .trust-bar {
        padding: 50px 5%;
    }
    
    .trust-item {
        flex: 0 0 100%;
        justify-content: center;
        padding-left: 0;
        text-align: center;
    }
    
    .trust-content {
        text-align: center;
    }
    
    .trust-icon {
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   NEW ARRIVALS SECTION - SPOTLIGHT SHOWCASE
======================================== */
.new-arrivals {
    padding: 120px 0 140px;
    background: linear-gradient(180deg, 
        var(--color-bg-dark) 0%,
        rgba(15, 12, 10, 1) 50%,
        var(--color-bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.new-arrivals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.arrivals-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

/* Header */
.arrivals-header {
    text-align: center;
    margin-bottom: 80px;
}

.arrivals-subtitle {
    font-family: var(--font-subheading);
    font-size: 2.2rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
}

.arrivals-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--color-text-primary);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.arrivals-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   SHOWCASE LAYOUT
======================================== */
.arrivals-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
    min-height: 720px;
}

/* Products Containers - Left and Right */
.arrivals-products {
    flex: 1;
    max-width: 380px;
    height: 650px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
}

.products-scroll {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 0;
    overflow-y: auto;
    height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

/* Individual Arrival Card */
.arrival-card {
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arrival-card-inner {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.arrival-card:hover .arrival-card-inner,
.arrival-card.active .arrival-card-inner {
    background: rgba(30, 28, 25, 0.9);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateX(0);
}

.arrivals-left .arrival-card:hover .arrival-card-inner,
.arrivals-left .arrival-card.active .arrival-card-inner {
    transform: translateX(10px);
}

.arrivals-right .arrival-card:hover .arrival-card-inner,
.arrivals-right .arrival-card.active .arrival-card-inner {
    transform: translateX(-10px);
}

.arrival-card.active .arrival-card-inner {
    border-color: var(--color-gold);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.15);
}

/* Badge */
.arrival-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    z-index: 3;
}

/* Card Image */
.arrival-image {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.arrival-card:hover .arrival-image img {
    transform: scale(1.1);
}

/* Card Info */
.arrival-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.arrival-category {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arrival-name {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.arrival-price {
    font-size: 1.4rem;
    margin-top: 4px;
}

.price-current {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* Card Overlay */
.arrival-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.arrival-card:hover .arrival-overlay {
    opacity: 1;
    transform: translateY(0);
}

.view-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ========================================
   CENTER VIDEO BOX
======================================== */
.arrivals-video-box {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.video-frame {
    position: relative;
    width: 420px;
    height: 880px;
    border-radius: 210px 210px 25px 25px;
    overflow: hidden;
    background: var(--color-bg-dark);
    border: 1px solid rgba(201, 169, 98, 0.3);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(201, 169, 98, 0.1);
}

.video-border {
    position: absolute;
    inset: -10px;
    border-radius: 220px 220px 35px 35px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    pointer-events: none;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-frame:hover video {
    transform: scale(1.03);
}

/* Video Overlay with Info */
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 80px;
    background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        transparent 100%);
    text-align: center;
}

.now-showing {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.video-product-name {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-primary);
}

/* Shop Button */
.video-shop-btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s ease;
    z-index: 5;
    white-space: nowrap;
}

.video-shop-btn:hover {
    background: var(--color-text-primary);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.video-shop-btn i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.video-shop-btn:hover i {
    transform: translateX(4px);
}

/* Decorative Lines */
.video-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(201, 169, 98, 0.3) 50%,
        transparent 100%);
}

.video-dec-left {
    right: 100%;
    margin-right: 20px;
}

.video-dec-right {
    left: 100%;
    margin-left: 20px;
}

/* ========================================
   ARRIVALS CTA
======================================== */
.arrivals-cta {
    text-align: center;
    margin-top: 80px;
}

.arrivals-btn {
    padding: 18px 50px;
}

.arrivals-btn i {
    transition: transform 0.3s ease;
}

.arrivals-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   NEW ARRIVALS RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .arrivals-showcase {
        gap: 30px;
    }
    
    .arrivals-products {
        max-width: 300px;
        height: 580px;
    }
    
    .video-frame {
        width: 360px;
        height: 580px;
        border-radius: 180px 180px 20px 20px;
    }
    
    .video-border {
        border-radius: 190px 190px 30px 30px;
    }
}

@media (max-width: 992px) {
    .new-arrivals {
        padding: 100px 0 120px;
    }
    
    .arrivals-showcase {
        flex-direction: column;
        gap: 50px;
    }
    
    .arrivals-products {
        max-width: 100%;
        height: auto;
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .products-scroll {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 20px 5%;
        gap: 20px;
    }
    
    .arrival-card {
        min-width: 280px;
    }
    
    .arrivals-video-box {
        order: -1;
    }
    
    .video-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .arrivals-header {
        margin-bottom: 50px;
    }
    
    .video-frame {
        width: 280px;
        height: 380px;
        border-radius: 140px 140px 16px 16px;
    }
    
    .arrival-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .arrival-overlay {
        position: static;
        opacity: 1;
        transform: none;
        margin-top: 10px;
    }
}

/* ========================================
   COLLECTIONS SECTION - MASONRY LAYOUT
======================================== */
.collections {
    padding: 140px 5% 80px;
    background-color: var(--color-bg-dark);
    position: relative;
}

/* Grid Line Mask - Hides default grid, shows only sides + center */
.collections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    z-index: 1001; /* Above the fixed grid lines */
    pointer-events: none;
}

/* Custom Grid Lines for Collections - Only sides and center */
.collections::after {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 100%;
    z-index: 1002;
    pointer-events: none;
    background-image: 
        /* Left edge line */
        linear-gradient(to bottom, transparent 0%, rgba(201, 169, 98, 0.08) 10%, rgba(201, 169, 98, 0.08) 90%, transparent 100%),
        /* Center line */
        linear-gradient(to bottom, transparent 0%, rgba(201, 169, 98, 0.08) 10%, rgba(201, 169, 98, 0.08) 90%, transparent 100%),
        /* Right edge line */
        linear-gradient(to bottom, transparent 0%, rgba(201, 169, 98, 0.08) 10%, rgba(201, 169, 98, 0.08) 90%, transparent 100%);
    background-size: 1px 100%, 1px 100%, 1px 100%;
    background-position: left center, center center, right center;
    background-repeat: no-repeat;
}

.collections-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1003; /* Content above the custom grid lines */
}

/* Collections Header */
.collections-header {
    text-align: center;
    margin-bottom: 80px;
}

.collections-subtitle {
    font-family: var(--font-subheading);
    font-size: 2.2rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
}

.collections-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--color-text-primary);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.collections-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 380px);
    gap: 30px;
}

/* Masonry Item Sizes */
.masonry-item {
    position: relative;
    overflow: hidden;
}

.masonry-large {
    grid-column: span 2;
    grid-row: span 2;
}

.masonry-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.masonry-medium-alt {
    grid-column: span 1;
    grid-row: span 1;
}

.masonry-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Collection Tile */
.collection-tile {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

/* Tile Media (Image/Video) */
.tile-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tile-image,
.tile-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tile-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.tile-fallback {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Hover Zoom Effect */
.collection-tile:hover .tile-image,
.collection-tile:hover .tile-video {
    transform: scale(1.05);
}

/* Tile Overlay */
.tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(10, 10, 10, 0.4) 70%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 2;
    transition: background 0.5s ease;
}

.collection-tile:hover .tile-overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 30%,
        rgba(10, 10, 10, 0.5) 65%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

/* Tile Content */
.tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 3;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-tile:hover .tile-content {
    transform: translateY(0);
}

.tile-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.tile-title {
    font-family: var(--font-accent);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.25;
    margin-bottom: 18px;
}

.masonry-large .tile-title {
    font-size: clamp(2rem, 3vw, 3rem);
}

.tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, color 0.3s ease;
}

.collection-tile:hover .tile-cta {
    opacity: 1;
    transform: translateY(0);
}

.tile-cta:hover {
    color: var(--color-gold);
}

.tile-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.tile-cta:hover i {
    transform: translateX(5px);
}

/* Small Tile Adjustments */
.masonry-small .tile-content {
    padding: 25px;
}

.masonry-small .tile-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.masonry-small .tile-cta {
    font-size: 1rem;
}

/* ========================================
   COLLECTIONS RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 25px;
    }
    
    .masonry-large {
        grid-column: span 2;
        min-height: 500px;
    }
    
    .masonry-medium,
    .masonry-medium-alt {
        grid-column: span 1;
        min-height: 350px;
    }
    
    .masonry-small {
        grid-column: span 1;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .collections {
        padding: 100px 4% 120px;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .masonry-large,
    .masonry-medium,
    .masonry-medium-alt,
    .masonry-small {
        grid-column: span 1;
        min-height: 400px;
    }
    
    .masonry-large {
        min-height: 500px;
    }
    
    .tile-content {
        padding: 25px;
    }
    
    .tile-cta {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   PREMIUM SALE BANNER
======================================== */
.sale-banner {
    padding: 80px 5%;
    background: linear-gradient(135deg, 
        #0d2a2d 0%, 
        #0a1f21 40%,
        #071719 100%);
    position: relative;
    overflow: hidden;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Left Content */
.banner-left {
    flex: 1;
    max-width: 380px;
}

.banner-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.banner-title {
    margin-bottom: 35px;
}

.title-elegant {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.2;
}

.title-sparkle {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 3px;
    margin-top: 5px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.banner-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.25);
}

.banner-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.banner-btn:hover i {
    transform: translateX(5px);
}

/* Center - Arch Frame */
.banner-center {
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-arch {
    width: 280px;
    height: 360px;
    border-radius: 140px 140px 20px 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(201, 169, 98, 0.1) 0%, 
        rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 60px rgba(201, 169, 98, 0.05);
}

.arch-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(201, 169, 98, 0.15) 0%, 
        transparent 50%);
    pointer-events: none;
}

.banner-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.banner-arch:hover .banner-product-img {
    transform: scale(1.05);
}

/* Decorative Elements */
.banner-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    color: var(--color-gold);
    pointer-events: none;
}

.dec-top-left {
    top: -30px;
    left: -60px;
    animation: float 6s ease-in-out infinite;
}

.dec-bottom-right {
    bottom: -30px;
    right: -60px;
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Right Content */
.banner-right {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.discount-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.discount-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.discount-value {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
    text-shadow: 0 0 40px rgba(201, 169, 98, 0.3);
}

.discount-value .percent {
    font-size: 0.5em;
    vertical-align: super;
}

.discount-off {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-text-primary);
}

.banner-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.banner-desc strong {
    color: var(--color-text-primary);
}

/* Timer */
.banner-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.timer-value {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text-primary);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 10px 18px;
    min-width: 60px;
}

.timer-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-sep {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 25px;
}

/* Background Lines */
.banner-bg-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 98, 0.1) 50%, 
        transparent 100%);
    pointer-events: none;
}

.line-1 {
    top: 30%;
    left: 0;
    right: 0;
    height: 1px;
}

.line-2 {
    bottom: 30%;
    left: 0;
    right: 0;
    height: 1px;
}

/* Sale Banner Responsive */
@media (max-width: 1100px) {
    .banner-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .banner-left,
    .banner-right {
        max-width: 100%;
        text-align: center;
    }
    
    .banner-left {
        order: 1;
    }
    
    .banner-center {
        order: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .banner-right {
        order: 2;
    }
}

@media (max-width: 768px) {
    .sale-banner {
        padding: 60px 5%;
    }
    
    .banner-arch {
        width: 220px;
        height: 280px;
        border-radius: 110px 110px 15px 15px;
    }
    
    .banner-decoration {
        display: none;
    }
    
    .discount-value {
        font-size: 4rem;
    }
    
    .timer-value {
        font-size: 1.4rem;
        padding: 8px 14px;
        min-width: 50px;
    }
}

/* ========================================
   TAGLINE SECTION
======================================== */
.tagline-section {
    padding: var(--section-padding) 5%;
    background-color: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 100%;
    border-top: 1px solid var(--color-grid-line);
    border-bottom: 1px solid var(--color-grid-line);
}

.tagline-content {
    flex: 2;
    max-width: 700px;
}

.tagline-text {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 30px;
}

.tagline-text strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.tagline-tags {
    display: flex;
    gap: 15px;
}

.tag {
    padding: 10px 25px;
    border: 1px solid var(--color-text-muted);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--transition-smooth);
}

.tag:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: var(--color-gold-muted);
}

.tagline-side {
    flex: 1;
    text-align: right;
}

.tagline-quote {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.4;
}

/* ========================================
   CURATED GALLERY SECTION - NEW DESIGN
======================================== */
.curated-gallery {
    padding: 80px 5% 100px;
    background: var(--color-bg-dark);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.curated-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Header */
.curated-header {
    text-align: center;
    margin-bottom: 80px;
}

.curated-subtitle {
    font-family: var(--font-subheading);
    font-size: 2.2rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
}

.curated-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--color-text-primary);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.curated-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   GALLERY VISUAL - 3 FRAMES LAYOUT
======================================== */
.gallery-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
}

.gallery-frame {
    position: relative;
}

/* Side Circular Frames */
.frame-left,
.frame-right {
    z-index: 1;
}

.frame-circle {
    width: 280px;
    height: 360px;
    border-radius: 140px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.frame-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 142px;
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.1), transparent);
    z-index: -1;
}

.frame-circle:hover {
    border-color: rgba(201, 169, 98, 0.4);
    transform: scale(1.02);
}

.frame-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s ease;
}

.frame-circle:hover .frame-image {
    transform: scale(1.05);
}

/* Center Oval Frame - Larger */
.frame-center {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.frame-oval {
    width: 400px;
    height: 520px;
    border-radius: 200px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    padding: 8px;
    background: var(--color-bg-dark);
    border: 1px solid rgba(201, 169, 98, 0.25);
}

.oval-border {
    position: absolute;
    inset: 0;
    border-radius: 200px;
    border: none;
    pointer-events: none;
    z-index: 2;
}

.oval-border::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 208px;
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.frame-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 192px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.frame-oval:hover .frame-video {
    transform: scale(1.03);
}

/* Gallery Shop Now Button */
.gallery-shop-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 98, 0.4);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-decoration: none;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.frame-oval:hover .gallery-shop-btn {
    opacity: 1;
}

.gallery-shop-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.gallery-shop-btn i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.gallery-shop-btn:hover i {
    transform: translateX(4px);
}

/* Connecting Line from Center Frame */
.connecting-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, 
        rgba(201, 169, 98, 0.4) 0%,
        rgba(201, 169, 98, 0.1) 100%);
    margin-top: 0;
}

/* ========================================
   GALLERY SELECTOR - CURVED LAYOUT
======================================== */
.gallery-selector {
    position: relative;
    width: 100%;
    min-height: 280px;
}

.selector-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: 300px;
    pointer-events: none;
    z-index: 1;
}

.selector-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    z-index: 5;
    gap: 0;
}

/* Gallery Item Buttons */
.gallery-item {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
    min-width: 160px;
    flex: 1;
    max-width: 220px;
}

/* Position items in curved pattern - edges higher, center higher */
.gallery-item:nth-child(1) { margin-top: 180px; } /* Eternal Diamond - bottom left */
.gallery-item:nth-child(2) { margin-top: 100px; } /* Signature Piece - middle left */
.gallery-item:nth-child(3) { margin-top: 30px; }  /* Midnight Pearl - top center */
.gallery-item:nth-child(4) { margin-top: 100px; } /* Golden Heritage - middle right */
.gallery-item:nth-child(5) { margin-top: 180px; } /* Celestial - bottom right */

.gallery-item:hover {
    transform: translateY(-8px);
}

/* Connector line going up from each item */
.item-connector {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, 
        rgba(201, 169, 98, 0.05) 0%,
        rgba(201, 169, 98, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease, height 0.4s ease;
}

.gallery-item.active .item-connector,
.gallery-item:hover .item-connector {
    opacity: 1;
}

.gallery-item.active .item-connector {
    height: 60px;
}

/* Dot indicator */
.gallery-item .item-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.3);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-item .item-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.gallery-item:hover .item-dot,
.gallery-item.active .item-dot {
    background: var(--color-gold);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.gallery-item.active .item-dot::after {
    border-color: rgba(201, 169, 98, 0.3);
}

/* Label text */
.item-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.gallery-item:hover .item-label,
.gallery-item.active .item-label {
    color: var(--color-text-primary);
}

.gallery-item.active .item-label {
    color: var(--color-gold);
    font-weight: 500;
}

/* ========================================
   CURATED GALLERY RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .gallery-visual {
        gap: 40px;
    }
    
    .frame-circle {
        width: 220px;
        height: 280px;
        border-radius: 110px;
    }
    
    .frame-oval {
        width: 340px;
        height: 440px;
        border-radius: 170px;
    }
    
    .oval-border {
        border-radius: 170px;
    }
    
    .oval-border::before {
        border-radius: 178px;
    }
    
    .frame-video {
        border-radius: 162px;
    }
    
    .selector-wrapper {
        max-width: 1000px;
        padding: 0 20px;
    }
    
    .gallery-item {
        min-width: 120px;
    }
}

@media (max-width: 992px) {
    .curated-gallery {
        padding: 100px 5% 80px;
    }
    
    .gallery-visual {
        gap: 25px;
    }
    
    .frame-circle {
        width: 180px;
        height: 230px;
        border-radius: 90px;
    }
    
    .frame-oval {
        width: 280px;
        height: 360px;
        border-radius: 140px;
    }
    
    .frame-video {
        border-radius: 132px;
    }
    
    .selector-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .gallery-item {
        min-width: 100px;
        padding: 10px 15px;
    }
    
    .item-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    .connecting-line {
        height: 50px;
    }
    
    .gallery-selector {
        min-height: 220px;
    }
    
    .gallery-item:nth-child(1) { margin-top: 140px; }
    .gallery-item:nth-child(2) { margin-top: 80px; }
    .gallery-item:nth-child(3) { margin-top: 20px; }
    .gallery-item:nth-child(4) { margin-top: 80px; }
    .gallery-item:nth-child(5) { margin-top: 140px; }
    
    .item-label {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    .gallery-visual {
        flex-direction: column;
        gap: 30px;
    }
    
    .frame-left,
    .frame-right {
        display: none;
    }
    
    .frame-oval {
        width: 260px;
        height: 340px;
        border-radius: 130px;
    }
    
    .connecting-line {
        height: 40px;
    }
    
    .selector-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .gallery-item {
        margin-top: 0 !important;
        padding: 10px 15px;
    }
    
    .item-connector {
        display: none;
    }
    
    .selector-lines {
        display: none;
    }
}

@media (max-width: 480px) {
    .frame-oval {
        width: 220px;
        height: 280px;
        border-radius: 110px;
    }
    
    .item-label {
        font-size: 0.6rem;
    }
    
    .showcase-side img {
        height: 120px;
        width: calc(50% - 10px);
    }
    
    .showcase-main {
        height: 300px;
        order: -1;
    }
    
    .selector-item {
        padding: 10px 12px;
    }
    
    .selector-item:nth-child(1),
    .selector-item:nth-child(2),
    .selector-item:nth-child(3),
    .selector-item:nth-child(4),
    .selector-item:nth-child(5) {
        transform: translateY(0);
    }
    
    .selector-item:hover {
        transform: translateY(-10px);
    }
    
    .item-name {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .arch-track {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .gallery-showcase {
        height: auto;
        margin-bottom: 60px;
    }
    
    .showcase-side {
        display: none;
    }
    
    .showcase-main {
        height: 350px;
    }
    
    .selector-items {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .selector-item {
        padding: 8px 10px;
    }
    
    .item-name {
        font-size: 0.6rem;
    }
    
    .arch-curve {
        display: none;
    }
}

@media (max-width: 480px) {
    .showcase-main {
        height: 280px;
    }
    
    .showcase-info {
        padding: 20px;
    }
    
    .showcase-name {
        font-size: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1400px) {
    /* Remove cursor styles for mobile and tablet */
}

@media (max-width: 992px) {
    *, *:hover, *:active, *:focus {
        cursor: auto !important;
    }
    .cursor, .cursor-follower {
        display: none !important;
    }
}

@media (max-width: 480px) {
    *, *:hover, *:active, *:focus {
        cursor: auto !important;
    }
    .cursor, .cursor-follower {
        display: none !important;
    }
}
    .hero-wrapper {
        grid-template-columns: 1fr minmax(350px, 420px) 1fr;
        gap: 35px;
    }
    
    .side-title {
        font-size: clamp(1.4rem, 1.8vw, 2rem);
    }
}

@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr minmax(320px, 380px) 1fr;
        gap: 25px;
    }
    
    .hero-stats-bar {
        gap: 25px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .side-card {
        max-width: 190px;
        padding: 18px;
    }
    
    .heading-main {
        font-size: clamp(2.2rem, 4vw, 4rem);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 90px 5% 50px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-side {
        display: none;
    }
    
    .hero-center-main {
        order: 1;
    }
    
    .arch-main {
        max-width: 380px;
    }
    
    .hero-stats-bar {
        position: static;
        transform: none;
        margin-top: 40px;
        justify-content: center;
    }
    
    .hero-scroll {
        position: static;
        transform: none;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: flex;
    }
    
    .hero {
        padding: 80px 4% 40px;
    }
    
    .hero-heading {
        margin-bottom: 20px;
    }
    
    .heading-accent {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .heading-main {
        font-size: clamp(2rem, 6vw, 3rem);
        letter-spacing: 2px;
    }
    
    .arch-main {
        max-width: 320px;
    }
    
    .arch-headline {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
    
    .arch-subtitle {
        font-size: 0.5rem;
        letter-spacing: 3px;
    }
    
    .hero-stats-bar {
        gap: 15px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-image {
        height: 350px;
    }
    
    .tagline-section {
        flex-direction: column;
        text-align: center;
    }
    
    .tagline-side {
        text-align: center;
    }
    
    .tagline-tags {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .grid-lines {
        padding: 0 2%;
    }
    
    .grid-line:nth-child(2),
    .grid-line:nth-child(4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 3% 30px;
    }
    
    .hero-wrapper {
        max-width: 100%;
    }
    
    .heading-accent {
        font-size: 1.6rem;
    }
    
    .heading-main {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .arch-main {
        max-width: 280px;
    }
    
    .arch-content {
        top: 5%;
    }
    
    .arch-headline {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.7rem;
    }
    
    .hero-stats-bar {
        flex-wrap: wrap;
    }
    
    .stat-separator {
        display: none;
    }
    
    .hero-scroll .scroll-line {
        height: 30px;
    }
}