/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-user-select: none; user-select: none; }
input, textarea, .legal-content, .faq-answer, .page-content p { -webkit-user-select: text; user-select: text; }

:root {
    --bg:        #0a0a0a;
    --bg-card:   #111111;
    --bg-raised: #161616;
    --bg-input:  #1a1a1a;
    --border:    #222222;
    --border-hover: #333333;
    --text:      #e5e5e5;
    --text-dim:  #777777;
    --text-muted:#555555;
    --accent:    #e87b35;
    --accent-dim:rgba(232,123,53,0.12);
    --accent-glow:rgba(232,123,53,0.25);
    --green:     #34d399;
    --radius:    12px;
    --radius-sm: 8px;
    --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }
img { display: block; max-width: 100%; }
.hidden { display: none !important; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }

/* ========== HEADER ========== */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    object-fit: contain;
}
.logo-text { font-weight: 700; font-size: 18px; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 32px; }
.nav-link {
    font-size: 14px; font-weight: 500; color: var(--text-dim);
    transition: color var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--accent); border-radius: 1px;
}
.cart-btn {
    position: relative; background: var(--bg-raised); border: 1px solid var(--border);
    color: var(--text); width: 40px; height: 40px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.cart-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-count {
    position: absolute; top: -6px; right: -6px;
    background: var(--accent); color: #000;
    font-size: 11px; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ========== HERO ========== */
.hero {
    position: relative; overflow: hidden;
    padding: 160px 24px 100px;
    display: flex; justify-content: center;
}
.hero-banner {
    position: absolute; inset: 0; z-index: 0;
}
.hero-banner img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.25;
}
.hero-banner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 30%, transparent 60%, var(--bg) 100%);
}
.hero-glow {
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none; opacity: 0.4; z-index: 1;
}
.hero-content {
    position: relative; z-index: 2; max-width: 680px; text-align: center;
}
.hero-badge {
    display: inline-block;
    background: var(--accent-dim); color: var(--accent);
    font-size: 13px; font-weight: 600;
    padding: 6px 16px; border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(232,123,53,0.2);
}
.hero-title {
    font-size: 52px; font-weight: 800; line-height: 1.1;
    letter-spacing: -1.5px; margin-bottom: 20px;
}
.text-accent { color: var(--accent); }
.hero-sub {
    font-size: 17px; color: var(--text-dim);
    max-width: 500px; margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 56px; }
