/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-red: #E53935;
    --color-red-dark: #C62828;
    --color-red-light: #FF8A80;
    --color-yellow: #FFC107;
    --color-yellow-dark: #FFB300;
    --color-yellow-light: #FFE082;
    --color-black: #1C1C1C;
    --color-black-light: #2D2D2D;
    --color-white: #FFFFFF;
    --color-cream: #FFFDF5;
    --color-cream-dark: #FDF9EA;
    
    /* Neutrals */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-700: #616161;
    --gray-800: #424242;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 32px rgba(229, 57, 53, 0.15);
    --shadow-dark: 0 10px 25px rgba(0,0,0,0.3);
    
    /* Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button, input, textarea {
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.justify-center { justify-content: center; }
.text-yellow { color: var(--color-yellow) !important; }
.bg-black { background-color: var(--color-black) !important; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(225, 57, 53, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 57, 53, 0.45);
}

.btn-secondary {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-black-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-black {
    background-color: var(--color-black);
    color: var(--color-yellow);
    box-shadow: var(--shadow-md);
}

.btn-black:hover {
    background-color: #000;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-gofood {
    background-color: #E03F3F;
    color: var(--color-white);
}

.btn-gofood:hover {
    background-color: #c93232;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(229, 57, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(28, 28, 28, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 193, 7, 0.2);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--color-yellow);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--color-yellow);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--gray-300);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--color-yellow);
}

.mobile-menu-btn {
    display: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--color-black);
    z-index: 2000;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: 0.4s ease-in-out;
}

.mobile-nav.active {
    right: 0;
}

.close-mobile-menu {
    align-self: flex-end;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
    margin-bottom: 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--color-black-light);
    padding-bottom: 8px;
}

.mobile-link:hover {
    color: var(--color-yellow);
}

.mobile-btn {
    margin-top: 20px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 140px 0 0 0;
    background-color: var(--color-black);
    background-image: radial-gradient(circle at 70% 30%, rgba(229, 57, 53, 0.15) 0%, rgba(0,0,0,0) 60%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 60px;
}

.hero-content {
    color: var(--color-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 193, 7, 0.15);
    border: 1px solid var(--color-yellow);
    color: var(--color-yellow);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-title span {
    color: var(--color-yellow);
    background: linear-gradient(45deg, var(--color-yellow) 0%, #FFE082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-300);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-100);
}

.feature-badge i {
    font-size: 1.2rem;
}

/* Hero Image Area */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    position: absolute;
    width: 380px;
    height: 380px;
    background-color: var(--color-red);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
}

.hero-img {
    position: relative;
    z-index: 2;
    max-width: 110%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.promo-sticker {
    position: absolute;
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 100%);
    color: var(--color-black);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow-dark), 0 0 0 5px rgba(255, 193, 7, 0.3);
    z-index: 3;
    transform: rotate(12deg);
    animation: stickerPulse 3s infinite alternate;
}

@keyframes stickerPulse {
    0% { transform: rotate(12deg) scale(1); }
    100% { transform: rotate(12deg) scale(1.08); }
}

.sticker-top {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.sticker-price {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

/* Dynamic Scrolling Banner */
.scrolling-banner {
    background-color: var(--color-yellow);
    border-top: 3px solid var(--color-black);
    border-bottom: 3px solid var(--color-black);
    padding: 14px 0;
    transform: rotate(-1.5deg) scale(1.02);
    margin-top: 40px;
    z-index: 5;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-content {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-black);
    letter-spacing: 1px;
    animation: scrollText 25s linear infinite;
}

@keyframes scrollText {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    color: var(--color-red);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: rgba(229, 57, 53, 0.08);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-700);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background-color: var(--color-cream);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-yellow);
    box-shadow: var(--shadow-md);
}

.about-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--color-red);
    color: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transform: rotate(-3deg);
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.2);
}

.about-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--color-black);
}

.about-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-section {
    padding: 100px 0;
    background-color: var(--color-cream-dark);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.menu-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--color-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
}

.menu-tab-btn.active {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    box-shadow: 0 6px 15px rgba(229, 57, 53, 0.25);
}

.menu-tab-btn:not(.active):hover {
    border-color: var(--color-red);
    color: var(--color-red);
    background-color: rgba(229, 57, 53, 0.02);
}

/* Menu Grid Toggles */
.menu-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.menu-grid.active {
    display: grid;
    animation: fadeInUp 0.4s ease-in-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-yellow);
    box-shadow: var(--shadow-md);
}

.menu-card-img-wrapper {
    position: relative;
    height: 180px;
    background-color: var(--gray-100);
    overflow: hidden;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    z-index: 2;
    text-transform: uppercase;
}

