/* ============================================
   AURA by Alexandra — Dark Luxury Stylesheet
   Ultra-premium dark monochrome aesthetic
   Inspired by Chanel · Saint Laurent · Balenciaga
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #161616;
    --bg-elevated: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.4);
    --text-faint: rgba(255,255,255,0.2);
    --accent: #c8a97e;
    --accent-light: #d4ba94;
    --accent-dark: #a8895e;
    --accent-glow: rgba(200,169,126,0.15);
    --accent-glow-strong: rgba(200,169,126,0.3);
    --border-subtle: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.1);
    --border-accent: rgba(200,169,126,0.3);
    --card-bg: #111111;
    --card-hover-shadow: 0 20px 60px rgba(200,169,126,0.08), 0 0 0 1px rgba(200,169,126,0.1);
    --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-heading: 'Noto Sans', -apple-system, sans-serif;
    --font-body: 'Noto Sans', -apple-system, sans-serif;
}

[x-cloak] { display: none !important; }

::selection { background: var(--accent); color: var(--bg-primary); }

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-primary);
    color-scheme: dark;
}

body {
    overflow-x: hidden;
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* ============================================
   SCROLLBAR — Dark, thin, elegant
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: rgba(200,169,126,0.2);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(200,169,126,0.4);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(200,169,126,0.2) var(--bg-primary);
}

/* ============================================
   PREMIUM TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.01em;
    font-family: var(--font-heading);
}

h1 { letter-spacing: -0.03em; }
h2 { letter-spacing: -0.02em; }

/* Elegant link underline animations */
a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-underline {
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--transition-smooth);
}

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

/* ============================================
   SHIMMER / SHINE ANIMATION for gold accents
   ============================================ */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,126,0); }
    50% { box-shadow: 0 0 20px 2px rgba(200,169,126,0.1); }
}

/* ============================================
   HERO FRAME — Padded + rounded hero
   ============================================ */
.hero-frame {
    max-width: 2560px;
    margin: 0 auto;
}

.hero-frame-inner {
    overflow: hidden;
    position: relative;
}

/* ============================================
   HERO — Cinematic Full-Screen (Dark)
   ============================================ */
.hero-cinematic {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--bg-primary);
}

@media (max-width: 767px) {
    .hero-frame {
        margin-top: 0 !important;
    }
    .hero-cinematic {
        height: 100vh;
        height: 100svh;
        min-height: 600px;
        max-height: none;
        background: var(--bg-primary);
    }
}

.hero-cinematic video,
.hero-cinematic .hero-media-img {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
    opacity: 1 !important;
}

/* Mobile: full-screen cover */
@media (max-width: 767px) {
    .hero-cinematic .hero-media-wrap {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }
    .hero-cinematic video,
    .hero-cinematic .hero-media-img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        min-width: unset; min-height: unset;
        transform: none;
        object-fit: cover;
    }
}

.hero-cinematic .hero-gradient {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.2) 12%, transparent 35%, transparent 50%, rgba(10,10,10,0.75) 100%),
        linear-gradient(90deg, rgba(10,10,10,0.45) 0%, transparent 55%);
}

@media (max-width: 767px) {
    .hero-cinematic .hero-gradient {
        background:
            linear-gradient(180deg, rgba(10,10,10,0.5) 0%, transparent 30%, transparent 40%, rgba(10,10,10,0.85) 100%);
    }
}

.hero-cinematic .hero-inner {
    position: relative; z-index: 10;
    height: 100%;
    display: flex; align-items: flex-end;
    padding-bottom: 12vh;
}

/* Mobile: text over image at bottom */
@media (max-width: 767px) {
    .hero-cinematic .hero-inner {
        height: 100%;
        align-items: flex-end;
        padding: 0 1.5rem 5rem;
    }
}

