/* ========== R2SNetwork Store - Medieval Modern Theme ========== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #8B0000;
    --primary-light: #DC143C;
    --primary-glow: rgba(220, 20, 60, 0.3);
    --accent: #C9A84C;
    --accent-light: #E0C068;
    --accent-glow: rgba(201, 168, 76, 0.3);
    --bg-dark: #0a0a0a;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --bg-input: #1a1a1a;
    --bg-elevated: #1e1e1e;
    --text: #e0e0e0;
    --text-muted: #888;
    --text-dim: #555;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --border: rgba(139, 0, 0, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --rank-vip: #2ecc71;
    --rank-mvp: #3498db;
    --rank-elite: #9b59b6;
    --rank-legend: #f39c12;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); background: var(--bg-dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; }
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); transition: all var(--transition);
}
.navbar.scrolled { background: rgba(10, 10, 10, 0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.navbar { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { width: 36px; height: 36px; border-radius: 6px; }
.nav-brand span { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text); }
.nav-links { display: flex; list-style: none; gap: 0.25rem; }
.nav-link {
    color: var(--text-muted); font-size: 0.9rem; font-weight: 500; padding: 0.5rem 1rem;
    border-radius: var(--radius-sm); transition: all var(--transition); text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(139, 0, 0, 0.1); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.cart-toggle {
    position: relative; background: none; border: 1px solid var(--border-subtle);
    color: var(--text); font-size: 1.1rem; cursor: pointer; padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm); transition: all var(--transition);
}
.cart-toggle:hover { border-color: var(--primary-light); color: var(--primary-light); }
.cart-count {
    position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px;
    background: var(--primary-light); color: #fff; font-size: 0.7rem; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.cart-bounce { animation: cartBounce 0.5s ease; }
@keyframes cartBounce { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0.6rem 1.25rem; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; border: none; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; }
.btn-primary:hover { box-shadow: 0 0 25px var(--primary-glow); transform: translateY(-1px); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--primary-light); color: var(--primary-light); }
.btn-sm { padding: 0.35rem 0.85rem; font-size: 0.8rem; }
.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 1.3rem; cursor: pointer; }
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav-links {
        position: fixed; top: 64px; left: 0; right: 0; background: rgba(10,10,10,0.98);
        flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--border);
        transform: translateY(-120%); transition: transform var(--transition);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-link { padding: 0.75rem 1rem; }
}

/* ========== CART SIDEBAR ========== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1500; opacity: 0; visibility: hidden; transition: all var(--transition); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 90vw; z-index: 1600;
    background: var(--bg-card); border-left: 1px solid var(--border);
    display: flex; flex-direction: column; transform: translateX(100%); transition: transform var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-subtle); }
.cart-header h3 { font-family: var(--font-body); font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.cart-close { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; padding: 0.5rem; }
.cart-close:hover { color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.cart-empty i { font-size: 3rem; margin-bottom: 1rem; display: block; color: var(--text-dim); }
.cart-empty p { font-size: 1rem; margin-bottom: 0.25rem; }
.cart-empty span { font-size: 0.85rem; }

.cart-item {
    display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-subtle);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { display: flex; align-items: center; gap: 0.75rem; }
.cart-item-icon { font-size: 1.3rem; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); border-radius: var(--radius-sm); }
.cart-item-name { font-weight: 600; font-size: 0.9rem; }
.cart-item-price { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-controls { display: flex; align-items: center; gap: 0.3rem; }
.qty-btn { width: 26px; height: 26px; border-radius: 4px; border: 1px solid var(--border-subtle); background: var(--bg-dark); color: var(--text); cursor: pointer; font-weight: 700; transition: all var(--transition); }
.qty-btn:hover { border-color: var(--primary-light); }
.qty-val { min-width: 24px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.cart-item-remove { background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 4px; font-size: 0.85rem; }
.cart-item-remove:hover { color: var(--danger); }

.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border-subtle); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.cart-total-price { color: var(--accent); font-family: var(--font-heading); }
.cart-secure-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; line-height: 1.5; }
.cart-secure-note i { color: var(--success); }

/* ========== HERO ========== */
.hero {
    position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center;
    padding: 6rem 1.5rem 3rem; text-align: center; overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0000 50%, var(--bg-dark) 100%);
}
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(139,0,0,0.1) 0%, transparent 60%); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
    position: absolute; border-radius: 50%; background: var(--primary-light); opacity: 0.3;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 0.3rem 1rem;
    background: rgba(139, 0, 0, 0.15); border: 1px solid var(--border);
    border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--primary-light);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1rem; }
