/* Variables CSS - Thème Dark Gold */
:root {
    --bg-dark: #050505;
    --bg-surface: #121212;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    
    --gold-primary: #D4AF37;
    --gold-bright: #FFD700;
    --gold-dark: #996515;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    
    --glass-bg: rgba(10, 10, 10, 0.6);
    --glass-border: rgba(212, 175, 55, 0.2);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Canvas pour l'effet de particules */
#gold-dust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10; /* Au-dessus de la vidéo, en-dessous du contenu */
    pointer-events: none; /* Laisse passer les clics */
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.85) 100%);
    z-index: 2;
}

/* --- NAVIGATION --- */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    font-family: var(--font-body);
}

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

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

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

@media (max-width: 850px) {
    .nav-links { display: none; }
}

/* LANGUAGE TOGGLE */
.lang-tog { display:flex; background:rgba(0,0,0,0.5); border:1px solid #D4AF37; border-radius:50px; padding:2px; }
.lb { padding:4px 14px; border:none; border-radius:50px; background:transparent; color:#f5f5f5; font-size:0.8rem; font-weight:700; cursor:pointer; transition:all 0.3s ease; font-family:'Inter', sans-serif; }
.lb:hover { color:#D4AF37; }
.lb.active { background:#D4AF37; color:#000; box-shadow:0 0 10px rgba(212,175,55,0.4); }

/* --- HERO CONTENT --- */
.hero-content {
    position: relative;
    z-index: 20; /* Au-dessus des particules et de l'overlay */
    text-align: center;
    padding: 0 20px;
}

.glint-text {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

/* --- BOUTIQUE SECTION --- */
.shop-section {
    position: relative;
    z-index: 20;
    padding: 6rem 5%;
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-primary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.separator {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 4px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--gold-primary), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 15px rgba(212, 175, 55, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.card-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    opacity: 0.8;
}

.product-card:hover .card-image-wrapper img {
    transform: scale(1.1);
    opacity: 1;
}

.placeholder-art {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111, #0a0a0a);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0; left: 0;
    transition: transform 0.7s ease;
}

.product-card:hover .placeholder-art {
    transform: scale(1.05);
}

.logo-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.8;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.product-card:hover .logo-mark {
    transform: scale(1.2);
    opacity: 1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.glow-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(5,5,5,1), transparent);
}

.card-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.card-content .price {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.buy-button {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    width: 100%;
}

.product-card:hover .buy-button {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border-color: transparent;
}

/* --- FOOTER --- */
footer {
    background-color: #020202;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 20;
}

.footer-content .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Menu burger à implémenter si besoin */
    }
    
    .glint-text {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .shop-section {
        padding: 4rem 5%;
    }
}

/* --- CART BOTTOM BAR --- */
.cart-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 70px;
    overflow: hidden;
}

.cart-bottom-bar.open {
    max-height: 600px;
}

.cart-bottom-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--glass-border);
}

.cart-toggle-icon {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.cart-bottom-bar.open .cart-toggle-icon {
    transform: rotate(180deg);
}

.cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cr-name { font-weight: bold; color: var(--text-light); }
.cr-desc { font-size: 0.8rem; color: var(--text-muted); }
.cr-price { font-weight: bold; color: var(--gold-primary); }
.cr-del { background: transparent; border: none; color: #ff4444; cursor: pointer; font-size: 1.2rem; }

/* --- MODALS (Dark Gold Theme) --- */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.overlay.open { display: flex; }

.modal {
    background: #111;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(212,175,55,0.2);
    position: relative;
}

.modal-hd {
    padding: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(to bottom, #1a1a1a, #111);
}

.m-eye { font-size: 0.7rem; color: var(--gold-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.m-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-light); }
.m-sub { font-size: 0.9rem; color: var(--text-muted); margin-top: 5px; }

.modal-x, .modal-back {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-x:hover, .modal-back:hover { color: var(--gold-primary); transform: scale(1.1); }

.modal-bd { padding: 20px; }

/* Builder */
.bundle-header { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--text-light); font-weight: bold; }
.bundle-progress { height: 4px; background: #222; border-radius: 2px; overflow: hidden; margin-bottom: 20px; }
.bp-fill { height: 100%; background: var(--gold-primary); width: 0%; transition: width 0.3s ease; }
.bp-fill.over { background: #ff4444; }

.bundle-row { display: flex; justify-content: space-between; align-items: center; padding: 15px; border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; margin-bottom: 10px; background: #151515; }
.bundle-denom-main { font-weight: bold; color: var(--gold-primary); font-size: 1.1rem; }
.bundle-denom-sub { font-size: 0.8rem; color: var(--text-muted); }

.bundle-stepper { display: flex; align-items: center; gap: 10px; background: #0a0a0a; border-radius: 8px; padding: 8px; border: 1px solid rgba(255,255,255,0.1); }
.step-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: var(--text-light); font-size: 1.8rem; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.step-btn:hover:not(:disabled) { background: rgba(212,175,55,0.2); border-color: var(--gold-primary); color: var(--gold-primary); }
  .step-btn:disabled { color: #333; cursor: not-allowed; }
.step-val { font-weight: bold; width: 40px; text-align: center; color: var(--text-light); font-size: 1.2rem; }
.step-val.active { color: var(--gold-primary); }

.bundle-total-bar { display: flex; justify-content: space-between; padding: 15px; background: #151515; border-radius: 8px; margin-top: 20px; border: 1px solid rgba(212,175,55,0.2); }
.btb-label { color: var(--text-muted); }
.btb-num { font-weight: bold; color: var(--text-light); }
.btb-num.complete { color: var(--gold-primary); }
.btb-num.over { color: #ff4444; }

.face-value-builder {
    font-weight: 600;
    color: var(--gold-primary);
    text-align: center;
    padding: 10px 14px;
    background: rgba(212,175,55,0.05);
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid rgba(212,175,55,0.1);
}

/* Buttons inside Modals */
.btn-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.btn-ok, .btn-pay-now {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-ok { background: var(--glass-bg); color: var(--gold-primary); border: 1px solid var(--gold-primary); }
.btn-ok:hover:not(:disabled) { background: var(--gold-primary); color: #000; }
.btn-pay-now { background: var(--gold-gradient); color: #000; }
.btn-pay-now:hover:not(:disabled) { box-shadow: 0 0 15px rgba(212,175,55,0.5); }
.btn-ok:disabled, .btn-pay-now:disabled { opacity: 0.5; cursor: not-allowed; filter: grayscale(1); }

.btn-cncl { width: 100%; background: transparent; border: none; color: var(--text-muted); padding: 15px; cursor: pointer; margin-top: 10px; }
.btn-cncl:hover { color: var(--text-light); text-decoration: underline; }

/* Payment Methods */
.bonus-callout { background: rgba(212,175,55,0.1); border: 1px solid var(--gold-primary); padding: 15px; border-radius: 8px; margin-bottom: 20px; color: var(--text-light); font-size: 0.9rem; }
.popt { display: flex; align-items: center; gap: 15px; width: 100%; background: #151515; border: 1px solid rgba(255,255,255,0.1); padding: 15px; border-radius: 8px; margin-bottom: 10px; cursor: pointer; text-align: left; transition: all 0.3s ease; color: var(--text-light); }
.popt:hover { border-color: var(--gold-primary); background: #1a1a1a; transform: translateX(5px); }
.popt-ico { font-size: 1.5rem; background: #222; width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border-radius: 8px; color: var(--gold-primary); }
.popt-title { font-weight: bold; display: block; margin-bottom: 5px; }
.popt-sub { font-size: 0.8rem; color: var(--text-muted); }

/* Forms */
.fsec { color: var(--gold-primary); font-weight: bold; text-transform: uppercase; margin: 20px 0 10px; letter-spacing: 1px; font-size: 0.9rem; }
.fgrid { display: flex; flex-direction: column; gap: 15px; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.fg label { display: block; margin-bottom: 5px; font-size: 0.85rem; color: var(--text-muted); }
.fi, .fi-select { width: 100%; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.1); color: var(--text-light); padding: 12px; border-radius: 4px; font-family: var(--font-body); }
.fi:focus, .fi-select:focus { border-color: var(--gold-primary); outline: none; }
textarea.fi { resize: vertical; min-height: 80px; }
.mdiv { height: 1px; background: rgba(255,255,255,0.05); margin: 20px 0; }

.intl-warning { display: none; background: rgba(255,100,100,0.1); border: 1px solid #ff4444; padding: 15px; border-radius: 8px; margin-top: 10px; font-size: 0.85rem; color: #ffdddd; }
.intl-warning.show { display: block; }
.intl-warning a { color: var(--gold-primary); }

/* Success Screen */
.success {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}
.success.open { display: flex; }
.s-ring { font-size: 4rem; color: var(--gold-primary); margin-bottom: 20px; }
.success h1 { font-family: var(--font-heading); color: var(--gold-primary); margin-bottom: 10px; }
.s-tgbox { background: #151515; border: 1px solid rgba(212,175,55,0.2); padding: 20px; border-radius: 8px; margin: 20px 0; }
.s-tglink { color: var(--gold-primary); font-size: 1.2rem; font-weight: bold; text-decoration: none; }
.btn-restart { background: var(--gold-gradient); border: none; padding: 12px 30px; font-weight: bold; border-radius: 50px; cursor: pointer; color: #000; margin-top: 20px; }

/* Shipping Section */
.ship-section { max-width: 1400px; margin: 0 auto; padding: 4rem 5%; }
.ship-inner { background: #111; border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.ship-badge { color: var(--gold-primary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.ship-name { font-family: var(--font-heading); font-size: 1.8rem; color: var(--text-light); margin-bottom: 10px; }
.ship-stat { display: flex; gap: 15px; }
.ship-ico { color: var(--gold-primary); font-size: 1.5rem; }
.ship-stat-h { font-weight: bold; color: var(--text-light); margin-bottom: 5px; }
.ship-stat-s { font-size: 0.85rem; color: var(--text-muted); }

/* Crypto Guide & Converter */
/* ── Crypto Guide Toggle Button ── */
.crypto-guide-toggle {
  width: 100%;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 2px solid rgba(212,175,55,0.6);
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  transition: border-color .25s, background .25s;
  animation: guideGlow 2.5s ease-in-out infinite;
}
.crypto-guide-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.08), transparent);
  animation: guideShimmer 2.5s infinite;
}
@keyframes guideGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.0), 0 2px 12px rgba(212,175,55,0.15); }
  50%       { box-shadow: 0 0 0 4px rgba(212,175,55,0.12), 0 4px 20px rgba(212,175,55,0.3); }
}
@keyframes guideShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.crypto-guide-toggle:hover {
  border-color: #D4AF37;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
}
.cgt-left { display: flex; align-items: center; gap: 12px; text-align: left; }
.cgt-ico { font-size: 1.5rem; line-height: 1; }
.cgt-title { font-weight: 700; font-size: .95rem; color: #D4AF37; letter-spacing: .02em; }
.cgt-sub { font-size: .75rem; color: #aaa; margin-top: 3px; }
.cgt-arrow { font-size: 1.2rem; color: #D4AF37; transition: transform .3s; flex-shrink: 0; }
.cgt-arrow.open { transform: rotate(180deg); }
.crypto-guide-body { display: none; background: #0a0a0a; border: 1px solid rgba(212,175,55,0.2); padding: 20px; border-radius: 10px; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-muted); }
.crypto-guide-body.open { display: block; }

/* ── Guide sections ── */
.guide-section { margin-bottom: 18px; }
.guide-section-title { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: #D4AF37; margin-bottom: 12px; }
.guide-step { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.gs-num { background: var(--gold-gradient); color: #000; border-radius: 50%; width: 26px; height: 26px; min-width: 26px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .8rem; }
.gs-body { flex: 1; }
.gs-title { font-weight: 700; font-size: .83rem; color: #e0e0e0; margin-bottom: 3px; }
.gs-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }
.gs-warning { display: flex; gap: 8px; align-items: flex-start; padding: 8px 10px; border-radius: 6px; background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); margin-bottom: 6px; }
.gs-warning-text { font-size: .8rem; color: #fca5a5; line-height: 1.5; }
.gs-tip { display: flex; gap: 8px; align-items: flex-start; padding: 8px 12px; background: rgba(212,175,55,.07); border-left: 3px solid #D4AF37; border-radius: 0 6px 6px 0; }
.gs-tip-text { font-size: .78rem; color: #c8b880; line-height: 1.5; }
.gs-tag { display: inline-block; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.3); border-radius: 20px; padding: 4px 12px; font-size: .75rem; color: #D4AF37; margin-top: 6px; }
.cbox, .intbox, .convbox { background: #151515; border: 1px solid rgba(212,175,55,0.2); padding: 15px; border-radius: 8px; margin-bottom: 15px; text-align: center; }
.caddr { font-family: monospace; background: #000; padding: 10px; border-radius: 4px; color: var(--gold-primary); word-break: break-all; margin: 10px 0; }
.qrwrap img { max-width: 150px; border-radius: 8px; border: 1px solid var(--gold-primary); }

.info-wrap { position: relative; display: inline-flex; align-items: center; gap: 5px; }
.info-btn { background: var(--gold-primary); color: #000; border: none; border-radius: 50%; width: 16px; height: 16px; font-size: 10px; font-weight: bold; cursor: pointer; }
.tooltip-popup { display: none; position: fixed; background: #111; border: 1px solid var(--gold-primary); color: var(--text-light); padding: 12px 14px; border-radius: 8px; width: 260px; font-size: 0.8rem; z-index: 999999; box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.2); line-height:1.5; pointer-events:none; }
.tooltip-popup.open { display: block; }

/* Promo */
#promo-msg { margin-top: 5px; font-size: 0.85rem; padding: 5px 10px; border-radius: 4px; }


/* LANGUAGE TOGGLE */
.lang-tog { display:flex; background:rgba(0,0,0,0.5); border:1px solid #D4AF37; border-radius:50px; padding:2px; }
.lb { padding:4px 14px; border:none; border-radius:50px; background:transparent; color:#f5f5f5; font-size:0.8rem; font-weight:700; cursor:pointer; transition:all 0.3s ease; font-family:'Inter', sans-serif; }
.lb:hover { color:#D4AF37; }
.lb.active { background:#D4AF37; color:#000; box-shadow:0 0 10px rgba(212,175,55,0.4); }


/* ── SOCIAL PROOF POPUP ── */
.social-proof-popup {
  position: fixed;
  bottom: 100px;
  left: -400px; /* Hidden off-screen */
  width: 320px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 4px solid var(--gold-primary);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.15);
  z-index: 9999;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
}

.social-proof-popup.show {
  left: 20px;
  opacity: 1;
}

.spp-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #000;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}

.spp-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spp-title {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.spp-title strong {
  color: var(--gold-primary);
}

.spp-time {
  color: var(--text-muted);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.spp-time::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #28a745;
  border-radius: 50%;
  box-shadow: 0 0 5px #28a745;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
  70% { box-shadow: 0 0 0 5px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

@media (max-width: 768px) {
  .social-proof-popup {
    bottom: 90px;
    left: 50% !important;
    transform: translateX(-50%) translateY(150px);
    width: 90%;
    max-width: 340px;
  }
  .social-proof-popup.show {
    transform: translateX(-50%) translateY(0);
  }
}


/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for child elements if needed */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── CUSTOM CURSOR REMOVED ── */

/* ── 3D TILT ── */
.pack-card { perspective: 1000px; transform-style: preserve-3d; transition: transform 0.1s ease-out, box-shadow 0.1s ease-out; }
.pack-card:hover { z-index: 10; }

/* ── PAGE TRANSITION ── */
.page-transition-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 999999; pointer-events: none; opacity: 0; transition: opacity 0.4s ease-in-out; }
.page-transition-overlay.active { opacity: 1; pointer-events: all; }
/* -- ULTRA-PREMIUM PRODUCT INFO STYLES (V5) -- */

/* Glassmorphism Sections */
.glass-sec {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.glass-sec:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.7), inset 0 0 20px rgba(212,175,55,0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Option 1: Hotspots Anatomy */
.anatomy-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 12px;
    background: #000;
}
.anatomy-img {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: crosshair;
    z-index: 10;
    box-shadow: 0 0 10px var(--gold-primary), 0 0 20px var(--gold-primary);
}
.hotspot::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    background: var(--gold-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: hotspotPulse 2s infinite;
}
@keyframes hotspotPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
.hotspot-tooltip {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    max-width: 280px;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-primary);
    padding: 15px;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.9);
    z-index: 20;
    pointer-events: none;
}
.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.hotspot-tooltip h4 {
    color: var(--gold-primary);
    margin-bottom: 5px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Option 2: UV Slider */
.uv-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 400px;
    margin: 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    user-select: none;
}
.uv-slider-container img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.uv-img-normal { z-index: 1; }
.uv-img-uv {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.uv-slider-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 40px;
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.uv-slider-handle::after {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Option 3: Tech Specs */
.spec-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
}
.spec-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
}
.spec-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-table tr:last-child {
    border-bottom: none;
}
.spec-table td {
    padding: 1.2rem;
    font-size: 0.95rem;
}
.spec-table td:first-child {
    font-weight: bold;
    color: var(--text-muted);
    width: 35%;
}
.spec-table td:last-child {
    color: var(--text-light);
    font-weight: 500;
}

/* Option 4: Compliance */
.compliance-box {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(5,5,5,0.9));
    border: 1px solid rgba(212,175,55,0.3);
    border-left: 4px solid var(--gold-primary);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    align-items: flex-start;
}
.compliance-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}
.compliance-text h3 {
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}
.compliance-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}


/* ── SCRUBBING GALLERY (PRODUCT CARDS) ── */
.scrub-gallery {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  border-radius: var(--r12) var(--r12) 0 0;
  z-index: 1;
}
.scrub-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.1s ease;
  pointer-events: none;
}
.scrub-img.active {
  opacity: 1;
  z-index: 2;
}
.scrub-indicator {
  position: absolute;
  bottom: 10px;
  left: 0; width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
  z-index: 5;
  pointer-events: none;
}
.scrub-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.scrub-bar.active {
  background: var(--gold-primary);
  box-shadow: 0 0 5px rgba(212,175,55,0.5);
}


/* Override old hover behavior for scrub images */
.product-card:hover .card-image-wrapper .scrub-img {
  opacity: 0; /* Let .active class control opacity */
}
.product-card:hover .card-image-wrapper .scrub-img.active {
  opacity: 1;
}
.card-image-wrapper .scrub-img {
  transition: opacity 0.1s ease;
}


/* ── PREMIUM TOOLTIPS (DARK GOLD) ── */
.tooltip-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.15);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    cursor: help;
    transition: all 0.3s ease;
    margin-left: 4px;
}

.info-icon:hover {
    background-color: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.tooltip-box {
    visibility: hidden;
    opacity: 0;
    width: 260px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gold-primary);
    color: var(--text-light);
    text-align: left;
    padding: 14px;
    border-radius: 8px;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 10000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

/* Hover display is now handled entirely by mobile-menu.js (smart-tooltip). */
.tooltip-container:hover .tooltip-box {
    visibility: hidden;
    opacity: 0;
}

.tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(212, 175, 55, 0.25) transparent transparent transparent;
}

/* Tooltip hover moved to JS for fixed positioning */
.tooltip-box.open { visibility: visible; opacity: 1; transform: translateY(0); }

.tooltip-title {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.tooltip-box ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--text-muted);
}
.tooltip-box ul li {
    margin-bottom: 4px;
}


.mhd-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (max-width: 850px) {
  .social-proof-popup {
    top: 55px !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-120px);
    width: 92% !important;
    max-width: 420px !important;
    padding: 9px 14px !important;
    gap: 10px !important;
    border-radius: 8px !important;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease !important;
  }
  .social-proof-popup.show {
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
  }
  .social-proof-popup .spp-icon { width: 28px !important; height: 28px !important; font-size: 0.85rem !important; }
  .social-proof-popup .spp-title { font-size: 0.78rem !important; line-height: 1.25 !important; }
  .social-proof-popup .spp-time { font-size: 0.68rem !important; }
}