/* Scroll cue */
.scroll-cue {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 20;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue span {
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-cue .line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%,100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(0.4); opacity: 1; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
    opacity: 0; transform: translateY(30px);
    transition: all 0.6s var(--transition-smooth);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0; transform: translateX(-30px);
    transition: all 0.6s var(--transition-smooth);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0; transform: translateX(30px);
    transition: all 0.6s var(--transition-smooth);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0; transform: scale(0.95);
    transition: all 0.7s var(--transition-smooth);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-fade {
    opacity: 0;
    transition: opacity 0.7s var(--transition-smooth);
}
.reveal-fade.visible { opacity: 1; }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }
.delay-6 { transition-delay: 0.9s; }

/* ============================================
   BUTTONS — Luxurious Dark Premium
   ============================================ */
.btn-premium {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.1rem 2.8rem;
    background: #ffffff; color: #0a0a0a;
    font-weight: 600; font-size: 0.8125rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 100px;
    border: 1.5px solid transparent;
    transition: all 0.5s var(--transition-smooth);
    position: relative; overflow: hidden;
    font-family: var(--font-body);
}
.btn-premium::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(200,169,126,0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
}
.btn-premium:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(200,169,126,0.2), 0 0 30px rgba(200,169,126,0.1);
}
.btn-premium:hover::before { opacity: 1; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.1rem 2.8rem;
    border: 1.5px solid var(--accent); color: var(--accent);
    background: transparent;
    font-weight: 600; font-size: 0.8125rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.5s var(--transition-smooth);
    font-family: var(--font-body);
}
.btn-outline:hover {
    background: var(--accent); color: var(--bg-primary);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(200,169,126,0.2);
}

.btn-white {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.1rem 2.8rem;
    background: #fff; color: var(--bg-primary);
    font-weight: 600; font-size: 0.8125rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.5s var(--transition-smooth);
    font-family: var(--font-body);
}
.btn-white:hover {
    background: var(--accent); color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(200,169,126,0.15);
}

.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.1rem 2.8rem;
    border: 1.5px solid rgba(255,255,255,0.15); color: var(--text-primary);
    background: transparent;
    font-weight: 500; font-size: 0.8125rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.5s var(--transition-smooth);
    font-family: var(--font-body);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================
   PRODUCT CARD — Dark Premium
   ============================================ */
.product-card {
    position: relative; overflow: hidden;
    border-radius: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    transition: all 0.6s var(--transition-smooth);
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,169,126,0.15);
    box-shadow:
        0 24px 64px rgba(0,0,0,0.4),
        0 0 40px rgba(200,169,126,0.06),
        0 0 0 1px rgba(200,169,126,0.1);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: radial-gradient(ellipse at 50% 40%, #1a1a1a, #111111);
}
.product-card .product-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1 !important;
}
.product-card:hover .product-image img { transform: scale(1.08); }

/* Bottom fade on image — dark version */
.product-card .product-image::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(17,17,17,0.7), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.product-card:hover .product-image::after { opacity: 1; }

.product-card .product-actions {
    position: absolute; top: 1rem; right: 1rem;
    display: flex; flex-direction: column; gap: 0.5rem;
    opacity: 0; transform: translateY(8px);
    transition: all 0.4s var(--transition-smooth);
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }

/* Product info area */
.product-card .product-info,
.product-card .product-details {
    color: var(--text-primary);
}

.product-card .product-info h3,
.product-card .product-details h3,
.product-card .product-name {
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.product-card .product-price,
.product-card .price {
    color: var(--accent);
    font-weight: 600;
}

.product-card .product-brand,
.product-card .brand {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================
   SECTION LABEL — Gold accent
   ============================================ */
.section-label {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent);
}
.section-label::before {
    content: ''; display: block;
    width: 2rem; height: 1px;
    background: var(--accent);
}

/* ============================================
   FULL BLEED PRODUCT SECTION (Dark)
   ============================================ */
.product-showcase {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}

.product-showcase .showcase-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}