.hero-eula { font-size: 0.9rem; color: var(--success); margin-bottom: 1.5rem; }
.hero-eula i { margin-right: 4px; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-value { display: block; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; }
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll-indicator { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: var(--text-muted); animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-8px); } }

/* ========== SECTIONS ========== */
.section { padding: 4rem 0; }
.section-alt { background: #0e0e0e; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 0.3rem 1rem;
    background: rgba(139, 0, 0, 0.15); border: 1px solid var(--border);
    border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--primary-light);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ========== FILTER BAR ========== */
.filter-bar { padding: 1rem 0; background: #0e0e0e; border-bottom: 1px solid var(--border-subtle); position: sticky; top: 64px; z-index: 100; }
.filter-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.search-box { position: relative; flex: 1; max-width: 300px; }
.search-box i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-dim); }
.search-box input {
    width: 100%; padding: 0.55rem 1rem 0.55rem 36px; background: var(--bg-input);
    border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
    color: var(--text); font-size: 0.9rem; outline: none; transition: border var(--transition);
}
.search-box input:focus { border-color: var(--primary-light); }
.category-filters { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.filter-btn {
    padding: 0.45rem 1rem; background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 50px; color: var(--text-muted); font-size: 0.8rem; font-weight: 500;
    cursor: pointer; transition: all var(--transition); display: flex; align-items: center; gap: 6px;
}
.filter-btn:hover { border-color: var(--primary-light); color: var(--text); }
.filter-btn.active { background: rgba(139, 0, 0, 0.2); border-color: var(--primary-light); color: var(--primary-light); }

/* ========== RANKS GRID ========== */
.ranks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.rank-card {
    position: relative; background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
    transition: all var(--transition); overflow: hidden;
}
.rank-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--rank-color, var(--primary-light));
}
.rank-card:hover { transform: translateY(-6px); border-color: var(--rank-color, var(--border)); box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px color-mix(in srgb, var(--rank-color) 20%, transparent); }
.rank-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.rank-name { font-size: 1.4rem; margin-bottom: 0.5rem; }
.rank-price { font-size: 2rem; font-weight: 800; font-family: var(--font-heading); color: var(--accent); margin-bottom: 0.25rem; }
.rank-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem; }
.rank-perks { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.rank-perks li { padding: 0.35rem 0; font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid var(--border-subtle); }
.rank-perks li:last-child { border-bottom: none; }
.rank-perks li i { margin-top: 3px; flex-shrink: 0; }
.rank-buy { margin-top: auto; }

.product-badge {
    position: absolute; top: 12px; right: -28px; background: var(--primary-light);
    color: #fff; font-size: 0.7rem; font-weight: 700; padding: 4px 32px;
    transform: rotate(45deg); text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ========== PRODUCTS GRID ========== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }

.product-card {
    position: relative; background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius); padding: 1.5rem; text-align: center;
    transition: all var(--transition); overflow: hidden; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.product-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.product-name { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; flex: 1; }
.bundle-includes { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; padding: 0.5rem; background: rgba(0,0,0,0.2); border-radius: var(--radius-sm); }
.product-price-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.product-original { text-decoration: line-through; color: var(--text-dim); font-size: 0.9rem; }
.product-price { font-size: 1.4rem; font-weight: 800; color: var(--accent); font-family: var(--font-heading); }

/* ========== INFO SECTION ========== */
.info-section { background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0000 100%); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.info-card {
    text-align: center; padding: 2rem 1.5rem; background: var(--bg-card);
    border: 1px solid var(--border-subtle); border-radius: var(--radius); transition: all var(--transition);
}
.info-card:hover { transform: translateY(-4px); border-color: var(--border); }
.info-icon { font-size: 2rem; color: var(--primary-light); margin-bottom: 1rem; }
.info-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.info-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ========== FOOTER ========== */
.footer { padding: 3rem 0 1.5rem; background: #0e0e0e; border-top: 1px solid var(--border-subtle); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
.footer-logo img { width: 36px; height: 36px; border-radius: 6px; }
.footer-logo span { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--text); }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 8px; background: var(--bg-card);
    border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1rem; transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--primary-light); color: var(--primary-light); }