.menu-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-black);
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 16px;
    flex-grow: 1;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-red);
}

.btn-order {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Extra Toppings Box */
.toppings-section {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-top: 50px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-100);
}

.toppings-title {
    font-size: 1.35rem;
    color: var(--color-black);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toppings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.topping-item {
    background-color: var(--color-cream);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.topping-name {
    color: var(--color-black);
}

.topping-price {
    color: var(--color-red);
    font-weight: 700;
}

/* ==========================================================================
   PROMO SECTION
   ========================================================================== */
.promo-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.promo-banner {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-yellow);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.promo-info {
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.promo-desc {
    font-size: 1.05rem;
    color: var(--color-white);
    margin-bottom: 30px;
    opacity: 0.95;
}

.promo-bullets {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.promo-bullet i {
    color: var(--color-yellow);
}

.promo-graphics {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.promo-icon {
    font-size: 8rem;
    color: var(--color-yellow);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    animation: rideCycle 4s ease-in-out infinite;
}

@keyframes rideCycle {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}

.free-delivery-badge {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    font-size: 1.1rem;
    border: 2px solid var(--color-yellow);
    box-shadow: var(--shadow-dark);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-red);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--color-yellow);
    margin-bottom: 20px;
}

.stars i {
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-yellow-light);
    color: var(--color-yellow-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.reviewer-name {
    font-size: 0.95rem;
    color: var(--color-black);
    font-weight: 700;
}

.reviewer-status {
    font-size: 0.8rem;
    color: var(--gray-700);
}

/* ==========================================================================
   LOCATIONS SECTION
   ========================================================================== */
.locations-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.location-card {
    background-color: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 2px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-yellow);
    box-shadow: var(--shadow-md);
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(28, 28, 28, 0.08);
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.location-card h3 {
    font-size: 1.6rem;
    color: var(--color-black);
    margin-bottom: 20px;
    padding-right: 80px;
}

.location-card p.address {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card p.address i {
    color: var(--color-red);
}

.location-card .hours {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-yellow);
}

.location-card .hours i {
    color: var(--color-yellow-dark);
}

.location-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: auto;
}

/* ==========================================================================
   SOCIAL MEDIA SECTION
   ========================================================================== */
.social-section {
    padding: 80px 0;
    background-color: var(--color-black);
    color: var(--color-white);
    border-top: 3px solid var(--color-yellow);
}

.social-section h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.social-section p {
    color: var(--gray-300);
    margin-bottom: 32px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.social-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: var(--color-white);
}

.social-btn.tiktok {
    background-color: #010101;
    color: var(--color-white);
    border: 2px solid var(--color-yellow);
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #111111;
    color: var(--color-white);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--color-black-light);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-style: italic;
    color: var(--color-yellow);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.footer-ctas {
    background-color: var(--color-black);
    max-width: 600px;
    margin: 0 auto 50px auto;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-ctas h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-black-light);
    margin-bottom: 30px;
}

.footer-bottom {
    font-size: 0.85rem;
    color: var(--gray-700);
}

/* ==========================================================================
   STICKY FLOATING WHATSAPP
   ========================================================================== */
.sticky-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.sticky-wa:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128C7E;
}

.tooltip-text {
    position: absolute;
    right: 75px;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--color-black);
}

.sticky-wa:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.modal {
    background-color: var(--color-white);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-dark);
    border: 3px solid var(--color-yellow);
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-backdrop.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-red);
}

.modal-header {
    padding: 24px;
    background-color: var(--color-cream);
    border-bottom: 2px solid var(--gray-100);
}

.modal-header h3 {
    font-size: 1.4rem;
    color: var(--color-black);
    margin-bottom: 4px;
}

.modal-item-desc {
    font-size: 0.85rem;
    color: var(--gray-700);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex-grow: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-black);
    margin-bottom: 8px;
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    background-color: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 4px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.qty-val {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Custom Checkboxes */
.toppings-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.topping-option {
    display: block;
    position: relative;
    cursor: pointer;
}

.topping-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.topping-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.topping-option input:checked ~ .topping-option-content {
    border-color: var(--color-red);
    background-color: rgba(229, 57, 53, 0.04);
}

.price-add {
    color: var(--color-red);
}

/* Radio selectors */
.branch-selector, .method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.branch-option, .method-option {
    position: relative;
    cursor: pointer;
}

.branch-option input, .method-option input {
    position: absolute;
    opacity: 0;
}

.branch-option-content, .method-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background-color: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    text-align: center;
    transition: var(--transition);
}

.method-option-content {
    flex-direction: row;
    gap: 8px;
    font-weight: 600;
    padding: 14px;
}

.branch-option input:checked ~ .branch-option-content,
.method-option input:checked ~ .method-option-content {
    border-color: var(--color-red);
    background-color: rgba(229, 57, 53, 0.04);
    font-weight: 600;
}

