:root {
    --bg-color: #050505;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-primary: #b026ff;
    /* Roxo Neon */
    --neon-secondary: #00ff9d;
    /* Verde Neon */
    --text-main: #ffffff;
    --text-dim: #cccccc;
    --font-main: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(176, 38, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 157, 0.1) 0%, transparent 40%);
    min-height: 100vh;
}

/* Header & Logo */
header {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.logo-container {
    max-width: 250px;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(176, 38, 255, 0.5));
    animation: float 6s ease-in-out infinite;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Neon Text Effects */
h1,
h2,
h3 {
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.5);
    letter-spacing: 1px;
}

h2 {
    color: var(--neon-secondary);
    text-shadow: 0 0 8px rgba(0, 255, 157, 0.4);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--neon-secondary);
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem 4rem;
}

/* Glassmorphism Cards */
.menu-section {
    margin-bottom: 3rem;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-primary);
    box-shadow: 0 8px 20px rgba(176, 38, 255, 0.2);
}

.card-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--neon-secondary);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
}

.card-content {
    flex: 1;
}

.card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    color: #fff;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.price {
    font-weight: bold;
    color: var(--neon-primary);
    text-shadow: 0 0 5px rgba(176, 38, 255, 0.4);
    font-size: 1.1rem;
}

/* Add-ons List Style (Simpler cards) */
.addon-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.addon-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.addon-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #fff;
    text-shadow: none;
}

/* Location Button (Floating) */
.location-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    /* Moved to Left */
    background: var(--neon-secondary);
    /* Green to differentiate */
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.6);
    cursor: pointer;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.location-btn:hover {
    background: #00cc7d;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .card-image {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
    }

    .addon-list {
        grid-template-columns: 1fr;
    }

    .location-btn {
        bottom: 2rem;
        left: 1.5rem;
        /* Left align on mobile too */
        right: auto;
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: var(--glass-border);
    border: 1px solid var(--neon-secondary);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--neon-secondary);
    color: #000;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-secondary);
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s, top 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    top: 30px;
}

/* Floating Cart Button */
.cart-fab {
    position: fixed;
    bottom: 2rem;
    /* Adjusted for better visibility */
    right: 2rem;
    background: var(--neon-primary);
    /* Changed to Purple to stand out more */
    color: #fff;
    width: 70px;
    /* Bigger */
    height: 70px;
    /* Bigger */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 25px rgba(176, 38, 255, 0.8);
    cursor: pointer;
    z-index: 9999;
    /* Max Z-Index */
    border: 2px solid #fff;
    transition: transform 0.2s;
}

.cart-fab:active {
    transform: scale(0.95);
}

.cart-fab.pulse {
    animation: pulse-animation 0.5s ease-in-out;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-color);
}

/* Cart Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid var(--neon-primary);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.3);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
}

.cart-total {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
    margin-bottom: 1rem;
    color: var(--neon-secondary);
}

/* Checkout Form Styles */
.checkout-form {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkout-form label {
    font-weight: bold;
    color: var(--neon-primary);
    font-size: 0.9rem;
}

.checkout-form textarea,
.checkout-form input,
.checkout-form select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.8rem;
    color: #fff;
    font-family: inherit;
    width: 100%;
}

.checkout-form textarea:focus,
.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: var(--neon-secondary);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
}

.checkout-btn {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    border: none;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #1ebc57;
}

@media (max-width: 600px) {
    .cart-fab {
        bottom: 5rem;
        right: 1.5rem;
    }
}