.footer-links { }
.footer-links h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.footer-eula { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.6; }
.footer-eula i { color: var(--success); }
.footer-eula strong { color: var(--text); }
.footer-eula a { color: var(--primary-light); }
.footer-copyright { font-size: 0.75rem; color: var(--text-dim); }
.footer-copyright a { color: var(--text-muted); }

/* ========== CHECKOUT MODAL ========== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; padding: 1rem;
    opacity: 0; visibility: hidden; transition: all var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow);
    transform: translateY(20px); transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-subtle); }
.modal-header h3 { font-family: var(--font-body); font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; }
.modal-body { padding: 1.5rem; }

.checkout-info { text-align: center; margin-bottom: 1.5rem; }
.checkout-icon { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 0.75rem; }
.checkout-icon img { width: 24px; height: 24px; }
.checkout-icon i { color: var(--success); font-size: 1.5rem; }
.checkout-info h4 { margin-bottom: 0.5rem; }
.checkout-info p { font-size: 0.9rem; color: var(--text-muted); }

.checkout-summary { margin-bottom: 1.5rem; }
.checkout-item { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--border-subtle); }
.checkout-item:last-child { border-bottom: none; }
.checkout-total { font-size: 1.1rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }

.checkout-username { margin-bottom: 1.5rem; }
.checkout-username label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.checkout-username input {
    width: 100%; padding: 0.7rem 1rem; background: var(--bg-input); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm); color: var(--text); font-size: 0.95rem; outline: none;
}
.checkout-username input:focus { border-color: var(--primary-light); }
.checkout-username small { font-size: 0.75rem; color: var(--text-muted); }

.checkout-notes { margin-top: 1rem; }
.checkout-notes p { font-size: 0.8rem; color: var(--text-muted); padding: 0.25rem 0; display: flex; align-items: center; gap: 6px; }

/* ========== USER BOX (logged-in) ========== */
.user-box {
    position: relative; display: flex; align-items: center; gap: 8px;
    padding: 0.4rem 0.75rem; border-radius: var(--radius-sm);
    background: var(--bg-elevated); border: 1px solid var(--border-subtle);
    cursor: pointer; transition: all var(--transition);
}
.user-box:hover { border-color: var(--accent); background: var(--bg-card-hover); }
.user-box .user-avatar {
    width: 28px; height: 28px; border-radius: 50%; image-rendering: pixelated;
    border: 1px solid var(--accent);
}
.user-box .user-name {
    font-size: 0.875rem; font-weight: 600; color: var(--text);
    max-width: 110px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.user-dropdown {
    position: absolute; top: calc(100% + 6px); right: 0; min-width: 200px;
    background: var(--bg-elevated); border: 1px solid var(--border);
    border-radius: var(--radius-sm); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: all 0.2s ease; padding: 0.5rem 0; z-index: 200;
}
.user-box:hover .user-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.user-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 0.6rem 1rem; color: var(--text); text-decoration: none;
    font-size: 0.875rem; transition: all 0.15s ease;
}
.user-dropdown a:hover { background: var(--primary); color: #fff; }
.user-dropdown a i { width: 14px; color: var(--accent); }
.user-dropdown a:hover i { color: #fff; }

.empty-state {
    grid-column: 1 / -1; padding: 2rem; text-align: center;
    color: var(--text-muted); font-size: 0.95rem;
}

/* ========== TOAST ========== */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 0.5rem; }
.toast-msg {
    padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
    background: var(--bg-elevated); border: 1px solid var(--border);
    color: var(--text); font-size: 0.9rem; box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 8px;
    transform: translateX(120%); transition: transform 0.4s ease; max-width: 350px;
}
.toast-msg.show { transform: translateX(0); }
.toast-msg.success { border-color: rgba(46,204,113,0.3); color: var(--success); }
.toast-msg.error { border-color: rgba(231,76,60,0.3); color: var(--danger); }
.toast-msg.warning { border-color: rgba(243,156,18,0.3); color: var(--warning); }
