/* Pizzaria — Premium Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
     --gold: #d4a017;
     --gold-light: #f5c542;
     --gold-dark: #a07810;
     --gold-glow: rgba(212, 160, 23, 0.4);
     --dark: #0a0e14;
     --dark-light: #111820;
     --dark-card: #151d27;
     --dark-hover: #1a2533;
     --text: #f0f2f5;
     --text-muted: #8892a0;
     --text-dim: #5a6474;
     --border: rgba(212, 160, 23, 0.15);
     --border-light: rgba(255, 255, 255, 0.06);
     --danger: #ef4444;
     --success: #22c55e;
     --radius: 0.75rem;
     --radius-lg: 1.25rem;
     --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
     --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
     --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
     --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.15);
     --glass: rgba(17, 24, 32, 0.7);
     --glass-border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Barlow', 'Noto Sans JP', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(212,160,23,0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(212,160,23,0.03) 0%, transparent 60%);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== HEADER ===== */
.site-header {
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: text-shadow 0.3s;
}

.nav-brand:hover {
    text-shadow: 0 0 20px var(--gold-glow);
}

.nav-logo { height: 32px; width: auto; }

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.2s, text-shadow 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s, left 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

.nav-cart {
    background: rgba(212,160,23,0.08);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212,160,23,0.15);
    transition: background 0.2s, border-color 0.2s;
}

.nav-cart:hover {
    background: rgba(212,160,23,0.15);
    border-color: rgba(212,160,23,0.3);
}

.lang-btn {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--glass-border);
    border-radius: 0.35rem;
    transition: all 0.2s;
}

.lang-btn.active {
    border-color: var(--gold);
    color: var(--gold) !important;
    background: rgba(212,160,23,0.1);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 6rem 1.5rem 5rem;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212,160,23,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(212,160,23,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(245,197,66,0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a017' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 20px rgba(212,160,23,0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-subtitle-ja {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(212,160,23,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212,160,23,0.45);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(212,160,23,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,160,23,0.15);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; }

/* ===== SECTIONS ===== */
.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-size: 1rem;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.75rem;
}

.product-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,160,23,0.3);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

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

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-badge.vegan { background: var(--success); color: white; }
.product-badge.gf { background: #3b82f6; color: white; }

.product-info { padding: 1.25rem; }

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.15rem;
    letter-spacing: 0.01em;
}

.product-name-ja {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.6rem;
    font-weight: 300;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}

.qty-input {
    width: 52px;
    padding: 0.4rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    color: var(--text);
    text-align: center;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.qty-input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ===== CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.category-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,160,23,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,160,23,0.3);
    box-shadow: var(--shadow-md), 0 0 20px rgba(212,160,23,0.08);
}

.category-card:hover::after { opacity: 1; }

.category-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(212,160,23,0.2));
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 1;
}

.category-ja {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* ===== CART ===== */
.cart-page {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

.cart-items { list-style: none; }

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
}

.cart-item:hover { background: rgba(255,255,255,0.01); }

.cart-item-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.cart-item-info { flex: 1; }
.cart-item-qty { flex-shrink: 0; }
.cart-item-total {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    min-width: 110px;
    text-align: right;
    font-size: 1.1rem;
}
.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-summary { padding: 0; position: sticky; top: 90px; }

.summary-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.cart-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
}

.cart-row.total {
    border-top: 1px solid var(--border);
    margin-top: 0.75rem;
    padding-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-row .free { color: var(--success); }
.cart-free-hint { color: var(--text-muted); font-size: 0.82rem; display: block; margin-top: 0.75rem; }

/* ===== CHECKOUT ===== */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

.checkout-form-section h2,
.checkout-form-section h3 {
    color: var(--gold);
    margin: 1.75rem 0 0.75rem;
    font-family: 'Playfair Display', serif;
}

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

.form-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text);
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* ===== CONFIRMATION ===== */
.confirmation {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.confirmation-icon {
    font-size: 4.5rem;
    color: var(--success);
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(34,197,94,0.3));
}

.confirmation-subtitle-ja { color: var(--text-muted); }

.confirmation-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 2rem;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.order-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0.5rem 0;
}

.order-summary-table {
    width: 100%;
    margin: 1.5rem 0;
}