.product-showcase .showcase-image {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

.product-showcase .showcase-image img {
    max-height: 70vh;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
    transition: transform 1s var(--transition-smooth);
    opacity: 1 !important;
}
.product-showcase:hover .showcase-image img { transform: scale(1.03); }

/* ============================================
   HORIZONTAL MARQUEE
   ============================================ */
.marquee {
    overflow: hidden; white-space: nowrap;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.marquee-inner {
    display: inline-flex;
    animation: marquee 40s linear infinite;
    color: var(--text-muted);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   COUNTER
   ============================================ */
.counter-value {
    font-variant-numeric: tabular-nums;
    color: var(--text-primary);
}

/* ============================================
   GRADIENT & TEXT UTILS
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.text-balance { text-wrap: balance; }

/* ============================================
   BADGES — Dark luxury
   ============================================ */
.badge {
    display: inline-flex; align-items: center;
    padding: 0.3rem 0.85rem;
    font-size: 0.5625rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    border-radius: 100px;
}
.badge-sale {
    background: var(--accent);
    color: var(--bg-primary);
}
.badge-new {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

/* ============================================
   IMAGES — Fade-in behavior
   ============================================ */
img:not(.no-fade) {
    opacity: 0;
    transition: opacity 0.6s ease, transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
img.loaded,
img[src*="logo"],
img[src*="unsplash"],
header img,
footer img,
.product-card img,
.product-showcase img,
.section-dark img,
.hero-cinematic img {
    opacity: 1 !important;
}

video { opacity: 1 !important; }

/* ============================================
   DARK SECTION (slightly different shade)
   ============================================ */
.section-dark {
    background: #080808;
    color: #fff;
}

/* ============================================
   GLASS — Dark glass effect
   ============================================ */
.glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--border-subtle);
}

/* ============================================
   SWEETALERT — Dark luxury
   ============================================ */
.swal-lux {
    font-family: var(--font-body) !important;
    border-radius: 1.25rem !important;
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-subtle) !important;
}

.swal-lux .swal2-title {
    color: var(--text-primary) !important;
}

.swal-lux .swal2-html-container {
    color: var(--text-secondary) !important;
}

.swal-lux .swal2-confirm {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
}

.swal-lux .swal2-cancel {
    background: transparent !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-secondary) !important;
    border-radius: 100px !important;
}

/* ============================================
   CART NOTIFICATION — Dark premium slide-in
   ============================================ */
#cartNotif {
    position: fixed;
    top: 1.5rem; right: 1.5rem;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-20px) scale(0.96);
    transition: all 0.5s var(--transition-smooth);
}

#cartNotif.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cart-notif-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(17,17,17,0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(200,169,126,0.08);
    max-width: 420px;
}

.cart-notif-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--bg-primary);
    animation: cartNotifPop 0.5s var(--transition-smooth) 0.2s both;
}

@keyframes cartNotifPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.cart-notif-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.cart-notif-sub {
    font-size: 0.6875rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.cart-notif-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cart-notif-btn:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(200,169,126,0.2);
}

.cart-notif-close {
    position: absolute;
    top: -6px; right: -6px;
    width: 22px; height: 22px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cart-notif-close:hover {
    color: var(--accent);
    transform: scale(1.1);
    border-color: var(--border-accent);
}

@media (max-width: 480px) {
    #cartNotif { left: 1rem; right: 1rem; top: auto; bottom: 1rem; }
    .cart-notif-inner { max-width: 100%; flex-wrap: wrap; }
    .cart-notif-btn { width: 100%; justify-content: center; margin-top: 0.5rem; padding: 0.75rem; }
}

/* ============================================
   PRODUCT DESCRIPTION — Dark styled content
   ============================================ */
.product-description h2,
.product-description h3 {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 3rem 0 1.25rem;
    line-height: 1.4;
}

.product-description h2:first-child,
.product-description h3:first-child {
    margin-top: 0;
}

.product-description p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.product-description p:last-child {
    margin-bottom: 0;
}

.product-description strong {
    color: var(--text-primary);
    font-weight: 500;
}

.product-description a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(200,169,126,0.3);
    transition: text-decoration-color 0.3s ease;
}

.product-description a:hover {
    color: var(--accent-light);
    text-decoration-color: var(--accent);
}

