:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --primary-glow: #ff9900;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --red-card: #cc0000;
    --yellow-card: #e6b800;
    --black-card: #333333;
    --green-card: #4caf50;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 5%;
    background: rgba(18, 18, 18, 0.9);
    position: fixed;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.logo-container { display: flex; align-items: center; gap: 10px; }
.logo-img-placeholder { font-size: 2rem; }
.logo-text { font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
.header-info { display: flex; align-items: center; gap: 20px; margin-top: 10px; }
.address { color: var(--text-muted); font-size: 0.9rem; }
.cart-btn {
    background: transparent; color: white; border: 1px solid var(--primary-glow);
    padding: 8px 15px; border-radius: 20px; cursor: pointer; transition: 0.3s;
}
.cart-btn:hover { background: var(--primary-glow); color: #000; }

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 153, 0, 0.1) 0%, var(--bg-dark) 70%),
                url('https://www.transparenttextures.com/patterns/stardust.png');
    position: relative;
}
.hero-title { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.highlight { color: var(--text-main); }
.hero-subtitle { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 40px; }

/* Buttons */
.glow-btn {
    background: linear-gradient(90deg, #ffb300, #ff6600);
    color: #fff; border: none; padding: 15px 40px; font-size: 1.2rem; font-weight: 700;
    border-radius: 30px; cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}
.glow-btn:hover {
    transform: translateY(-3px); box-shadow: 0 0 30px rgba(255, 153, 0, 0.8);
}
.glow-btn.full-width { width: 100%; }

/* Menu */
.menu-section { padding: 50px 5%; }
.section-title { font-size: 2rem; margin-bottom: 30px; text-align: center; font-weight: 800; }
.mt-4 { margin-top: 40px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

.product-card {
    background: var(--bg-card); border-radius: 15px; padding: 20px;
    position: relative; transition: transform 0.3s ease;
    border: 2px solid transparent; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); }
.product-image { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; background: #2a2a2a; }
.product-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; text-transform: uppercase;}
.product-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1;}
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.price { font-size: 1.5rem; font-weight: 800; }
.add-btn { background: #333; color: white; border: none; padding: 8px 15px; border-radius: 10px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.add-btn:hover { background: var(--primary-glow); }

/* Card Colors */
.card-red { border-color: rgba(204, 0, 0, 0.5); box-shadow: inset 0 0 30px rgba(204, 0, 0, 0.1); }
.card-yellow { border-color: rgba(230, 184, 0, 0.5); box-shadow: inset 0 0 30px rgba(230, 184, 0, 0.1); }
.card-black { border-color: rgba(100, 100, 100, 0.5); box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5); }
.card-green { border-color: rgba(76, 175, 80, 0.5); box-shadow: inset 0 0 30px rgba(76, 175, 80, 0.1); }

/* About */
.about-section { text-align: center; padding: 60px 5%; background: #0a0a0a; border-top: 1px solid #333;}
.about-content h3 { font-size: 2rem; margin-bottom: 20px; color: var(--primary-glow); }
.about-content p { font-size: 1.1rem; line-height: 1.6; color: #ccc; }
.accent-text { font-weight: bold; margin-top: 20px; color: #fff !important; }

/* Cart Sidebar */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1000; display: none; }
.cart-sidebar {
    position: fixed; top: 0; right: -400px; width: 400px; max-width: 100%; height: 100%;
    background: var(--bg-card); z-index: 1001; transition: right 0.4s ease;
    display: flex; flex-direction: column; box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; padding: 20px; border-bottom: 1px solid #333; }
.close-cart { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.cart-items { padding: 20px; flex-grow: 1; overflow-y: auto; }
.cart-item { background: #2a2a2a; border-radius: 10px; padding: 15px; margin-bottom: 15px; position: relative;}
.cart-item-header { display: flex; justify-content: space-between; font-weight: bold; margin-bottom: 10px;}
.remove-item { background: none; border: none; color: #ff4444; cursor: pointer; font-size: 1.2rem; }
.ingredients { font-size: 0.8rem; margin-top: 10px; border-top: 1px solid #444; padding-top: 10px;}
.ingredient-toggle { display: flex; justify-content: space-between; margin-bottom: 5px; color: #ccc;}
.ingredient-toggle input { margin-right: 5px; accent-color: var(--primary-glow);}
.cart-footer { padding: 20px; border-top: 1px solid #333; background: #1a1a1a; }
.cart-form input, .cart-form textarea { width: 100%; padding: 10px; margin-bottom: 10px; background: #333; border: 1px solid #444; color: white; border-radius: 5px; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }

/* Thank You Page */
#thank-you-page { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hidden { display: none !important; }
.thank-you-content h2 { font-size: 3rem; color: var(--primary-glow); margin-bottom: 20px; }
.thank-you-content p { font-size: 1.2rem; margin-bottom: 10px; }
.pickup-reminder { margin-bottom: 30px; font-size: 1.5rem; }

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .cart-sidebar { width: 100%; }
}