﻿/* ================================================
   LA BRASA DORADA â€” Design System
   Dark theme, Work Sans, Red accent #e60000
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* â”€â”€ CSS Custom Properties â”€â”€ */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --bg-overlay: rgba(0,0,0,0.7);
    --bg-input: #1e1e1e;

    --accent: #e60000;
    --accent-hover: #ff1a1a;
    --accent-glow: rgba(230, 0, 0, 0.3);
    --accent-subtle: rgba(230, 0, 0, 0.1);

    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --text-on-accent: #ffffff;

    --border-color: #2a2a2a;
    --border-light: #333333;

    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;

    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow: 0 4px 12px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.6);
    --shadow-accent: 0 4px 20px var(--accent-glow);

    --font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* â”€â”€ Reset & Base â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

/* â”€â”€ Typography â”€â”€ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-secondary); }

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* â”€â”€ Layout â”€â”€ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.grid {
    display: grid;
    gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
    .container { padding: 0 16px; }
}

/* â”€â”€ Buttons â”€â”€ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.btn-primary {
    background: var(--accent);
    color: var(--text-on-accent);
    box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-glow);
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #16a34a; transform: translateY(-1px); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; transform: translateY(-1px); }
.btn-warning { background: var(--warning); color: #000; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-icon {
    width: 40px; height: 40px; padding: 0;
    border-radius: var(--radius-full);
    display: inline-flex; align-items: center; justify-content: center;
}

/* â”€â”€ Navbar â”€â”€ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.nav-brand-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.nav-brand-text span { color: var(--accent); }
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cart {
    position: relative;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}
.nav-cart:hover {
    border-color: var(--accent);
    background: var(--accent-subtle);
}
.nav-cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links.open { display: flex; }
}

/* â”€â”€ Hero Section â”€â”€ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 72px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, var(--accent-glow), transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}
.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-subtle);
    border: 1px solid rgba(230,0,0,0.2);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero h1 {
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}
.hero h1 span { color: var(--accent); }
.hero p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-53%) translateX(-8px); }
}
@media (max-width: 1024px) {
    .hero-image { display: none; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero p { max-width: 100%; }
    .hero-actions { justify-content: center; }
}

/* â”€â”€ Features Section â”€â”€ */
.features {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    text-align: center;
}
.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}
.feature-icon {
    width: 56px; height: 56px;
    background: var(--accent-subtle);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--accent);
}
.feature-card h3 { margin-bottom: 8px; }

/* â”€â”€ Menu Section â”€â”€ */
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.category-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}
.category-tab:hover,
.category-tab.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* â”€â”€ Product Card â”€â”€ */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.product-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-card-img {
    transform: scale(1.05);
}
.product-card-img-wrapper {
    overflow: hidden;
    position: relative;
}
.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.product-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}
.product-price .currency { font-size: 0.8rem; font-weight: 600; }

/* â”€â”€ Cart Sidebar â”€â”€ */
.cart-sidebar {
    position: fixed;
    top: 0; right: -420px;
    width: 400px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.cart-sidebar.open { right: 0; }
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}
.cart-header h3 { display: flex; align-items: center; gap: 10px; }
.cart-close {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 36px; height: 36px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}
.cart-close:hover { border-color: var(--accent); color: var(--accent); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-empty {
    text-align: center;
    padding: 48px 16px;
    color: var(--text-muted);
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.3; }

.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}
.cart-item-img {
    width: 64px; height: 64px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.cart-item-extras { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-qty-btn {
    width: 28px; height: 28px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
.cart-qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-qty { font-weight: 700; min-width: 24px; text-align: center; }
.cart-item-price { font-weight: 700; color: var(--accent); white-space: nowrap; }
.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    padding: 4px;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-card);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.cart-total-label { font-size: 1rem; color: var(--text-secondary); }
.cart-total-price { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.cart-footer .btn { width: 100%; }

@media (max-width: 480px) {
    .cart-sidebar { width: 100%; right: -100%; }
}

/* â”€â”€ Extras Modal â”€â”€ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 32px; height: 32px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }

.modal h3 { margin-bottom: 8px; }
.modal-price { font-size: 1.2rem; font-weight: 700; color: var(--accent); margin-bottom: 20px; }

.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.extra-item:hover { border-color: var(--accent); }
.extra-item.selected {
    border-color: var(--accent);
    background: var(--accent-subtle);
}
.extra-item-name { font-weight: 500; }
.extra-item-price { font-weight: 700; color: var(--accent); font-size: 0.9rem; }

.modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.modal-footer .btn { flex: 1; }

/* â”€â”€ Checkout Page â”€â”€ */
.checkout-page {
    padding-top: 100px;
    min-height: 100vh;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 768px) {
    .checkout-grid { grid-template-columns: 1fr; }
}  
.checkout-form-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.checkout-form-section h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-select { cursor: pointer; appearance: none; }

.delivery-toggle {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}
.delivery-option {
    flex: 1;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    background: var(--bg-input);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-family);
}
.delivery-option.active {
    background: var(--accent);
    color: #fff;
}

/* â”€â”€ Order Summary Sidebar â”€â”€ */
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 96px;
}
.order-summary h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.summary-item-name { flex: 1; }
.summary-item-qty { color: var(--text-muted); margin: 0 12px; }
.summary-item-price { font-weight: 700; }
.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 8px;
    font-size: 1.2rem;
    font-weight: 800;
}
.summary-total .price { color: var(--accent); }

/* â”€â”€ Sections: About / Location â”€â”€ */
.about-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { margin-bottom: 12px; font-size: 1rem; }
@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; }
}

.location-section {
    border-top: 1px solid var(--border-color);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.hours-list .day { font-weight: 600; }
.hours-list .time { color: var(--text-secondary); }
@media (max-width: 768px) {
    .location-grid { grid-template-columns: 1fr; }
}

/* â”€â”€ Footer â”€â”€ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 24px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-links a:hover { color: var(--accent); }

/* â”€â”€ Utilities â”€â”€ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-pending { background: rgba(245,158,11,0.15); color: var(--warning); }
.badge-cooking { background: rgba(59,130,246,0.15); color: #3b82f6; }
.badge-completed { background: rgba(34,197,94,0.15); color: var(--success); }
.badge-cancelled { background: rgba(239,68,68,0.15); color: var(--danger); }

.divider {
    height: 1px;
    background: var(--border-color);
    margin: 24px 0;
}

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px 24px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }

/* â”€â”€ Material Icons â”€â”€ */
.material-symbols-outlined {
    font-size: 20px;
    vertical-align: middle;
}

/* â”€â”€ Scrollbar â”€â”€ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* â”€â”€ Placeholder Image â”€â”€ */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}

/* Payment Options */
.payment-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.payment-btn {
    flex: 1;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    background: var(--bg-input);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.payment-btn:hover {
    border-color: var(--accent);
}
.payment-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
