:root {
    --primary-red: #A80F15;
    --accent-yellow: #FFC246;
    --dark: #2B2B2B;
    --muted: #fdf6f4;
    --radius: 16px;
    --max-width: 1200px;
    --font-family: 'Inter', system-ui, -apple-system, Arial, sans-serif;
}

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

body {
    background: var(--muted);
    color: var(--dark);
    font-family: var(--font-family);
    line-height: 1.5;
    font-size: 16px;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: auto;
    padding: 0 18px;
}

/* Header / Navbar */
header {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--primary-red);
    color: #fff;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide.active {
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-shadow: 3px 3px 14px rgba(0, 0, 0, 0.7);
    max-width: 90%;
    line-height: 1.3;
}

/* Menu Section */
.menu h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-red);
    font-size: 2rem;
}

.category {
    margin-bottom: 3rem;
}

.category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius);
}

.item .meta {
    flex: 1;
    font-weight: 600;
}

.item button {
    padding: 8px 16px;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-yellow));
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.item button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Shake Animation */
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.6s;
}

/* Checkout Panel */
.checkout {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #fff;
    padding: 1rem;
    width: 260px;
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
}

.checkout input {
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.checkout .network {
    display: inline-block;
    padding: 4px 8px;
    margin-right: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #ccc;
}

.checkout .network.active {
    background: var(--primary-red);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        background: #fff;
        padding: 16px;
        border-radius: var(--radius);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        gap: 12px;
    }

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

    .item {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-text {
        font-size: 28px;
    }
}

/* Footer */
footer {
    background: var(--primary-red);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 16px 16px 0 0;
}

footer .footer-content {
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

footer .footer-content p {
    font-size: 16px;
    font-weight: 500;
}

footer .footer-content p a {
    color: #fff;
    font-weight: 700;
    transition: color 0.3s;
}

footer .footer-content p a:hover {
    color: var(--accent-yellow);
}

footer .socials {
    display: flex;
    gap: 20px;
}

footer .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    color: var(--primary-red);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

footer .socials a:hover {
    background: var(--accent-yellow);
    transform: scale(1.1);
}