.btn-primary {
    background: var(--accent); color: #000;
    font-weight: 600; font-size: 14px;
    padding: 12px 28px; border-radius: var(--radius-sm); border: none;
    transition: all var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #f59042; transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-ghost {
    color: var(--text-dim); font-weight: 500; font-size: 14px;
    padding: 12px 20px; border: none; background: none;
    transition: color var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { color: var(--text); }
.btn-ghost i { font-size: 12px; transition: transform var(--transition); }
.btn-ghost:hover i { transform: translateX(4px); }

.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 40px;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-number { font-size: 24px; font-weight: 700; }
.stat-label { font-size: 13px; color: var(--text-dim); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ========== SECTIONS ========== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
    display: inline-block;
    font-size: 13px; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 36px; font-weight: 800; letter-spacing: -1px;
    margin-bottom: 48px;
}

/* ========== HOW IT WORKS ========== */
.how-section { padding: 100px 24px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px 28px;
    position: relative; overflow: hidden;
    transition: all var(--transition);
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-number {
    position: absolute; top: 16px; right: 20px;
    font-size: 48px; font-weight: 900; color: var(--bg-raised);
    line-height: 1;
}
.step-icon {
    width: 48px; height: 48px;
    background: var(--accent-dim);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: var(--accent); font-size: 20px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ========== OFFERS / FILTER ========== */
.offers-section { padding: 100px 24px; }
.filter-bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-bottom: 36px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px 20px;
}
.filter-tags {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.filter-tag {
    background: var(--bg-input); border: 1px solid var(--border);
    color: var(--text-dim); font-family: var(--font); font-size: 13px;
    font-weight: 500; padding: 8px 18px; border-radius: 20px;
    cursor: pointer; transition: all var(--transition);
}
.filter-tag:hover { border-color: var(--border-hover); color: var(--text); }
.filter-tag.active {
    background: var(--accent); border-color: var(--accent);
    color: #fff; font-weight: 600;
}
.search-box {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-input); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 0 16px;
    transition: border-color var(--transition);
}
.search-box:focus-within { border-color: var(--accent); }
.search-box i { color: var(--text-muted); font-size: 14px; }
.search-box input {
    background: none; border: none; color: var(--text);
    font-family: var(--font); font-size: 14px;
    padding: 10px 0; outline: none; width: 180px;
}
.search-box input::placeholder { color: var(--text-muted); }

/* ========== PRODUCTS GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.product-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: all var(--transition); position: relative;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.product-card .img-wrap {
    position: relative; overflow: hidden;
    background: var(--bg-raised);
}
.product-card .img-wrap img {
    width: 100%; height: 190px; object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card .card-body { padding: 20px; }
.product-card .card-points {
    font-size: 15px; font-weight: 700; color: var(--accent);
    margin-bottom: 16px; display: flex; align-items: center; gap: 6px;
}
.product-card .card-bottom {
    display: flex; align-items: center; justify-content: space-between;
}
.product-card .card-price {
    font-size: 22px; font-weight: 800;
}
.product-card .card-price span { font-size: 14px; font-weight: 400; color: var(--text-dim); }
.add-btn {
    width: 38px; height: 38px;
    background: var(--accent); color: #000;
    border: none; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: all var(--transition);
}
.add-btn:hover { background: #f59042; transform: scale(1.1); }
.add-btn.added { background: var(--green); }

/* ========== FAQ ========== */
.faq-section { padding: 100px 24px; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    cursor: pointer; transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; font-weight: 600; font-size: 15px;
}
.faq-question i {
    font-size: 12px; color: var(--text-muted);
    transition: transform var(--transition);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

/* ========== FOOTER ========== */
.footer {
    border-top: 1px solid var(--border);
    padding: 64px 24px 32px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--text-dim); margin-top: 16px; line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.footer-col a {
    font-size: 14px; color: var(--text-dim);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 24px;
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ========== MODALS ========== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    animation: fadeIn 0.2s ease;
}
.modal-panel {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; width: 100%;
    animation: slideUp 0.3s ease;
}
.cart-panel { max-width: 520px; max-height: 80vh; display: flex; flex-direction: column; }
.checkout-panel { max-width: 440px; }
.success-panel { max-width: 400px; text-align: center; padding: 48px 36px; }
.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 18px; font-weight: 700; }
.modal-close {
    background: none; border: none; color: var(--text-dim);
    font-size: 18px; transition: color var(--transition);
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 24px; overflow-y: auto; flex: 1; }
.modal-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.full-width { width: 100%; justify-content: center; }

/* Cart items */
.cart-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
    width: 52px; height: 52px; border-radius: var(--radius-sm);
    object-fit: cover; background: var(--bg-raised);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; }
.cart-item-pts { font-size: 12px; color: var(--accent); }
.cart-item-price { font-size: 16px; font-weight: 700; white-space: nowrap; }
.qty-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn {
    width: 26px; height: 26px; border-radius: 6px;
    background: var(--bg-raised); border: 1px solid var(--border);
    color: var(--text); font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-val { min-width: 20px; text-align: center; font-weight: 600; font-size: 14px; }
.remove-btn {
    background: none; border: none; color: var(--text-muted);
    font-size: 14px; transition: color var(--transition); margin-left: 8px;
}
.remove-btn:hover { color: #ef4444; }
.cart-total-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.cart-total-row span:first-child { font-size: 15px; color: var(--text-dim); }
.cart-total-price { font-size: 22px; font-weight: 800; }
.empty-state {
    text-align: center; padding: 40px 20px; color: var(--text-muted);
}
.empty-state i { font-size: 36px; margin-bottom: 12px; display: block; }
.empty-state h4 { font-size: 15px; font-weight: 600; color: var(--text-dim); margin-bottom: 4px; }

/* Checkout form */
.checkout-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dim); }
.form-group input, .form-group select {
    background: var(--bg-input); border: 1px solid var(--border);
    color: var(--text); font-family: var(--font); font-size: 14px;
    padding: 11px 14px; border-radius: var(--radius-sm);
    outline: none; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus { border-color: var(--accent); }
.form-group input::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card); }
.checkout-actions { display: flex; gap: 12px; padding-top: 8px; }
.btn-ghost-sm {
    flex: 1; background: var(--bg-raised); border: 1px solid var(--border);
    color: var(--text-dim); font-weight: 600; font-size: 14px;
    padding: 12px; border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.btn-ghost-sm:hover { border-color: var(--border-hover); color: var(--text); }
.checkout-actions .btn-primary { flex: 1; }

/* Success modal */
.success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(52,211,153,0.12); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 24px;
}
.success-panel h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.success-panel > p { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }
.order-code-box {
    background: var(--bg-raised); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px;
    margin-bottom: 24px;
    display: flex; flex-direction: column; gap: 4px;
}
.order-code-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.order-code-value { font-size: 20px; font-weight: 700; font-family: monospace; letter-spacing: 2px; }

