/* ==========================================
   xM3Dx Store – CINEMATIC DESIGN SYSTEM
   Inspired by: MotionSites.ai principles
   — Animated gradients, cinematic lighting,
     premium typography, glassmorphism v2
   ========================================== */

/* --- Google Fonts: Geist + Inter --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://db.onlinewebfonts.com/c/8b75d9dcff6a48c35a46656192adf019?family=FSP+DEMO+-+PODIUM+Sharp+4.11');

.font-podium { font-family: 'FSP DEMO - PODIUM Sharp 4.11', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }

/* --- Keyframes --- */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -800px 0; }
    100% { background-position: 800px 0; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200vh); }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.05), 0 0 60px rgba(255,255,255,0.02); }
    50% { box-shadow: 0 0 40px rgba(255,255,255,0.1), 0 0 80px rgba(255,255,255,0.05); }
}

/* --- CSS Design Tokens --- */
:root {
    /* Backgrounds */
    --bg:           #000000;
    --bg-2:         #000000;
    --bg-card:      rgba(255,255,255,0.015);
    --bg-card-h:    rgba(255,255,255,0.035);
    --bg-elevated:  rgba(0, 0, 0, 0.99);

    /* Borders */
    --border:       rgba(255,255,255,0.06);
    --border-h:     rgba(255,255,255,0.16);
    --border-accent: rgba(255,255,255,0.22);

    /* Text */
    --text-1:       #ffffff;
    --text-2:       #8a8a9a;
    --text-3:       #4a4a5a;
    --text-accent:  #c8c8d8;

    /* Statuses */
    --green:        #10b981;
    --orange:       #f59e0b;
    --red:          #ef4444;

    /* Crypto */
    --btc:          #F7931A;
    --ltc:          #345D9D;
    --usdt:         #26A17B;

    /* Radii */
    --radius-card:  24px;
    --radius-btn:   14px;
    --radius-pill:  999px;
    --radius-sm:    12px;

    /* Glassmorphism V2 */
    --blur:              20px;
    --blur-heavy:        40px;
    --glass:             rgba(255,255,255,0.025);
    --glass-h:           rgba(255,255,255,0.055);
    --glass-border:      rgba(255,255,255,0.055);
    --glass-border-h:    rgba(255,255,255,0.15);

    /* Cinematic Shadows */
    --shadow-card:    0 0 0 1px rgba(255,255,255,0.06), 0 4px 8px rgba(0,0,0,0.6), 0 12px 28px rgba(0,0,0,0.4);
    --shadow-card-h:  0 0 0 1px rgba(255,255,255,0.14), 0 8px 20px rgba(0,0,0,0.8), 0 30px 60px rgba(0,0,0,0.5);
    --shadow-glow:    0 0 60px rgba(255,255,255,0.04);

    /* Motion */
    --ease:          cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration:      0.32s;
    --duration-slow: 0.6s;
    
    /* Vanguard Specific */
    --vanguard-bg: #000000;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--text-1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    /* Cinematic background texture */
    background-image:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #050508; }
::-webkit-scrollbar-thumb { background: #1e1e2e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2e2e3e; }

/* --- Layout --- */
.store-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
}

.store-layout { min-height: 100vh; display: flex; flex-direction: column; }

/* ========================
   NAVBAR — Cinematic blur
   ======================== */
.navbar-premium {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(var(--blur-heavy));
    -webkit-backdrop-filter: blur(var(--blur-heavy));
    border-bottom: 1px solid var(--border);
}

/* Animated gradient accent line on hover */
.navbar-premium::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 30%, rgba(150,100,255,0.3) 50%, rgba(255,255,255,0.15) 70%, transparent 100%);
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    opacity: 0.6;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.nav-brand img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.nav-brand-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0c0 50%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

/* Desktop Navigation */
.nav-desktop { display: flex; align-items: center; }

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

