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

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0b0e14;
    color: #dbe6f3;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SCREENS ===== */
.screen { display: none; }
.screen.active { display: block; }

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.25rem;
    cursor: pointer;
}

.logo-icon { font-size: 1.5rem; }

.logo-text {
    background: linear-gradient(135deg, var(--red-600), var(--green-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge { font-size: 0.9rem; }

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

.nav-link {
    text-decoration: none;
    color: rgba(200, 215, 240, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-link:hover {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
}

.nav-link.active {
    color: #00ff9c;
    background: rgba(0, 255, 156, 0.12);
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #0a0d14;
    color: #00f0ff !important;
    border: 1px solid rgba(0, 240, 255, 0.4);
    padding: 8px 16px;
}

.cart-link:hover {
    background: var(--gray-800) !important;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background: var(--red-500);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0 6px;
}

/* ===== LANG SELECT ===== */
.lang-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 6px 28px 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    color: #cfe4ff;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    background: #0a0d14;
    cursor: pointer;
    transition: border-color 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300f0ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    margin-left: 8px;
}

.lang-select:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0b1020 0%, #0e1526 40%, #0d1222 70%, #0c0f1b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239,68,68,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.12);
    color: #00f0ff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 240, 255, 0.4);
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: #f2f7ff;
    text-shadow: 0 0 24px rgba(0, 240, 255, 0.15);
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(190, 205, 230, 0.9);
    max-width: 480px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-features span {
    font-size: 0.85rem;
    color: #cfe4ff;
    background: rgba(20, 26, 42, 0.6);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyber-badge {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 30%, #0d1424, #05070d 72%);
    border: 2px solid #00f0ff;
    box-shadow: 0 0 22px rgba(0,240,255,0.45), 0 0 52px rgba(255,0,234,0.18), inset 0 0 34px rgba(0,240,255,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: cybershine 4s ease-in-out infinite;
}

.cyber-ring { position: absolute; inset: 0; border-radius: 50%; z-index: 0; }

.cyber-ring::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #00f0ff;
    border-right-color: #00f0ff;
    box-shadow: 0 0 14px rgba(0,240,255,0.7);
    animation: cyberspin 5s linear infinite;
}

.cyber-ring-inner::before {
    inset: 34px;
    border: 2px solid transparent;
    border-left-color: #ff00ea;
    border-bottom-color: #ff00ea;
    box-shadow: 0 0 12px rgba(255,0,234,0.6);
    animation: cyberspinrev 3.4s linear infinite;
}

.cyber-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    top: -30%;
    background: linear-gradient(90deg, transparent, #00f0ff 38%, #ff00ea 60%, #00f0ff 78%, transparent);
    box-shadow: 0 0 10px rgba(0,240,255,0.9);
    opacity: 0.85;
    z-index: 0;
    animation: cyberscan 2.6s linear infinite;
}

.cyber-text {
    display: inline-block;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #00f0ff;
    text-shadow: 0 0 9px rgba(0,240,255,0.85), 1px 0 0 #ff00ea, -1px 0 0 #00ffb0;
}

.cyber-text::before,
.cyber-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    pointer-events: none;
}

.cyber-text.glitch::before {
    opacity: 1;
    color: #ff00ea;
    clip-path: polygon(0 0, 100% 34%, 0 40%, 100% 6%);
    animation: glitchslice1 0.14s steps(2) infinite;
}

.cyber-text.glitch::after {
    opacity: 1;
    color: #00ffb0;
    clip-path: polygon(0 62%, 100% 100%, 100% 66%, 0 100%);
    animation: glitchslice2 0.11s steps(2) infinite;
}

.cyber-text.glitch {
    color: #eaffff;
    animation: glitchhull 0.09s steps(2) infinite;
}

.cyber-version {
    position: absolute;
    left: 50%;
    bottom: 14%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: #ff00ea;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    z-index: 1;
    animation: cyberblink 1.1s steps(2) infinite;
}

@keyframes cybershine {
    0%, 100% { box-shadow: 0 0 22px rgba(0,240,255,0.45), 0 0 52px rgba(255,0,234,0.18), inset 0 0 34px rgba(0,240,255,0.12); }
    50% { box-shadow: 0 0 34px rgba(0,240,255,0.75), 0 0 80px rgba(255,0,234,0.35), inset 0 0 44px rgba(0,240,255,0.2); }
}

@keyframes cyberspin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@keyframes cyberspinrev { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

@keyframes cyberscan { from { top: -30%; } to { top: 130%; } }

@keyframes cyberblink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

@keyframes glitchhull {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-3px, 0); }
    50% { transform: translate(2px, 1px); }
    75% { transform: translate(-1px, 0); }
    100% { transform: translate(0, 0); }
}

@keyframes glitchslice1 {
    0% { transform: translate(-4px, 0); }
    50% { transform: translate(3px, -1px); }
    100% { transform: translate(-2px, 1px); }
}

@keyframes glitchslice2 {
    0% { transform: translate(4px, 1px); }
    50% { transform: translate(-3px, 0); }
    100% { transform: translate(2px, -1px); }
}

/* ===== SECTION ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: #dff1ff;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.12);
}

.section-header p {
    color: rgba(190, 205, 230, 0.85);
    font-size: 1rem;
}

.products { padding: 80px 0; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: linear-gradient(180deg, #0d1117, #161d2b);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.12), 0 0 28px rgba(255, 43, 214, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.25);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.product-card[data-category="stimulant"]::before { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.product-card[data-category="dissociatif"]::before { background: linear-gradient(90deg, #8b5cf6, #6366f1); }
.product-card[data-category="cannabis"]::before { background: linear-gradient(90deg, #22c55e, #16a34a); }
.product-card[data-category="psychedelique"]::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.product-card[data-category="empathogene"]::before { background: linear-gradient(90deg, #f97316, #f59e0b); }
.product-card[data-category="edible"]::before { background: linear-gradient(90deg, #38bdf8, #818cf8); }

.product-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
    animation: cardScan 3s linear infinite;
}

@keyframes cardScan {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.6; }
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.35), 0 0 55px rgba(255, 43, 214, 0.15);
    border-color: #00f0ff;
}

.product-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.badge-stimulant { background: #fef3c7; color: #92400e; }
.badge-dissociatif { background: #ede9fe; color: #5b21b6; }
.badge-cannabis { background: #dcfce7; color: #166534; }
.badge-psychedelique { background: #fce7f3; color: #9d174d; }
.badge-empathogene { background: #ffedd5; color: #9a3412; }
.badge-edible { background: #dbeafe; color: #0369a1; }

.product-emoji { font-size: 2.5rem; margin-bottom: 8px; }

.product-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 2px; color: #e6f7ff; }

.product-desc { font-size: 0.82rem; color: rgba(180, 195, 220, 0.85); margin-bottom: 12px; }

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.product-price { font-size: 1.4rem; font-weight: 800; color: #00ff9c; text-shadow: 0 0 10px rgba(0, 255, 156, 0.5); }

.product-price-unit { font-size: 0.85rem; color: rgba(180, 195, 220, 0.8); }

.product-discount-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--red-100);
    color: var(--red-600);
    margin-left: 6px;
}

.product-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-qty-row label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
}

.product-qty-row select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s;
}

.product-qty-row select:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

.product-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 12px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.product-total-label { font-size: 0.85rem; color: rgba(180, 195, 220, 0.8); }

.product-total-price { font-size: 1.1rem; font-weight: 700; color: #00ff9c; text-shadow: 0 0 8px rgba(0, 255, 156, 0.45); }

.product-total-price.has-discount { color: #ff2bd6; text-shadow: 0 0 8px rgba(255, 43, 214, 0.45); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: var(--green-600);
    color: white;
}

.btn-primary:hover {
    background: var(--green-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active { transform: translateY(0); }

.btn-block { width: 100%; }

.btn-lg { padding: 14px 24px; font-size: 1rem; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--blue-500);
    color: var(--blue-600);
    background: var(--blue-50);
}

.btn-sm { padding: 6px 12px; font-size: 0.8rem; }

/* ===== CART OVERLAY ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 200;
    display: none;
    backdrop-filter: blur(4px);
}

.cart-overlay.open { display: block; }

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #0c1018, #111827);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 201;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.cart-header h2 { font-size: 1.15rem; font-weight: 700; color: #dff1ff; }

.cart-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #cfe4ff;
    border-radius: 8px;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-close:hover { background: rgba(0, 240, 255, 0.2); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    text-align: center;
    color: rgba(180, 195, 220, 0.7);
    padding: 60px 0;
    font-size: 0.95rem;
}

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

.cart-item-info { flex: 1; }

.cart-item-name { font-weight: 600; font-size: 0.9rem; color: #dff1ff; }

.cart-item-meta { font-size: 0.8rem; color: rgba(180, 195, 220, 0.75); }

.cart-item-right { text-align: right; }

.cart-item-price { font-weight: 700; font-size: 1rem; color: #00ff9c; text-shadow: 0 0 8px rgba(0, 255, 156, 0.4); }

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(180, 195, 220, 0.7);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    color: #ff2bd6;
    background: rgba(255, 43, 214, 0.1);
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(13, 18, 28, 0.9);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #dff1ff;
}

.cart-total span:last-child {
    font-size: 1.3rem;
    color: #00ff9c;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.5);
}

/* ===== PAYMENT SCREENS ===== */
.payment-container, .payment-detail, .confirmation-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    font-family: inherit;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.btn-back:hover { color: var(--gray-900); }

.payment-header {
    text-align: center;
    margin-bottom: 32px;
}

.payment-header h2 { font-size: 1.6rem; font-weight: 800; }

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-option:hover {
    border-color: var(--green-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.payment-option-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-option-info { flex: 1; }

.payment-option-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-option-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--green-100);
    color: var(--green-800);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.payment-option-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.payment-option-arrow {
    font-size: 1.3rem;
    color: var(--gray-400);
    transition: transform 0.2s;
}

.payment-option:hover .payment-option-arrow {
    transform: translateX(4px);
    color: var(--green-600);
}

/* Order summary */
.payment-order-summary {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.payment-order-summary h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-700);
}

.payment-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
}

.payment-summary-item:last-child { border-bottom: none; }

.payment-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px solid var(--gray-200);
    margin-top: 8px;
    font-size: 1.15rem;
    font-weight: 700;
}

.payment-total span:last-child { color: var(--green-700); }

/* Payment detail pages */
.payment-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-detail-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-detail-header h2 { font-size: 1.4rem; font-weight: 800; }

.payment-instructions {
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--green-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-input {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

.form-textarea { resize: vertical; min-height: 80px; }

.btn-encrypt {
    width: 100%;
    padding: 12px;
}

.encrypt-status {
    font-size: 0.8rem;
    margin-top: 2px;
}

.encrypt-status.success { color: var(--green-600); }
.encrypt-status.error { color: var(--red-500); }

/* Crypto methods */
.crypto-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.crypto-method {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
}

.crypto-method h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.crypto-method p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.btc-address {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 8px;
}

.btc-address code {
    font-size: 0.75rem;
    word-break: break-all;
    flex: 1;
    color: var(--gray-700);
}

.crypto-tip {
    font-size: 0.8rem;
    color: var(--amber-500);
}

.crypto-method .instruction-step { margin-top: 8px; }

/* Confirmation */
.confirmation-container {
    text-align: center;
    padding: 80px 0;
}

.confirmation-icon { font-size: 4rem; margin-bottom: 16px; }

.confirmation-container h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.confirmation-container > p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.confirmation-details {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.confirmation-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.confirmation-line:last-child { border-bottom: none; }

.confirmation-line span:first-child { color: var(--gray-500); }
.confirmation-line span:last-child { font-weight: 700; }

/* ===== DARK THEME OVERRIDES ===== */
.payment-option {
    background: linear-gradient(180deg, #10151f, #141b2e);
    border: 2px solid rgba(0, 240, 255, 0.3);
}

.payment-option:hover {
    border-color: #00f0ff;
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.3), 0 0 32px rgba(255, 43, 214, 0.12);
}

.payment-option-icon { background: rgba(0, 240, 255, 0.12); }

.payment-option-title { color: #dff1ff; }

.payment-option-desc { color: rgba(180, 195, 220, 0.8); }

.payment-option-arrow { color: rgba(0, 240, 255, 0.6); }

.payment-option:hover .payment-option-arrow { color: #00f0ff; }

.payment-option-badge {
    background: rgba(0, 255, 156, 0.12);
    color: #00ff9c;
}

.payment-order-summary {
    background: linear-gradient(180deg, #10151f, #141b2e);
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.payment-order-summary h3 { color: rgba(200, 215, 240, 0.9); }

.payment-summary-item { color: rgba(190, 205, 230, 0.9); }

.payment-total span:last-child { color: #00ff9c; text-shadow: 0 0 10px rgba(0, 255, 156, 0.45); }

.payment-instructions {
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.payment-instructions .instruction-step { color: rgba(200, 215, 240, 0.9); }

.payment-detail-header h2 { color: #dff1ff; }

.payment-detail-icon { background: rgba(0, 240, 255, 0.12); }

.btn-back { color: rgba(180, 195, 220, 0.8); }

.btn-back:hover { color: #00f0ff; }

.form-input {
    padding: 12px 16px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #0a0d14;
    color: #cfe4ff;
}

.form-input:focus {
    outline: none;
    border-color: #00f0ff;
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}

.form-group label { color: rgba(200, 215, 240, 0.9); }

.payment-header h2 { color: #dff1ff; }

.step-num {
    background: #00f0ff;
    color: #0a0d14;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.crypto-tip { color: #fbbf24; text-shadow: 0 0 6px rgba(251, 191, 36, 0.3); }

.btn-encrypt {
    background: transparent;
    border: 2px solid #00f0ff;
    color: #00f0ff;
}

.confirmation-container h2 { color: #dff1ff; text-shadow: 0 0 14px rgba(0, 240, 255, 0.15); }

.confirmation-container > p { color: rgba(190, 205, 230, 0.85); }

.checkoutBtn { border-color: #00ff9c; }

.crypto-method {
    background: linear-gradient(180deg, #10151f, #141b2e);
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.crypto-method h3 { color: #dff1ff; }

.crypto-method p { color: rgba(180, 195, 220, 0.8); }

.btc-address {
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.btc-address code { color: #cfe4ff; }

.confirmation-details {
    background: linear-gradient(180deg, #10151f, #141b2e);
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.confirmation-line span:first-child { color: rgba(180, 195, 220, 0.8); }

.contact-container { max-width: 640px; margin: 0 auto; padding: 40px 0; }

.contact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background: rgba(0, 240, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-header h2 { font-size: 1.4rem; font-weight: 800; color: #dff1ff; }

.contact-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-body p { color: rgba(190, 205, 230, 0.85); }

.contact-telegram {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #10151f, #141b2e);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-telegram:hover {
    border-color: #00f0ff;
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.3), 0 0 32px rgba(255, 43, 214, 0.12);
    transform: translateY(-2px);
}

.contact-telegram-icon { font-size: 1.6rem; }

.contact-telegram span:nth-child(2) { color: #dff1ff; font-weight: 600; }

.contact-telegram-handle {
    color: #00f0ff;
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.pay-method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(180deg, #10151f, #141b2e);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    transition: all 0.2s;
}

.pay-method:hover {
    border-color: #00f0ff;
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
}

.pay-method-icon {
    font-size: 1.7rem;
    width: 52px;
    height: 52px;
    background: rgba(0, 240, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pay-method-info { flex: 1; }

.pay-method-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #dff1ff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.pay-method-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(0, 255, 156, 0.12);
    color: #00ff9c;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pay-method-crypto .pay-method-icon { background: rgba(255, 43, 214, 0.14); }
.pay-method-twint .pay-method-icon { background: rgba(0, 255, 156, 0.14); }
.pay-method-cryptonow .pay-method-icon { background: rgba(0, 240, 255, 0.14); }

.pay-method-desc { font-size: 0.85rem; color: rgba(180, 195, 220, 0.85); }

.pay-safe {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, rgba(0, 255, 156, 0.1), rgba(0, 240, 255, 0.06));
    border: 2px solid rgba(0, 255, 156, 0.45);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    color: #dff1ff;
    font-weight: 700;
}

.pay-safe-icon { font-size: 1.6rem; }

.pay-safe strong {
    color: #00ff9c;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(0, 255, 156, 0.5);
}

.suisse-highlight {
    color: #00ff9c;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.45);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--gray-900);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-xl);
    z-index: 300;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }

    .hero-features { justify-content: center; }

    .hero-content h1 { font-size: 2rem; }

    .cyber-badge { width: 172px; height: 172px; }

    .products-grid { grid-template-columns: 1fr; }

    .nav { gap: 4px; }

    .nav-link { font-size: 0.78rem; padding: 6px 9px; }

    .header-inner { height: 60px; }

    .cart-panel { width: 100vw; }

    .section-header h2 { font-size: 1.4rem; }

    .payment-option { padding: 14px; }

    .product-card { padding: 18px; }

    .product-emoji { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .nav-link {
        font-size: 0.72rem;
        padding: 7px 8px;
        flex: 1;
    }

    .nav {
        width: 100%;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 16px;
    }

    .lang-select { font-size: 0.75rem; }

    .hero { padding: 40px 0 32px; }

    .hero-content h1 { font-size: 1.7rem; }

    .hero-features span { font-size: 0.75rem; padding: 7px 12px; }

    .products { padding: 48px 0; }

    .product-card { padding: 16px; }

    .product-qty-row select { padding: 10px; }

    .btn { padding: 12px 18px; }

    .btn-lg { padding: 14px 20px; font-size: 0.95rem; }

    .cart-panel { width: 100vw; }

    .cart-item { padding: 14px 0; }

    .payment-container, .payment-detail, .confirmation-container, .contact-container { padding: 24px 0; }

    .payment-detail-header h2 { font-size: 1.2rem; }

    .form-input { padding: 11px 14px; font-size: 0.9rem; }

    .confirmation-icon { font-size: 3rem; }

    .section-header { margin-bottom: 28px; }

    .section-header p { font-size: 0.88rem; }
}