.branch-option-content strong {
    font-size: 0.95rem;
    color: var(--color-black);
}

.branch-option-content span {
    font-size: 0.75rem;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-black);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-red);
    background-color: var(--color-white);
}

.form-control.input-error {
    border-color: var(--color-red) !important;
    background-color: #FFF5F5 !important;
    box-shadow: 0 0 0 4px rgba(229, 57, 85, 0.15) !important;
    animation: inputShake 0.4s ease-in-out;
}

@keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

textarea.form-control {
    height: 80px;
    resize: none;
}

.help-text {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.modal-footer {
    padding: 24px;
    background-color: var(--color-cream);
    border-top: 2px solid var(--gray-100);
}

.modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1rem;
}

.total-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-red);
    font-weight: 800;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Notebooks & Large Screens */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image-container {
        order: -1;
        margin-bottom: 20px;
    }
    
    .hero-img {
        max-width: 70%;
    }
    
    .hero-blob {
        width: 300px;
        height: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .toppings-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .promo-banner {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .promo-bullets {
        align-items: center;
    }
    
    .promo-icon {
        font-size: 6rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .header-cta, .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .menu-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .menu-tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .location-actions {
        grid-template-columns: 1fr;
    }
    
    .footer-buttons {
        flex-direction: column;
    }
    
    .footer-buttons .btn {
        width: 100%;
    }
    
    .sticky-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .tooltip-text {
        display: none; /* Hide tooltips on mobile touch */
    }
    
    .modal {
        max-height: 95vh;
    }
    
    .branch-selector, .method-selector {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .hero-video-wrapper {
        width: 100%;
        max-width: 320px;
        height: 440px;
    }
}

/* ==========================================================================
   NEW STYLES FOR VIDEO & MAPS EMBEDS
   ========================================================================== */
.hero-video-wrapper {
    position: relative;
    width: 328px;
    max-width: 100%;
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 3px solid var(--color-yellow);
    z-index: 2;
    background-color: var(--color-black-light);
    margin: 0 auto;
}

.hero-video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-embed-wrapper {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.location-card:hover .map-embed-wrapper {
    border-color: var(--color-yellow);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   CAROUSEL SLIDER FOR TESTIMONIALS
   ========================================================================== */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 40px;
}

.slider-wrapper {
    position: relative;
    height: auto;
}

.testimonial-slide {
    display: none;
    width: 100%;
}

.testimonial-slide.active {
    display: block;
    animation: fadeInSlide 0.5s ease-in-out forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-arrow {
    background-color: var(--color-white);
    color: var(--color-red);
    border: 2px solid var(--color-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: translateY(-2px);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--color-red);
    transform: scale(1.2);
}

/* ==========================================================================
   MULTI-ITEM MODAL LIST
   ========================================================================== */
.modal-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 16px;
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 8px;
}

.modal-menu-group-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-black);
    margin: 10px 0 6px 0;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--color-yellow);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-menu-group-title:first-of-type {
    margin-top: 0;
}

.modal-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--color-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.modal-menu-item.selected {
    border-color: var(--color-red);
    background-color: rgba(229, 57, 53, 0.02);
}

.modal-menu-item-info {
    display: flex;
    flex-direction: column;
}

.modal-menu-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-black);
}

.modal-menu-item-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-red);
}

.modal-menu-item-qty {
    display: flex;
    align-items: center;
    background-color: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 2px;
}

.modal-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.modal-qty-btn:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.modal-qty-val {
    width: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN ADDITIONS
   ========================================================================== */
@media (max-width: 768px) {
    .slider-container {
        padding: 0 10px;
    }
}

.rating-val {
    font-weight: 700;
    margin-left: 8px;
    color: var(--color-black);
    font-size: 0.9rem;
}

.ordered-items {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 16px;
    background-color: var(--gray-100);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--gray-200);
}

/* ==========================================================================
   CUSTOM TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background-color: var(--color-black);
    color: var(--color-white);
    border-left: 5px solid var(--color-red);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    animation: slideInToast 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast.toast-success {
    border-left-color: #25D366;
}

.toast.toast-warning {
    border-left-color: var(--color-yellow);
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-icon.warning { color: var(--color-yellow); }
.toast-icon.error { color: var(--color-red); }
.toast-icon.success { color: #25D366; }

.toast-message {
    font-weight: 500;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

@keyframes slideInToast {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOutToast {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .toast-container {
        top: auto;
        bottom: 100px; /* position above sticky WA button */
        left: 20px;
        right: 20px;
        align-items: center;
    }
    .toast {
        min-width: 0;
        width: 100%;
    }
}