.nav-link {
    color: var(--text-2);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color var(--duration) var(--ease);
    position: relative;
    padding-bottom: 2px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    border-radius: 2px;
    transition: width var(--duration) var(--ease);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-link.active { color: #fff; }
.nav-link.active::after { width: 100%; opacity: 0.5; }

.btn-nav-accent {
    background: #fff;
    color: #000 !important;
    padding: 0.55rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255,255,255,0.15);
}

.btn-nav-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.25);
    color: #000 !important;
}

/* ========================
   THEME TOGGLE BUTTON
   ======================== */
.theme-toggle-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    color: #fff;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: rotate(15deg);
}

.theme-toggle-btn i {
    position: absolute;
    transition: all 0.4s var(--ease);
}

.theme-icon-dark {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.theme-icon-light {
    opacity: 0;
    transform: translateY(20px) rotate(-90deg);
}

body.light-mode .theme-toggle-btn {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.1);
    color: #f5a623;
}

body.light-mode .theme-toggle-btn:hover {
    background: rgba(0,0,0,0.1);
}

body.light-mode .theme-icon-dark {
    opacity: 0;
    transform: translateY(-20px) rotate(90deg);
}

body.light-mode .theme-icon-light {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* ========================
   MOBILE NAVIGATION
   ======================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.hamburger-line.open:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-line.open:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s var(--ease), z-index 0s 0.5s;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-overlay.visible {
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    transition: background 0.4s var(--ease), z-index 0s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-panel {
    width: min(320px, 85vw);
    height: 100%;
    background: #0a0a0f;
    border-left: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.8);
}

.mobile-menu-panel.visible {
    transform: translateX(0);
}

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

.mobile-close-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.mobile-close-btn:hover {
    background: #fff;
    color: #000;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: var(--text-2);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.7;
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    transform: translateX(4px);
}

.mobile-nav-link.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.mobile-logout-btn {
    margin-top: auto;
    color: #ef4444;
    opacity: 0.8;
}

.mobile-logout-btn:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
}

.mobile-menu-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 1rem;
}

.mobile-discord-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    color: #5865F2;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mobile-discord-link:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
}

/* ========================
   PRODUCT GRID
   ======================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* ========================
   PRODUCT CARD — Cinematic
   ======================== */
.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 1.5rem 1.5rem 1.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 265px;
    transition: transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease),
                border-color var(--duration) var(--ease),
                background var(--duration) var(--ease);
    box-shadow: var(--shadow-card);
    cursor: pointer;
}

/* Cinematic top edge light */
.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

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

.premium-card:hover {
    background: var(--bg-card-h);
    border-color: var(--border-h);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-h);
}

.card-bg-text { display: none; }

/* Card Sections */
.card-top, .card-mid, .card-bot { position: relative; z-index: 2; }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.card-mid { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.card-bot { margin-top: 1.25rem; }

/* Brand */
.card-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon-wrap {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--duration) var(--ease);
}

.brand-logo-img { width: 22px; height: 22px; object-fit: contain; }

.premium-card:hover .brand-icon-wrap {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.16);
    transform: scale(1.05);
}

.brand-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-3);
}

/* Badge */
.card-badge {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge-best { background: rgba(255,255,255,0.08); color: #ddd; border: 1px solid rgba(255,255,255,0.1); }
.badge-hot  { background: rgba(255,80,0,0.12); color: #ff6b3d; border: 1px solid rgba(255,80,0,0.18); }
.badge-ltd  { background: rgba(255,215,0,0.1); color: #ffd700; border: 1px solid rgba(255,215,0,0.18); }
.badge-new  { background: rgba(16,185,129,0.1); color: #10b981; border: 1px solid rgba(16,185,129,0.15); }

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--text-3);
    font-weight: 500;
    line-height: 1.4;
}

/* Stock */
.stock-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.stock-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stock-dot.g { background: var(--green); box-shadow: 0 0 8px var(--green); }
.stock-dot.o { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.stock-dot.r { background: var(--red); box-shadow: 0 0 8px var(--red); }

.stock-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-2);
}

/* Price */
.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.price-old {
    font-size: 0.8rem;
    color: var(--text-3);
    text-decoration: line-through;
    font-weight: 500;
}

.price-new {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -1px;
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-2);
    margin-right: 1px;
    vertical-align: super;
}

.discount-badge {
    font-size: 0.65rem;
    font-weight: 800;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

/* Buy Button */
.btn-buy {
    width: 100%;
    padding: 0.9rem;
    background: #fff;
    border: none;
    border-radius: 4px;
    color: #000;
    font-weight: 900;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.btn-buy:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.25);
    background: #fff;
}

.btn-buy:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background: rgba(255,255,255,0.05);
    color: var(--text-3);
}