/* Notification */
.notification {
    position: fixed; top: 80px; right: 24px; z-index: 300;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 14px 20px;
    font-size: 14px; font-weight: 500;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: slideInRight 0.3s ease;
}
.notification.success { border-left: 3px solid var(--green); }
.notification.success i { color: var(--green); }
.notification.info { border-left: 3px solid var(--accent); }
.notification.info i { color: var(--accent); }

/* Loading */
.loading { display: flex; justify-content: center; padding: 40px; }
.loading-spinner {
    width: 32px; height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ========== MOBILE MENU ========== */
.nav-right { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
    display: none; width: 36px; height: 36px;
    background: var(--bg-raised); border: 1px solid var(--border);
    border-radius: var(--radius-sm); flex-direction: column;
    align-items: center; justify-content: center; gap: 5px;
    cursor: pointer; transition: all var(--transition);
}
.menu-toggle span {
    display: block; width: 18px; height: 2px;
    background: var(--text); border-radius: 1px;
    transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
    position: fixed; inset: 0; top: 64px; z-index: 99;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    animation: fadeIn 0.2s ease;
}
.mobile-menu-content {
    display: flex; flex-direction: column; padding: 24px;
}
.mobile-link {
    font-size: 20px; font-weight: 600; color: var(--text);
    padding: 16px 0; border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}
.mobile-link:hover { color: var(--accent); }
.mobile-divider { height: 1px; background: var(--border); margin: 12px 0; }
.mobile-link-sm {
    font-size: 14px; color: var(--text-dim); padding: 10px 0;
    transition: color var(--transition);
}
.mobile-link-sm:hover { color: var(--text); }

/* ========== DISCORD AUTH ========== */
.user-area { position: relative; display: flex; align-items: center; }
.discord-login-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 8px;
    background: #5865F2; color: #fff; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
}
.discord-login-btn:hover { background: #4752c4; transform: translateY(-1px); }
.discord-login-btn i { font-size: 16px; }
.user-profile {
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; padding: 4px 12px 4px 4px;
    border-radius: 20px; border: 1px solid var(--border);
    transition: border-color 0.2s;
}
.user-profile:hover { border-color: var(--accent); }
.user-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.user-name { font-size: 13px; font-weight: 600; color: var(--text); }
.user-menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 10px; padding: 8px; min-width: 180px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 100;
}
.user-menu a, .user-menu button {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 10px 14px; border-radius: 6px; font-size: 13px;
    color: var(--text-dim); text-decoration: none;
    background: none; border: none; cursor: pointer;
    font-family: var(--font); transition: all 0.15s;
}
.user-menu a:hover, .user-menu button:hover { background: var(--bg-raised); color: var(--text); }
.user-menu button { color: #e74c3c; }
.user-menu button:hover { background: rgba(231,76,60,0.1); }

/* ========== FIDELITY PROGRAM ========== */
.fidelity-section { padding: 100px 24px 60px; }
.fidelity-img-wrap {
    max-width: 500px;
    margin: 32px auto 0;
    background: var(--bg);
}
.fidelity-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== CHECKOUT PAGE ========== */
.checkout-page-form { margin-top: 32px; }
.checkout-section-title {
    font-size: 18px; font-weight: 700; color: var(--text);
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.payment-option input { display: none; }
.payment-option-card {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 20px; border-radius: var(--radius);
    background: var(--bg-input); border: 2px solid var(--border);
    cursor: pointer; transition: all var(--transition);
    font-size: 16px; font-weight: 600; color: var(--text-dim);
}
.payment-option-card i { font-size: 24px; }
.payment-option-card:hover { border-color: var(--border-hover); color: var(--text); }
.payment-option input:checked + .payment-option-card {
    border-color: var(--accent); color: var(--accent);
    background: rgba(232, 123, 53, 0.06);
}
.checkout-terms { margin-bottom: 24px; }
.checkbox-label {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-dim); cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: var(--accent); border-radius: 4px;
    cursor: pointer; flex-shrink: 0;
}
.checkout-total-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border);
    margin-bottom: 20px;
}
.total-label { font-size: 16px; font-weight: 600; color: var(--text); }
.total-price { font-size: 28px; font-weight: 800; color: var(--accent); }
.checkout-submit { padding: 16px 32px; font-size: 16px; width: 100%; }
.checkout-secure {
    text-align: center; font-size: 13px; color: var(--text-muted);
    margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.recap-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.recap-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px; border-radius: var(--radius-sm);
    background: var(--bg-card); border: 1px solid var(--border);
}
.recap-img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.recap-info { flex: 1; }
.recap-name { font-size: 14px; font-weight: 600; color: var(--text); }
.recap-qty { font-size: 13px; color: var(--text-dim); }
.recap-price { font-size: 15px; font-weight: 700; color: var(--accent); }
.empty-checkout { color: var(--text-dim); text-align: center; padding: 40px 0; }
.checkout-success { text-align: center; padding: 40px 0; }
.checkout-success h2 { font-size: 24px; margin: 16px 0 8px; color: var(--text); }
.checkout-success p { color: var(--text-dim); margin-bottom: 24px; }
.loading-spinner-sm {
    display: inline-block; width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== ORDER TRACKING ========== */
.order-tracking { padding-top: 20px; }
.order-header h2 { font-size: 22px; font-weight: 700; color: var(--text); display: flex; align-items: center; }
.order-meta { margin-top: 8px; display: flex; gap: 16px; font-size: 13px; color: var(--text-dim); }
.order-meta strong { color: var(--text); }
.order-progress {
    display: flex; align-items: center; justify-content: center;
    padding: 40px 0; gap: 0; margin: 24px 0;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
}
.progress-step {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    min-width: 80px;
}
.progress-step span { font-size: 11px; color: var(--text-muted); text-align: center; }
.step-circle {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-input); border: 2px solid var(--border);
    color: var(--text-muted); font-size: 14px; transition: all 0.3s ease;
}
.progress-step.completed .step-circle {
    background: var(--accent); border-color: var(--accent); color: #fff;
}
.progress-step.active .step-circle {
    background: transparent; border-color: var(--accent); color: var(--accent);
}
.progress-step.completed span, .progress-step.active span { color: var(--text); }
.progress-line {
    width: 40px; height: 2px; background: var(--border); flex-shrink: 0;
}
.progress-line.completed { background: var(--accent); }
.progress-line.active { background: linear-gradient(90deg, var(--accent), var(--border)); }
.order-timeline { margin: 24px 0; }
.timeline-entry {
    display: flex; align-items: baseline; gap: 20px;
    padding: 14px 0; border-bottom: 1px solid var(--border);
}
.timeline-entry:last-child { border-bottom: none; }
.timeline-date { font-size: 12px; color: var(--text-muted); min-width: 120px; flex-shrink: 0; }
.timeline-text { font-size: 14px; color: var(--text-dim); }
.timeline-text.success { color: var(--accent); }
.timeline-text strong { color: var(--text); }
.order-item-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
}
.oic-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; gap: 16px;
}
.oic-name { font-size: 15px; font-weight: 600; color: var(--text); }
.oic-id { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.oic-price { font-size: 18px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.oic-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; background: var(--bg-raised);
    border-top: 1px solid var(--border); font-size: 13px; color: var(--text-dim);
}
.oic-chat {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 6px;
    background: #5865F2; color: #fff; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: opacity 0.2s;
}
.oic-chat:hover { opacity: 0.85; }
.order-status-msg { margin-top: 24px; }
.status-pending {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px; border-radius: 12px;
    background: rgba(232, 123, 53, 0.08); border: 1px solid rgba(232, 123, 53, 0.2);
    color: var(--accent); font-size: 14px; font-weight: 500;
}
.status-pending i { font-size: 18px; }
.status-done {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px; border-radius: 12px;
    background: rgba(46, 204, 113, 0.08); border: 1px solid rgba(46, 204, 113, 0.2);
    color: #2ecc71; font-size: 14px; font-weight: 500;
}
.status-done i { font-size: 18px; }

.delivery-code-box {
    margin-top: 16px; padding: 20px 24px; border-radius: 12px;
    background: rgba(232, 123, 53, 0.06); border: 1px solid rgba(232, 123, 53, 0.25);
    text-align: center;
}
.delivery-code-label {
    display: block; font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px;
}
.delivery-code-value {
    font-size: 20px; font-weight: 800; color: #fff; background: #1a1a1a;
    padding: 14px 24px; border-radius: 8px; display: inline-block;
    letter-spacing: 1px; word-break: break-all; user-select: all;
    border: 1px solid #2a2a2a;
}

/* ========== ORDERS LIST ========== */
.order-list-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; gap: 16px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; cursor: pointer;
    transition: all 0.2s ease; margin-bottom: 12px;
}
.order-list-item:hover {
    border-color: var(--accent); transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.oli-left { flex: 1; min-width: 0; }
.oli-code { font-size: 15px; font-weight: 700; color: var(--accent); }
.oli-items { font-size: 13px; color: var(--text-dim); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.oli-date { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.oli-right { text-align: right; flex-shrink: 0; }
.oli-price { font-size: 18px; font-weight: 700; color: var(--text); }
.ol-status {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; margin-top: 6px;
    padding: 4px 10px; border-radius: 20px;
}
.ol-status.pending { background: rgba(232,123,53,0.1); color: var(--accent); }
.ol-status.done { background: rgba(46,204,113,0.1); color: #2ecc71; }

/* ========== PAYMENT CHAT ========== */
.payment-chat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 24px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}
.chat-header {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--bg-raised), var(--bg-card));
    border-bottom: 1px solid var(--border);
}
.chat-bot-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(232, 123, 53, 0.3);
}
.chat-bot-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-bot-info { display: flex; flex-direction: column; }
.chat-bot-name { font-size: 16px; font-weight: 700; color: var(--text); }
.chat-bot-status { font-size: 12px; color: #4caf50; display: flex; align-items: center; gap: 5px; }
.chat-bot-status i { font-size: 7px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.chat-messages {
    padding: 28px; min-height: 200px; max-height: 420px; overflow-y: auto;
    display: flex; flex-direction: column; gap: 16px;
    background: radial-gradient(ellipse at top, rgba(232,123,53,0.02), transparent);
}
.chat-msg {
    display: flex; gap: 12px; align-items: flex-end;
    animation: msgSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.chat-msg-avatar {
    width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
    overflow: hidden;
}
.chat-msg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-msg-bubble {
    background: var(--bg-raised); border: 1px solid var(--border);
    border-radius: 16px; border-bottom-left-radius: 4px;
    padding: 14px 18px; font-size: 14px; color: var(--text);
    line-height: 1.6; max-width: 80%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.chat-msg-bubble strong { color: var(--accent); font-weight: 700; }
.chat-actions {
    padding: 24px 28px; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 14px;
    background: var(--bg-raised);
    animation: msgSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-paypal {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 16px 28px; border-radius: 12px; font-size: 16px; font-weight: 700;
    background: linear-gradient(135deg, #0070ba, #003087);
    color: #fff; text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 112, 186, 0.3);
}
.btn-paypal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 112, 186, 0.4);
}
.btn-paypal i { font-size: 22px; }
#paidBtn {
    border-radius: 12px; padding: 16px 28px; font-size: 16px; font-weight: 700;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none; color: #fff; cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(46, 204, 113, 0.3);
}
#paidBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(46, 204, 113, 0.4);
}
.chat-hint {
    font-size: 12px; color: var(--text-muted); text-align: center;
    line-height: 1.6; padding: 0 12px;
}
@keyframes msgSlide {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== TRUST BAR ========== */
.trust-section { padding: 40px 24px 0; }
.trust-bar {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
    padding: 28px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border);
}
.trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 500; color: var(--text-dim);
}
.trust-item i { color: var(--accent); font-size: 18px; }

/* ========== REVIEWS ========== */
.reviews-section { padding: 100px 24px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    transition: all var(--transition);
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; display: flex; gap: 2px; }
.review-card p {
    font-size: 15px; line-height: 1.7; color: var(--text-dim);
    margin-bottom: 20px; font-style: italic;
}
.review-author { display: flex; justify-content: space-between; align-items: center; }
.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--text-muted); }