.order-summary-table td {
    padding: 0.65rem;
    border-bottom: 1px solid var(--border-light);
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

/* ===== TRACK ===== */
.track-form {
    max-width: 520px;
    margin: 0 auto;
}

.track-result { max-width: 850px; margin: 0 auto; }

.track-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.status-badge {
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-pending { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
.status-preparing { background: rgba(59,130,246,0.15); color: #3b82f6; border: 1px solid rgba(59,130,246,0.3); }
.status-delivering { background: rgba(139,92,246,0.15); color: #8b5cf6; border: 1px solid rgba(139,92,246,0.3); }
.status-delivered { background: rgba(34,197,94,0.15); color: var(--success); border: 1px solid rgba(34,197,94,0.3); }
.status-cancelled { background: rgba(239,68,68,0.15); color: var(--danger); border: 1px solid rgba(239,68,68,0.3); }

/* ===== TIMELINE ===== */
.timeline-steps {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 130px;
    opacity: 0.35;
    transition: opacity 0.4s;
}

.timeline-step.completed,
.timeline-step.current { opacity: 1; }

.timeline-step.current .step-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    box-shadow: 0 0 20px var(--gold-glow);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
     0%, 100% { box-shadow: 0 0 15px var(--gold-glow); }
     50% { box-shadow: 0 0 30px var(--gold-glow), 0 0 40px rgba(212,160,23,0.1); }
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    transition: all 0.3s;
}

.step-label { font-size: 0.82rem; font-weight: 600; }
.step-label-jp { font-size: 0.72rem; color: var(--text-dim); }
.step-time { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.3rem; }

.track-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.25rem;
}

.track-items-table th,
.track-items-table td {
    padding: 0.85rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.track-items-table th {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.total-row { font-weight: 700; }

/* ===== MENU CATEGORIES ===== */
.menu-categories {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-cat-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 2px 12px rgba(212,160,23,0.25);
}

/* ===== INFO BANNER ===== */
.info-banner {
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-top: 1rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.info-card:hover {
    background: rgba(255,255,255,0.02);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 8px rgba(212,160,23,0.2));
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.info-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== ADMIN ===== */
.admin-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-section {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.admin-section h2 {
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.85rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
}

.admin-table th {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}

.admin-table tr:hover { background: rgba(212,160,23,0.03); }

.admin-filters {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.admin-filters input,
.admin-filters select {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text);
    padding: 0.6rem 0.9rem;
    font-size: 0.88rem;
    transition: border-color 0.2s;
}

.admin-filters input:focus,
.admin-filters select:focus {
    outline: none;
    border-color: var(--gold);
}

.admin-form .form-group { margin-bottom: 1.25rem; }
.admin-form label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text);
    padding: 0.7rem 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--dark-card), var(--dark-hover));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), 0 0 15px rgba(212,160,23,0.08);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.01em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.3rem;
}

.status-log-entry {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.status-log-entry small { color: var(--text-dim); }

/* ===== ALERTS ===== */
.alert {
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    color: var(--success);
}

.alert-error {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.25);
    color: var(--danger);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dim);
}

/* ===== ABOUT ===== */
.about-content { max-width: 800px; margin: 0 auto; }
.about-text h2 { color: var(--gold); margin: 2rem 0 0.75rem; font-family: 'Playfair Display', serif; }
.about-text p { margin-bottom: 1.25rem; color: var(--text-muted); line-height: 1.7; }

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.75rem 0;
}

.hours-table td {
    padding: 0.6rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info p { margin-bottom: 0.75rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
}

.faq-item h3 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.05rem; font-family: 'Playfair Display', serif; }
.faq-item p { color: var(--text-muted); line-height: 1.7; }

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
    border-top: 1px solid var(--border-light);
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.3rem; }
.footer-section ul { list-style: none; }
.footer-section a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-section a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding: 1.5rem 1rem 1rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-dim);
    font-size: 0.82rem;
}

/* ===== ADMIN LOGIN ===== */
.login-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    transition: box-shadow 0.3s;
}

.login-card:hover {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212,160,23,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
     .cart-page,
     .checkout-grid {
        grid-template-columns: 1fr;
     }

     .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
     }
}

@media (max-width: 768px) {
     .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10,14,20,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.25rem;
        border-bottom: 1px solid var(--glass-border);
        gap: 0.75rem;
     }

     .nav-links.open { display: flex; }

     .nav-toggle { display: block; }

     .hero { padding: 4rem 1.25rem 3rem; }
     .hero-title { font-size: 2.2rem; }
     .hero-subtitle { font-size: 1rem; }
     .hero-actions { flex-direction: column; align-items: center; }

     .section { padding: 3rem 1.25rem; }
     .section-title { font-size: 1.7rem; }

     .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
     .categories-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
     .stats-grid { grid-template-columns: repeat(2, 1fr); }

     .admin-table { font-size: 0.8rem; }
     .admin-table th,
     .admin-table td { padding: 0.6rem 0.5rem; }
}

@media (max-width: 480px) {
     .hero-title { font-size: 1.8rem; }
     .hero-subtitle { font-size: 0.95rem; }
     .products-grid { grid-template-columns: 1fr; }
     .categories-grid { grid-template-columns: 1fr 1fr; }
     .stats-grid { grid-template-columns: 1fr; }
     .nav-brand { font-size: 1.1rem; }
     .login-card { padding: 2rem 1.5rem; }
}