.btn-buy-arrow {
    font-size: 1rem;
    transition: transform var(--duration) var(--ease);
}

.btn-buy:hover:not(:disabled) .btn-buy-arrow { transform: translateX(3px); }

/* ========================
   HERO — Cinematic light orbs
   ======================== */
.hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Primary cinematic light orb — top left */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center,
        rgba(120, 80, 255, 0.07) 0%,
        rgba(80, 50, 200, 0.04) 40%,
        transparent 70%);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

/* Secondary light orb — bottom right */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center,
        rgba(50, 150, 255, 0.05) 0%,
        rgba(20, 80, 200, 0.03) 40%,
        transparent 70%);
    pointer-events: none;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-3);
    border: 1px solid var(--border);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.025);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2.5px;
    margin-bottom: 1.5rem;
    /* Cinematic gradient text */
    background: linear-gradient(160deg,
        #ffffff 0%,
        #e8e8f0 30%,
        #9090b0 70%,
        #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

.hero-title .outline {
    background: none;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    font-weight: 400;
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    transition: all var(--duration) var(--ease);
}

.hero-badge:hover {
    border-color: var(--border-h);
    color: var(--text-1);
    background: var(--glass-h);
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
}

.hero-stat { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-stat-val {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #a0a0c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-stat-lbl {
    font-size: 0.7rem;
    color: var(--text-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ========================
   SECTION HEADERS
   ======================== */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-3);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 20px; height: 1px;
    background: linear-gradient(90deg, var(--text-3), transparent);
    border-radius: 1px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.75px;
    color: var(--text-1);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 40%, #808090 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================
   SEARCH & FILTERS
   ======================== */
.filter-area {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.search-wrap {
    position: relative;
    max-width: 480px;
}

.search-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    color: var(--text-1);
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 500;
    transition: border-color var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease),
                background var(--duration) var(--ease);
}

.search-input::placeholder { color: var(--text-3); }

.search-input:focus {
    outline: none;
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.03), 0 0 30px rgba(255,255,255,0.03);
}

.search-icon {
    position: absolute;
    left: 0.9rem; top: 50%;
    transform: translateY(-50%);
    font-size: 0.88rem;
    opacity: 0.35;
    pointer-events: none;
}

.cat-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-cat {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    color: var(--text-2);
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.82rem;
    font-family: inherit;
    transition: all var(--duration) var(--ease);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-cat:hover {
    border-color: var(--glass-border-h);
    color: var(--text-1);
    background: var(--glass-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.btn-cat.active {
    background: rgba(255,255,255,0.92);
    border-color: transparent;
    color: #080808;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(255,255,255,0.15), 0 0 60px rgba(255,255,255,0.04);
}

/* ========================
   REVIEWS SECTION
   ======================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

/* Cinematic gradient edge on review cards */
.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.review-card:hover::before { opacity: 1; }
.review-card:hover { border-color: var(--border-h); background: var(--bg-card-h); }

.review-stars { color: #ffd700; font-size: 0.88rem; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; font-style: italic; flex: 1; }
.review-author { font-size: 0.75rem; font-weight: 700; color: var(--text-accent); }
.review-status { font-size: 0.68rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.8px; }

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

/* ========================
   TRUST STRIP — Minimalist
   ======================== */
.trust-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    background: var(--bg-card);
    margin: 4rem 0;
    /* Cinematic top light */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.trust-val {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #a0a0c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trust-lbl { font-size: 0.7rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; }

/* ========================
   FOOTER
   ======================== */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: auto;
    text-align: center;
    /* Subtle top gradient */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.footer-text { font-size: 0.8rem; color: var(--text-3); font-weight: 500; }
.footer-sub { font-size: 0.72rem; color: var(--text-3); margin-top: 0.4rem; opacity: 0.5; }

/* ========================
   SKELETON LOADING
   ======================== */
.skeleton {
    background: #0a0a14;
    background-image: linear-gradient(90deg, #0a0a14 0%, #141424 40%, #0a0a14 80%);
    background-size: 800px 100%;
    animation: shimmer 1.6s infinite ease-in-out;
    border-radius: var(--radius-card);
}

/* ========================
   ANIMATIONS
   ======================== */
.fade-up   { animation: fadeUp 0.55s var(--ease) both; }
.fade-up-1 { animation-delay: 0.06s; }
.fade-up-2 { animation-delay: 0.12s; }
.fade-up-3 { animation-delay: 0.18s; }

/* ========================
   MISC. FIXED ELEMENTS
   ======================== */
.purchase-notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1100;
}

.support-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1100;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
}

/* Highlight match */
.highlight {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    padding: 0 2px;
}

/* ========================
   STORE CONTROLS
   ======================== */
.store-controls {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.filter-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.section-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.results-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-3);
    margin-bottom: 0.5rem;
}

/* ========================
   NO RESULTS EMPTY STATE
   ======================== */
.no-results.glass {
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 28px;
    border: 1px dashed var(--border);
    margin: 2rem 0;
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.35;
}

/* ========================
   LIGHT MODE THEME TOGGLE
   ======================== */
body.light-mode {
    --bg: #f5f5f7;
    --bg-2: #ffffff;
    --bg-card: rgba(0,0,0,0.02);
    --bg-card-h: rgba(0,0,0,0.04);
    --bg-elevated: rgba(255, 255, 255, 0.98);
    --border: rgba(0,0,0,0.08);
    --border-h: rgba(0,0,0,0.18);
    --border-accent: rgba(0,0,0,0.12);
    --text-1: #0a0a0f;
    --text-2: #555566;
    --text-3: #9999aa;
    --text-accent: #444455;
    --glass: rgba(255,255,255,0.7);
    --glass-h: rgba(255,255,255,0.85);
    --glass-border: rgba(0,0,0,0.06);
    --glass-border-h: rgba(0,0,0,0.12);
    --shadow-card: 0 0 0 1px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-card-h: 0 0 0 1px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.1);
    --vanguard-bg: #f5f5f7;
    background-image: none;
}

body.light-mode .navbar-premium {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(0,0,0,0.08);
}

body.light-mode .nav-brand-text {
    background: linear-gradient(135deg, #1a1a2e 0%, #5555aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

body.light-mode .vanguard-hero {
    background: #f5f5f7;
    color: #0a0a0f;
}

body.light-mode .vanguard-heading {
    color: #0a0a0f;
}

body.light-mode .text-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #5555aa 50%, #1a1a2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .btn-vanguard {
    background: #1a1a2e;
    color: #fff;
    box-shadow: 0 10px 30px rgba(26,26,46,0.2);
}

body.light-mode .btn-vanguard:hover {
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

body.light-mode .search-input {
    background: #fff;
    border-color: rgba(0,0,0,0.1);
    color: #0a0a0f;
}

body.light-mode .search-input:focus {
    border-color: rgba(0,0,0,0.2);
    background: #fff;
}

body.light-mode .search-input::placeholder {
    color: #aaa;
}

body.light-mode .btn-cat {
    background: #fff;
    border-color: rgba(0,0,0,0.1);
    color: #555;
}

body.light-mode .btn-cat.active {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

body.light-mode .review-card {
    background: #fff;
}

body.light-mode .glass {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
}

body.light-mode .btn-primary-checkout {
    background: #1a1a2e;
    color: #fff;
}

body.light-mode .btn-primary-checkout:hover {
    background: #000;
    color: #fff !important;
}

body.light-mode .auth-card {
    background: rgba(255,255,255,0.85);
    border-color: rgba(0,0,0,0.08);
}

body.light-mode .form-input {
    background: #fff;
    border-color: rgba(0,0,0,0.1);
    color: #0a0a0f;
}

body.light-mode .form-input:focus {
    border-color: rgba(0,0,0,0.2);
    background: #fff;
}

body.light-mode .auth-header h1 {
    color: #0a0a0f;
}

body.light-mode .navbar-premium::after {
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.1) 30%, rgba(100,80,200,0.2) 50%, rgba(0,0,0,0.1) 70%, transparent 100%);
}

body.light-mode .order-card.glass-panel {
    background: #fff;
}

body.light-mode .empty-state.glass-panel {
    background: #fff;
}

body.light-mode .site-footer {
    border-top-color: rgba(0,0,0,0.08);
}

body.light-mode .discount-pill {
    color: #000;
}

body.light-mode .hero-gradient-fallback {
    opacity: 0.7;
}

body.light-mode .mobile-menu-panel {
    background: #f5f5f7;
    border-left-color: rgba(0,0,0,0.08);
}

body.light-mode .mobile-nav-link {
    color: #555;
}

body.light-mode .mobile-nav-link:hover {
    background: rgba(0,0,0,0.05);
    color: #000;
}

body.light-mode .mobile-nav-link.active {
    background: rgba(0,0,0,0.08);
    color: #000;
    border-color: rgba(0,0,0,0.1);
}

body.light-mode .hamburger-line {
    background: #0a0a0f;
}

body.light-mode .trust-pill {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.06);
    color: #555;
}

body.light-mode .payment-option {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
    color: #0a0a0f;
}

body.light-mode .payment-option:hover {
    background: #f5f5f7;
}

body.light-mode .modal-content {
    background: #fff;
    border-color: rgba(0,0,0,0.1);
}
body.light-mode .modal-backdrop {
    background: rgba(255, 255, 255, 0.85);
}

body.light-mode .modal-close {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: #0a0a0f;
}

body.light-mode .modal-close:hover {
    background: #0a0a0f;
    color: #fff;
}

body.light-mode .step.active {
    color: #0a0a0f;
}

body.light-mode .price-card {
    background: #f0f0f5;
}

body.light-mode .price-value {
    color: #0a0a0f;
}

body.light-mode .btn-buy-modal {
    background: #1a1a2e;
    color: #fff;
}

body.light-mode .key-display {
    background: #f0f0f5;
    border-color: rgba(0,0,0,0.08);
}

body.light-mode .trust-card {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}

body.light-mode .trust-card .tc-main {
    color: #0a0a0f;
}

body.light-mode .hero-brand-card {
    background: rgba(255,255,255,0.85);
    border-color: rgba(0,0,0,0.08);
}

body.light-mode .hbc-label {
    color: #0a0a0f;
}

/* ========================
   RESPONSIVE BREAKPOINTS
   ======================== */
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .store-container { padding: 0 1.25rem; }
    .product-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero { padding: 5rem 0 3rem; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .nav-desktop { display: none; }
    .mobile-menu-toggle { display: flex; }
    .trust-strip { padding: 1.5rem 1rem; }
    .filter-area { gap: 1rem; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
    .hero-title { letter-spacing: -1.5px; }
    .hero-stat-val { font-size: 1.4rem; }
    .cat-filters { gap: 0.4rem; }
    .btn-cat { font-size: 0.75rem; padding: 0.4rem 0.85rem; }
}

/* ========================
   LEGACY / BLAZOR CLEANUP
   ======================== */
.content { padding-top: 0; }
h1:focus { outline: none; }

/* ========================
   SPINNER
   ======================== */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,0,0,0.15);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

.auth-btn .spinner {
    border-color: rgba(0,0,0,0.2);
    border-top-color: #000;
}

/* ========================
   AUTHENTICATION PAGES
   ======================== */
.auth-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.auth-card {
    max-width: 440px;
    width: 100%;
    padding: 3rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    animation: fadeUp 0.8s var(--ease);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-logo img {
    height: 48px;
    margin: 0 auto 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.auth-header h1 {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.75px;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-3);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-3);
    margin-bottom: 0.6rem;
    margin-left: 0.4rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--text-3);
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 0.85rem 1rem 0.85rem 2.85rem;
    color: #fff;
    font-size: 0.92rem;
    transition: all 0.3s var(--ease);
}

.form-input:focus {
    outline: none;
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.02);
}

.form-input:focus + i {
    color: #fff;
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    background: #fff;
    color: #000 !important;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: all 0.3s var(--ease-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.auth-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
    background: #f0f0f0;
}

.auth-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.auth-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.88rem;
    color: var(--text-3);
}