/* ========== CHECKOUT SUMMARY ========== */
.checkout-summary {
    background: var(--bg-raised); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px; margin-bottom: 8px;
}
.checkout-summary-title {
    font-size: 13px; font-weight: 600; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
}
.checkout-summary-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; font-size: 14px;
}
.checkout-summary-item span:first-child { color: var(--text-dim); }
.checkout-summary-item span:last-child { font-weight: 600; }
.checkout-summary-total {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 10px; margin-top: 10px; border-top: 1px solid var(--border);
    font-weight: 700; font-size: 16px;
}

/* ========== SUB PAGES ========== */
.page-content {
    padding-top: 100px; padding-bottom: 80px; min-height: calc(100vh - 100px);
}
.page-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.back-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text-dim); margin-bottom: 32px;
    transition: color var(--transition);
}
.back-link:hover { color: var(--accent); }
.page-title {
    font-size: 36px; font-weight: 800; letter-spacing: -1px;
    margin-bottom: 8px;
}
.page-updated {
    font-size: 13px; color: var(--text-muted); margin-bottom: 48px;
}
.page-subtitle {
    font-size: 17px; color: var(--text-dim); margin-bottom: 48px;
    line-height: 1.7;
}
.legal-content { display: flex; flex-direction: column; gap: 36px; }
.legal-section h2 {
    font-size: 20px; font-weight: 700; margin-bottom: 12px;
    color: var(--text);
}
.legal-section p {
    font-size: 15px; color: var(--text-dim); line-height: 1.8;
    margin-bottom: 8px;
}
.legal-section ul {
    list-style: none; padding: 0; margin: 8px 0;
}
.legal-section li {
    font-size: 15px; color: var(--text-dim); line-height: 1.8;
    padding-left: 20px; position: relative;
}
.legal-section li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}
.legal-section a { color: var(--accent); transition: opacity var(--transition); }
.legal-section a:hover { opacity: 0.8; }
.legal-section strong { color: var(--text); }

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: flex; flex-direction: column; gap: 48px;
}
.contact-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.contact-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    transition: all var(--transition); display: flex;
    flex-direction: column;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.contact-card-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
}
.discord-icon { background: rgba(88,101,242,0.15); color: #5865f2; }
.email-icon { background: var(--accent-dim); color: var(--accent); }
.insta-icon { background: rgba(228,64,95,0.15); color: #e4405f; }
.contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.contact-card-action {
    font-size: 13px; font-weight: 600; color: var(--accent);
    display: flex; align-items: center; gap: 6px;
}
.contact-form-wrap {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px;
}
.contact-form-wrap h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea {
    background: var(--bg-input); border: 1px solid var(--border);
    color: var(--text); font-family: var(--font); font-size: 14px;
    padding: 11px 14px; border-radius: var(--radius-sm);
    outline: none; transition: border-color var(--transition);
    resize: vertical; min-height: 100px;
}
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea::placeholder { color: var(--text-muted); }
.contact-success { text-align: center; padding: 48px 0; }
.contact-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.contact-success p { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutRight {
    to { opacity: 0; transform: translateX(80px); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero-title { font-size: 32px; }
    .hero-sub { font-size: 15px; }
    .hero-stats { gap: 20px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .stat-number { font-size: 18px; }
    .steps-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 28px; }
    .filter-bar { flex-direction: column; }
    .search-box input { width: 100%; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero { padding: 120px 24px 60px; }
    .cart-item { flex-wrap: wrap; }
    .fidelity-img-card { max-width: 280px; padding: 16px; }
    .trust-bar { gap: 20px; padding: 20px; }
    .trust-item { font-size: 13px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-title { font-size: 28px; }
    .checkout-panel { max-width: 100%; }
    .cart-panel { max-width: 100%; }
}

/* Crypto addresses */
.crypto-addresses { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.crypto-addr { display: flex; align-items: center; gap: 12px; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px; padding: 12px 16px; cursor: pointer; transition: all 0.2s; }
.crypto-addr:hover { border-color: var(--accent); }
.crypto-addr.copied { border-color: #2ecc71; }
.crypto-icon { font-size: 20px; width: 32px; text-align: center; flex-shrink: 0; }
.crypto-info { flex: 1; min-width: 0; }
.crypto-name { display: block; font-size: 13px; font-weight: 600; color: #f1f1f1; }
.crypto-address { display: block; font-size: 11px; color: #888; word-break: break-all; font-family: monospace; margin-top: 2px; }
.crypto-copy { color: #555; font-size: 14px; flex-shrink: 0; transition: color 0.2s; }
.crypto-addr:hover .crypto-copy { color: var(--accent); }
.crypto-addr.copied .crypto-copy { color: #2ecc71; }

/* Payment fields */
.payment-fields { margin-top: 16px; }

/* Crypto coin selector */
.crypto-select { margin-top: 16px; }
.crypto-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.crypto-option { display: block; }
.crypto-option input[type="radio"] { display: none !important; position: absolute; opacity: 0; pointer-events: none; }
.crypto-option-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 16px 8px; background: var(--bg-input, #141414); border: 2px solid var(--border, #2a2a2a); border-radius: 10px; cursor: pointer; transition: all 0.2s; font-size: 12px; font-weight: 600; color: var(--text-dim, #aaa); }
.crypto-option-card i { font-size: 22px; }
.crypto-option-card:hover { border-color: var(--border-hover, #3a3a3a); color: var(--text, #f1f1f1); }
.crypto-option input[type="radio"]:checked + .crypto-option-card { border-color: var(--accent); color: var(--accent); background: rgba(232,123,53,0.08); }
@media (max-width: 480px) { .crypto-options { grid-template-columns: repeat(2, 1fr); } }