.product-description ul,
.product-description ol {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.product-description li {
    margin-bottom: 0.5rem;
}

.product-description ul li { list-style-type: disc; }
.product-description ol li { list-style-type: decimal; }

.product-description li::marker {
    color: var(--accent);
}

/* ============================================
   SWIPER — Product gallery (dark showcase)
   ============================================ */
.product-gallery-swiper-wrap {
    position: relative;
    background: var(--bg-primary);
}

.product-gallery-swiper {
    padding-bottom: 3rem;
}

.product-gallery-swiper .swiper-slide {
    width: 80%;
    transition: all 0.5s var(--transition-smooth);
}

@media (min-width: 768px) {
    .product-gallery-swiper .swiper-slide { width: 65%; }
}

@media (min-width: 1024px) {
    .product-gallery-swiper .swiper-slide { width: 55%; }
}

.gallery-slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 50vh;
    min-height: 300px;
    max-height: none;
    transition: all 0.5s var(--transition-smooth);
    opacity: 0.3;
    transform: scale(0.9);
}

@media (min-width: 768px) {
    .gallery-slide-inner {
        height: 65vh;
    }
}

.swiper-slide-active .gallery-slide-inner {
    opacity: 1;
    transform: scale(1);
}

.gallery-slide-inner img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 60px rgba(0,0,0,0.4));
    opacity: 1 !important;
}

/* Nav arrows — dark glass */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.gallery-nav:hover {
    background: rgba(200,169,126,0.1);
    border-color: var(--border-accent);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: var(--accent);
}

.gallery-prev { left: clamp(1rem, 3vw, 3rem); }
.gallery-next { right: clamp(1rem, 3vw, 3rem); }

/* Pagination — gold dots */
.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 10;
}

.gallery-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.12);
    opacity: 1;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--accent);
}

/* Product mobile swiper */
.product-mobile-pagination .swiper-pagination-bullet {
    width: 6px; height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.15);
    opacity: 1;
    transition: all 0.4s ease;
    cursor: pointer;
}
.product-mobile-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--accent);
}

/* ============================================
   DARK MODE FORM INPUTS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="url"],
textarea,
select {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,169,126,0.1);
    background: var(--bg-tertiary);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* Search input special styling */
input[type="search"] {
    border-radius: 100px;
    padding-left: 1.5rem;
}

/* Select dropdown arrow */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c8a97e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Checkbox / Radio dark styling */
input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--accent);
}

/* ============================================
   PREMIUM LOADING / SKELETON STATES
   ============================================ */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-secondary) 25%,
        var(--bg-tertiary) 50%,
        var(--bg-secondary) 75%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 0.5rem;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
    border-radius: 0.25rem;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-image {
    aspect-ratio: 3/4;
    border-radius: 1rem;
}

.skeleton-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    overflow: hidden;
}

/* Premium loading spinner */
.loading-spinner {
    width: 32px; height: 32px;
    border: 2px solid var(--border-subtle);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   ADDITIONAL DARK PREMIUM UTILITIES
   ============================================ */

/* Dividers */
hr, .divider {
    border: none;
    height: 1px;
    background: var(--border-subtle);
}

/* Card generic dark styling */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
}

/* Gold shimmer text utility */
.gold-shimmer {
    background: linear-gradient(
        90deg,
        var(--accent-dark) 0%,
        var(--accent-light) 25%,
        var(--accent) 50%,
        var(--accent-light) 75%,
        var(--accent-dark) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Subtle gold border glow on hover */
.hover-glow {
    transition: all 0.5s var(--transition-smooth);
}
.hover-glow:hover {
    box-shadow: 0 0 30px rgba(200,169,126,0.08), 0 0 0 1px rgba(200,169,126,0.15);
}

/* Dark overlay for modals/drawers */
.overlay-dark {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Footer on dark bg */
footer {
    background: var(--bg-primary);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-subtle);
}

footer a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent);
}

/* Navigation on dark bg */
nav, header {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Table styling - dark */
table {
    border-collapse: collapse;
}

th {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-subtle);
}

td {
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-cinematic { min-height: 600px; }
    .product-showcase { min-height: auto; }

    .btn-premium,
    .btn-outline,
    .btn-white,
    .btn-ghost {
        padding: 0.9rem 2rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   PRINT — Clean output
   ============================================ */
@media print {
    body {
        background: #fff !important;
        color: #000 !important;
    }
    .hero-cinematic,
    .scroll-cue,
    .marquee {
        display: none !important;
    }
}