.auth-footer a {
    color: #fff;
    font-weight: 700;
    margin-left: 0.3rem;
    text-decoration: underline;
}

.auth-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 0.85rem;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.2);
    margin-bottom: 1.5rem;
    animation: fadeIn 0.4s ease;
}

/* Password Strength Bar Styles */
.strength-container {
    margin-top: 10px;
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, box-shadow 0.4s ease;
}

.strength-weak { width: 33.33%; background: #ef4444; }
.strength-medium { width: 66.66%; background: #f59e0b; box-shadow: 0 0 12px rgba(245, 158, 11, 0.4); }
.strength-strong { width: 100%; background: #10b981; box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }

.strength-text {
    font-size: 10px;
    margin-top: 6px;
    display: block;
    text-align: right;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.auth-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.85rem;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 1.5rem;
}
.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder { color: #555; text-align: end; }
.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder { text-align: start; }

/* OTP Verification Styles */
.otp-step-animation {
    animation: fadeInSlide 0.5s ease forwards;
}

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

.form-hint {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.otp-input {
    font-size: 1.5rem !important;
    text-align: center;
    letter-spacing: 0.5rem;
    font-weight: bold;
    color: var(--accent-color) !important;
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent-color);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
}

.btn-link:hover {
    color: #fff;
}

/* Checkout Modal */
.modal-backdrop {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(8px);
}
.modal-content {
    background: #0a0a14; border: 1px solid rgba(255,255,255,0.08); border-radius: 24px;
    width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.checkout-container { padding: 1rem 1.5rem 1.5rem; }
.checkout-stepper { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.checkout-stepper .step { font-size: 0.7rem; font-weight: 800; color: var(--text-3); text-transform: uppercase; letter-spacing: 1.5px; }
.checkout-stepper .step.active { color: #fff; text-shadow: 0 0 15px rgba(255,255,255,0.4); }
.checkout-stepper .step-line { width: 30px; height: 1px; background: rgba(255, 255, 255, 0.1); }
.checkout-stepper .step-line.active { background: #fff; }

.step-view { text-align: center; }
.step-title { font-size: 1.7rem; font-weight: 900; margin-bottom: 0.4rem; letter-spacing: -1px; }
.step-sub { color: var(--text-2); margin-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.4; }

.email-input-wrap { margin-bottom: 1.5rem; }
.email-input {
    width: 100%; padding: 1rem 1.25rem; border-radius: 14px; border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03); color: #fff; font-size: 1rem; font-weight: 600;
    outline: none; transition: 0.3s; box-sizing: border-box; font-family: inherit;
}
.email-input:focus { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.email-input::placeholder { color: rgba(255,255,255,0.2); }

.qr-container { display: flex; flex-direction: column; align-items: center; margin-bottom: 1rem; }
.qr-box { padding: 0.85rem; background: #fff; border-radius: 18px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); animation: qrPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.qr-box img { display: block; }

.amount-badge {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px;
    padding: 0.65rem 1.4rem; display: flex; align-items: center; gap: 1rem; backdrop-filter: blur(10px);
    justify-content: center; margin-bottom: 1rem;
}
.amount-badge .a-lbl { font-size: 0.6rem; font-weight: 900; opacity: 0.4; letter-spacing: 1px; }
.amount-badge .a-val { font-size: 1.05rem; font-weight: 900; color: #fff; font-family: 'JetBrains Mono', monospace; }
.amount-badge .a-usd { font-size: 0.8rem; font-weight: 700; color: #10b981; }

.crypto-warning {
    background: rgba(255, 170, 0, 0.05); border: 1px solid rgba(255, 170, 0, 0.15); border-radius: 14px;
    padding: 1rem; display: flex; gap: 0.8rem; text-align: left; font-size: 0.8rem; line-height: 1.5;
    margin-bottom: 1rem; color: rgba(255,255,255,0.8);
}
.crypto-warning strong { color: #ffaa00; }

.address-box {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
    padding: 1rem; text-align: left; cursor: pointer; position: relative; margin-bottom: 1.25rem; transition: 0.3s;
}
.address-box:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }
.address-box .addr-lbl { font-size: 0.6rem; font-weight: 900; opacity: 0.3; letter-spacing: 2px; margin-bottom: 0.5rem; }
.address-box .addr-val { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: #fff; word-break: break-all; padding-right: 4rem; opacity: 0.9; }
.address-box .addr-copy {
    position: absolute; top: 50%; right: 1rem; transform: translateY(-50%);
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 900; color: #fff; opacity: 0.4; transition: 0.3s;
}
.address-box:hover .addr-copy { opacity: 1; }

.checkout-footer { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.total-row { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; font-weight: 800; opacity: 0.6; }
.total-price { font-size: 2rem; font-weight: 900; color: #fff; opacity: 1; letter-spacing: -1.5px; }

.btn-primary-checkout {
    background: #fff; color: #000; border: none; padding: 1rem; border-radius: 14px; font-size: 1rem;
    font-weight: 900; cursor: pointer; transition: all 0.3s ease; width: 100%;
    letter-spacing: -0.3px; text-decoration: none; display: inline-block;
}
.btn-primary-checkout:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15); }
.btn-primary-checkout:disabled { opacity: 0.3; cursor: not-allowed; }

.processing-view { padding: 2rem 0; min-height: 300px; display: flex; flex-direction: column; justify-content: center; }
.success-view { padding: 0.5rem 0; max-height: 70vh; overflow-y: auto !important; display: flex; flex-direction: column; justify-content: flex-start; }
.success-content { animation: successSlideUp 0.6s var(--ease) both; }
.success-icon-wrap { width: 80px; height: 80px; margin: 0 auto 1.5rem; }
.checkmark { width: 80px; height: 80px; }
.checkmark__circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 2; stroke-miterlimit: 10; stroke: #10b981; fill: none; animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.checkmark__check { stroke-dasharray: 48; stroke-dashoffset: 48; stroke-width: 2; stroke: #10b981; fill: none; animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards; }

.discord-cta {
    background: rgba(88, 101, 242, 0.06);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 18px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.25rem;
}
.discord-cta-icon { margin-bottom: 0.75rem; }
.discord-cta-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; }
.discord-cta-text { font-size: 0.85rem; color: var(--text-2); margin-bottom: 1rem; line-height: 1.5; }
.discord-order-id {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    margin-bottom: 1rem;
}
.btn-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: #5865F2;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.35);
    color: #fff;
}
@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes successSlideUp { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes qrPop { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

.key-box {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px;
    padding: 2.5rem; margin: 2.5rem 0; position: relative; overflow: hidden;
}
.key-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent); }
.key-box .key-label { font-size: 0.7rem; font-weight: 900; opacity: 0.3; margin-bottom: 1rem; letter-spacing: 3px; position: relative; }

.loader-wrap { position: relative; width: 80px; height: 80px; margin: 0 auto 2.5rem; }
.loader { width: 100%; height: 100%; border: 4px solid rgba(255, 255, 255, 0.05); border-top-color: #F7931A; border-radius: 50%; animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite; }

.modal-close {
    position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: var(--text-3);
    font-size: 2rem; cursor: pointer; z-index: 10; transition: 0.3s; line-height: 1;
}
.modal-close:hover { color: #fff; transform: scale(1.2); }

.fade-in { animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.btn-cat {
    background: transparent; color: var(--text-2); border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem; border-radius: 16px; font-size: 0.9rem; font-weight: 700; cursor: pointer;
    transition: 0.3s;
}
.btn-cat:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }
.pulse { animation: pulseGlowBtn 2s infinite; }
@keyframes pulseGlowBtn { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }