/* =========================================================================
   B60 Burgers | Brand Styling & Modern Aesthetics
   ========================================================================= */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Brand Colors — B60 Logo Palette */
    --b60-red: #F05A1A;       /* Brand Orange */
    --b60-yellow: #FFE500;    /* Brand Yellow */
    --b60-dark: #1B2A4A;      /* Brand Navy */
    --b60-light: #F8F9FA;     /* Off-White Background */
    --b60-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(240, 90, 26, 0.18);
    --transition-fast: 0.2s ease-out;
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-pill: 50px;
}

/* =========================================================================
   Announcement Bar
   ========================================================================= */
.announcement-bar {
    background-color: var(--b60-red);
    color: var(--b60-white);
    overflow: hidden;
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    z-index: 1010;
}

.announcement-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-right: 2rem;
}

.announcement-sep {
    color: rgba(255,255,255,0.4);
}

.announcement-item i {
    margin-right: 0.4rem;
    color: var(--b60-yellow);
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announcement-close {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.2);
    border: none;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.announcement-bar.hidden {
    display: none;
}

/* =========================================================================
   Our Story Section
   ========================================================================= */
.story-section {
    padding: var(--space-xl) 0;
    background-color: var(--b60-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(240, 90, 26, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--b60-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-img-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.story-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.story-badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--b60-red);
    border: 4px solid var(--b60-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: var(--b60-white);
    box-shadow: 0 8px 20px rgba(240, 90, 26, 0.4);
}

.story-badge-float span {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.story-badge-float strong {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    color: var(--b60-yellow);
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .story-stats {
        justify-content: center;
    }
    .story-section .section-title {
        text-align: center !important;
    }
    .story-img-wrap {
        margin: 0 auto;
    }
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-section {
    padding: var(--space-xl) 0;
    background-color: var(--b60-white);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 2px solid rgba(0,0,0,0.07);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.open {
    border-color: var(--b60-red);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--b60-dark);
    text-align: left;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--b60-red);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--b60-red);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--b60-dark);
    background-color: var(--b60-light);
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.text-center { text-align: center; }
.text-light { color: var(--b60-white); }
.highlight { color: var(--b60-red); }
.highlight-text { color: var(--b60-yellow); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--border-radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
    z-index: -1;
    border-radius: inherit;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background-color: var(--b60-red);
    color: var(--b60-white);
    box-shadow: 0 4px 15px rgba(240, 90, 26, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 90, 26, 0.5);
}

.btn-secondary {
    background-color: var(--b60-yellow);
    color: var(--b60-dark);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 229, 0, 0.45);
}

.btn-talabat {
    background-color: #FF5A00; /* Talabat Brand Color */
    color: white;
}

.btn-noon {
    background-color: #FEE000; /* Noon Brand Color */
    color: #1A1A1A;
}

.delivery-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* --- Retro Badges --- */
.retro-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--b60-yellow);
    color: var(--b60-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    border-radius: var(--border-radius-pill);
    margin-bottom: 1rem;
    border: 2px solid var(--b60-red);
    box-shadow: 2px 2px 0px var(--b60-red);
}

.retro-badge.dark {
    background-color: var(--b60-dark);
    color: var(--b60-yellow);
    border-color: var(--b60-yellow);
    box-shadow: 2px 2px 0px var(--b60-yellow);
}

/* =========================================================================
   Header & Navigation
   ========================================================================= */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.main-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 64px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--b60-dark);
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--b60-red);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--b60-red);
}

.nav-link.active::after {
    width: 100%;
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Toggle hidden on desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--b60-dark);
    cursor: pointer;
}

/* --- Mobile Navigation Overlay --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--b60-dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    overflow: hidden;
}

/* Brand dot pattern background */
.mobile-nav-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(240, 90, 26, 0.18) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Orange accent strip on left edge */
.mobile-nav-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--b60-red) 0%, var(--b60-yellow) 50%, var(--b60-red) 100%);
}

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

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    color: var(--b60-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.close-menu:hover {
    background: var(--b60-red);
    border-color: var(--b60-red);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
    position: relative;
    transition: color 0.2s ease;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--b60-red);
    border-radius: 2px;
    transition: width 0.25s ease;
}

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

.mobile-nav-link:hover::after {
    width: 100%;
}

/* Mobile nav CTA button — override for dark bg */
.mobile-nav-overlay .mobile-cta {
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 0.85rem 2.5rem;
    position: relative;
    z-index: 1;
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 2rem;
    background-color: var(--b60-light);
    overflow: hidden;
    position: relative;
}

/* Background Retro pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--b60-red) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.22;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Graphic — Starburst Composition */
.hero-graphic {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Starburst background shape */
.hero-starburst {
    position: absolute;
    width: 78%;
    height: 78%;
    background-color: var(--b60-yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    z-index: 0;
    animation: burst-spin 18s linear infinite;
    opacity: 0.95;
}

@keyframes burst-spin {
    from { transform: rotate(0deg) scale(1); }
    to   { transform: rotate(360deg) scale(1.04); }
}

/* Burger image in a tilted card frame */
.hero-img-frame {
    position: relative;
    z-index: 2;
    width: 72%;
    transform: rotate(-3deg);
    animation: float-tilt 5s ease-in-out infinite;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.35));
}

@keyframes float-tilt {
    0%   { transform: rotate(-3deg) translateY(0px); }
    50%  { transform: rotate(-1deg) translateY(-16px); }
    100% { transform: rotate(-3deg) translateY(0px); }
}

.floating-burger {
    width: 100%;
    border-radius: 20px;
    display: block;
    border: 5px solid var(--b60-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* "SMASHED FRESH" stamp badge on image */
.hero-badge-smashed {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 80px;
    height: 80px;
    background: var(--b60-red);
    color: var(--b60-white);
    border-radius: 50%;
    border: 3px solid var(--b60-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
    box-shadow: 0 4px 15px rgba(240,90,26,0.4);
    animation: badge-pop 3s ease-in-out infinite alternate;
}

@keyframes badge-pop {
    from { transform: scale(1) rotate(-8deg); }
    to   { transform: scale(1.08) rotate(-5deg); }
}

/* Floating pills */
.hero-pill-1,
.hero-pill-2 {
    position: absolute;
    background: var(--b60-dark);
    color: var(--b60-yellow);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    z-index: 3;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-pill-1 {
    top: 12%;
    left: 0%;
    animation: pill-float 4s ease-in-out infinite;
}

.hero-pill-2 {
    bottom: 18%;
    right: 0%;
    animation: pill-float 4s ease-in-out infinite 1.5s;
}

@keyframes pill-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* =========================================================================
   Menu Section
   ========================================================================= */
.menu-section {
    padding: var(--space-xl) 0;
    background-color: var(--b60-white);
    border-top: 5px solid var(--b60-red);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title span.highlight {
    color: var(--b60-red);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: var(--b60-red);
    border-radius: 3px;
    margin: 0.75rem auto 0;
}

.section-desc {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

@media (max-width: 600px) {
    .menu-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        gap: 0.6rem;
        /* hide scrollbar but keep scrollable */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .menu-filters::-webkit-scrollbar {
        display: none;
    }
    .filter-btn {
        flex-shrink: 0;
    }
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--b60-dark);
    background: transparent;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--b60-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--b60-red);
    border-color: var(--b60-red);
    color: var(--b60-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item.filter-hidden {
    display: none !important;
}

.menu-item {
    background: var(--b60-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(240, 90, 26, 0.25);
}

.menu-item-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #eee;
}

.limited-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--b60-red);
    color: var(--b60-white);
    padding: 5px 15px;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-radius: 5px;
    z-index: 2;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    from { opacity: 0.8; transform: scale(1); }
    to { opacity: 1; transform: scale(1.05); }
}

/* Menu Images */
.real-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
    display: block;
}

.menu-item:hover .real-img {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.item-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.item-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1; /* Pushes footer down */
}

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

.item-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--b60-red);
}

/* =========================================================================
   Loyalty Section (B60 Club)
   ========================================================================= */
.loyalty-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--b60-red) 0%, #c94400 60%, var(--b60-dark) 100%);
    position: relative;
    overflow: hidden;
}

.loyalty-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.loyalty-benefits {
    margin-bottom: 2rem;
}

.loyalty-benefits li {
    color: var(--b60-white);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.loyalty-benefits i {
    color: var(--b60-yellow);
    font-size: 1.25rem;
}

/* Stamp Card Visualizer */
.loyalty-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.stamp-card-container {
    position: relative;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.stamp-card-container:hover {
    transform: translateY(-5px) rotate(2deg);
}

.stamp-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    border: 4px solid var(--b60-white);
    display: block;
}

/* Dynamic glow behind the image */
.card-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: var(--b60-red);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* =========================================================================
   Locations Section
   ========================================================================= */
.locations-section {
    padding: var(--space-xl) 0;
    background-color: var(--b60-light);
    position: relative;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: var(--b60-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(240, 90, 26, 0.15);
}

/* Orange top band with number */
.loc-header {
    background: var(--b60-red);
    padding: 1.25rem 1.5rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.loc-header::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 12px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.loc-num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.25);
    line-height: 1;
    letter-spacing: -0.03em;
}

.loc-city {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--b60-dark);
    background: var(--b60-yellow);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    align-self: flex-start;
}

.loc-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.location-name {
    font-size: 1.3rem;
    color: var(--b60-dark);
    margin-bottom: 0.35rem;
}

.location-address {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.loc-hours {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 0.6rem 0.85rem;
    background: rgba(240, 90, 26, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--b60-red);
    line-height: 1.5;
    flex: 1;
}

.loc-hours i {
    color: var(--b60-red);
    font-size: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.direction-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--b60-red);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease, color 0.2s ease;
    margin-top: auto;
}

.direction-link:hover {
    color: var(--b60-dark);
    gap: 0.7rem;
}

.direction-link i {
    font-size: 0.75rem;
}

/* =========================================================================
   Order CTA Strip
   ========================================================================= */
.order-cta-strip {
    background: var(--b60-red);
    padding: 3.5rem 0;
}

.order-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.order-cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--b60-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.order-cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.order-cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .order-cta-inner { flex-direction: column; text-align: center; }
    .order-cta-btns { justify-content: center; }
}

/* =========================================================================
   Footer
   ========================================================================= */
/* Checkerboard Pattern Divider */
.checker-divider {
    position: relative;
    height: 60px;
    background: var(--b60-dark);
    margin-bottom: -1px;
    overflow: hidden;
}

.checker-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--b60-light);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.checker-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--b60-red);
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 85%);
    opacity: 0.85;
}

.main-footer {
    background-color: var(--b60-dark);
    padding: 4rem 0 2rem;
    border-top: none;
}

.footer-tagline {
    color: rgba(255,255,255,0.55) !important;
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    color: var(--b60-yellow);
}

.footer-links a {
    color: rgba(255,255,255,0.6) !important;
}

.footer-links a:hover {
    color: var(--b60-red) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.35) !important;
}

.social-icons a {
    background-color: rgba(255,255,255,0.08) !important;
    color: var(--b60-white) !important;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 64px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #666;
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #555;
}

.footer-links a:hover {
    color: var(--b60-red);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--b60-light);
    color: var(--b60-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--b60-red);
    color: var(--b60-white);
    transform: translateY(-3px);
}

/* =========================================================================
   Gallery Section
   ========================================================================= */
.gallery-section {
    padding: var(--space-xl) 0;
    background-color: var(--b60-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    background-color: var(--b60-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Animations */
@keyframes pulse-small {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

.btn-talabat, .btn-noon {
    animation: pulse-small 2s infinite alternate ease-in-out;
}

.btn-talabat:hover, .btn-noon:hover {
    animation-play-state: paused;
}

/* Footer Bottom Polish */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: #888;
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .hero-container, .loyalty-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .loyalty-benefits {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list, .cta-order {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--b60-red);
    color: var(--b60-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--b60-dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* =========================================================================
   Digital Stamp Card
   ========================================================================= */
/* ── Loyalty Card Preview (static, website) ── */
.loyalty-card-preview {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Orange top */
.lcp-top {
    background: var(--b60-red);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.lcp-top::after {
    content: '';
    position: absolute; right: -20px; top: -20px;
    width: 80px; height: 80px; border-radius: 50%;
    border: 10px solid rgba(255,255,255,0.1);
    pointer-events: none;
}
.lcp-brand-group {
    display: flex; align-items: center; gap: 0.7rem; position: relative; z-index: 1;
}
.lcp-logo { height: 44px; width: auto; }
.lcp-brand-text { display: flex; flex-direction: column; }
.lcp-brand-name {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 900;
    color: var(--b60-yellow); line-height: 1; letter-spacing: 0.05em;
}
.lcp-card-label {
    font-size: 0.6rem; font-weight: 600;
    color: rgba(255,255,255,0.65); letter-spacing: 0.2em;
    text-transform: uppercase; margin-top: 4px;
}
.lcp-offer-text {
    font-family: var(--font-heading);
    font-size: 0.8rem; font-weight: 900;
    color: var(--b60-yellow); text-align: right;
    line-height: 1.2; text-transform: uppercase;
    position: relative; z-index: 1;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

/* Yellow bar */
.lcp-bar {
    background: var(--b60-yellow);
    padding: 0.4rem 1.4rem;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.6rem; font-weight: 700; color: var(--b60-dark);
    letter-spacing: 0.18em; text-transform: uppercase;
}
.lcp-bar-dots { color: var(--b60-red); letter-spacing: 2px; font-size: 0.55rem; }

/* Stamp circles zone */
.lcp-stamp-zone {
    background: #fff;
    padding: 1.2rem 1.4rem 1rem;
    display: flex; flex-direction: column; align-items: center; gap: 0.85rem;
    position: relative; overflow: hidden;
}
.lcp-stamp-zone::before {
    content: 'B60';
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 5rem; font-weight: 900;
    color: rgba(240,90,26,0.04);
    pointer-events: none; white-space: nowrap;
}

.lcp-circles {
    display: flex; gap: 0.7rem;
    align-items: center; justify-content: center;
    position: relative; z-index: 1;
}
.lcp-circle {
    width: 52px; height: 52px; border-radius: 50%;
    border: 2px dashed rgba(240,90,26,0.45);
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 700;
    color: rgba(240,90,26,0.22);
    position: relative; flex-shrink: 0;
}
.lcp-circle::before {
    content: '';
    position: absolute; inset: 5px; border-radius: 50%;
    background: rgba(255,229,0,0.06);
    border: 1px solid rgba(240,90,26,0.08);
}

.lcp-store-note {
    font-size: 0.75rem; color: rgba(27,42,74,0.55);
    text-align: center; line-height: 1.5;
    position: relative; z-index: 1;
}
.lcp-store-note i { color: var(--b60-red); margin-right: 4px; }

/* Reward strip */
.lcp-reward {
    background: var(--b60-yellow);
    padding: 0.75rem 1.4rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.lcp-reward-icon { font-size: 1.5rem; flex-shrink: 0; }
.lcp-reward-headline {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 900;
    color: var(--b60-red); text-transform: uppercase;
}
.lcp-reward-sub { font-size: 0.65rem; color: #555; margin-top: 2px; }

/* Footer */
.lcp-footer {
    background: #D44C10;
    padding: 0.45rem 1.4rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.6rem; color: rgba(255,255,255,0.55);
}
.lcp-site {
    font-family: var(--font-heading);
    font-size: 0.75rem; font-weight: 700; color: var(--b60-yellow);
}

@media (max-width: 992px) {
    .loyalty-card-preview { max-width: 360px; margin: 0 auto; }
}

/* =========================================================================
   Announcement Bar
   ========================================================================= */
.announcement-bar {
    background-color: var(--b60-red);
    color: var(--b60-white);
    padding: 0.55rem 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1010;
    display: flex;
    align-items: center;
}

.announcement-bar.hidden {
    display: none;
}

.announcement-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    flex: 1;
    min-width: 0;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announcement-item {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--b60-white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.announcement-item i {
    color: var(--b60-yellow);
}

.announcement-sep {
    color: var(--b60-yellow);
    font-weight: 900;
    flex-shrink: 0;
}

.announcement-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    flex-shrink: 0;
    transition: color 0.2s;
    margin-left: 0.75rem;
}

.announcement-close:hover {
    color: var(--b60-white);
}

/* =========================================================================
   Our Story Section
   ========================================================================= */
.story-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, #fff5f0 0%, var(--b60-light) 100%);
    border-top: 5px solid var(--b60-red);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-content .section-title::after {
    margin: 0.75rem 0 0;
}

.story-text {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(240, 90, 26, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--b60-red);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    margin-top: 0.35rem;
}

.story-img-wrap {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: visible;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-badge-float {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: var(--b60-red);
    color: var(--b60-white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 8px 25px rgba(240, 90, 26, 0.4);
    border: 3px solid var(--b60-white);
}

.story-badge-float span {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.story-badge-float strong {
    font-size: 1.4rem;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content {
        text-align: center;
    }

    .story-content .section-title::after {
        margin: 0.75rem auto 0;
    }

    .story-stats {
        justify-content: center;
    }

    .story-badge-float {
        right: 1rem;
    }
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-section {
    padding: var(--space-xl) 0;
    background-color: var(--b60-white);
    border-top: 5px solid var(--b60-red);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid rgba(0, 0, 0, 0.07);
    border-left: 4px solid transparent;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    background: var(--b60-white);
}

.faq-item:hover {
    border-left-color: rgba(240, 90, 26, 0.4);
    transform: translateX(3px);
}

.faq-item.open {
    border-color: rgba(240, 90, 26, 0.2);
    border-left-color: var(--b60-red);
    border-left-width: 4px;
    box-shadow: 0 6px 24px rgba(240, 90, 26, 0.1);
    transform: translateX(3px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--b60-dark);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--b60-red);
}

.faq-item.open .faq-question {
    color: var(--b60-red);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(240, 90, 26, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
    color: var(--b60-red);
    font-size: 0.75rem;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--b60-red);
    color: var(--b60-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    background: linear-gradient(to bottom, rgba(240, 90, 26, 0.03), transparent);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(240, 90, 26, 0.1);
}

/* =========================================================================
   Loading Screen
   ========================================================================= */
.loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--b60-red);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hideLoader 0.6s ease 1.8s forwards;
}

@keyframes hideLoader {
    0%   { opacity: 1; pointer-events: all; }
    100% { opacity: 0; pointer-events: none; visibility: hidden; }
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: var(--b60-white);
    text-shadow: 4px 4px 0 var(--b60-dark);
    animation: loader-pop 0.8s ease-in-out infinite alternate;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.loader-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

@keyframes loader-pop {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-fill {
    height: 100%;
    width: 0;
    background: var(--b60-yellow);
    border-radius: 4px;
    animation: loader-fill 1.4s ease forwards;
}

@keyframes loader-fill {
    0%   { width: 0; }
    100% { width: 100%; }
}

/* =========================================================================
   Scroll Reveal Animations
   ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================================
   Mobile Sticky Order Bar
   ========================================================================= */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 997;
    background: var(--b60-dark);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    border-top: 3px solid var(--b60-red);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-sticky-bar.visible {
    transform: translateY(0);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sticky-btn:active {
    transform: scale(0.97);
    opacity: 0.85;
}

.sticky-talabat {
    background-color: #FF5A00;
    color: var(--b60-white);
}

.sticky-noon {
    background-color: #FEE000;
    color: #1A1A1A;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }
}

/* =========================================================================
   Order Platform Chooser Modal
   ========================================================================= */
.order-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.order-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-modal-box {
    background: var(--b60-white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.order-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--b60-light);
    border: none;
    color: var(--b60-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-modal-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--b60-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.order-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.talabat-btn {
    background: #FF5A00;
    color: white;
}

.noon-btn {
    background: #FEE000;
    color: #1A1A1A;
}

/* =========================================================================
   Ramadan Modal
   ========================================================================= */
.ramadan-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ramadan-modal.active {
    opacity: 1;
    visibility: visible;
}

.ramadan-modal-box {
    background: var(--b60-dark);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 2px solid var(--b60-red);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.ramadan-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ramadan-modal-header .ramadan-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.ramadan-modal-header h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: var(--b60-yellow);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.ramadan-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

.ramadan-deals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ramadan-deal {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ramadan-deal-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--b60-red);
}

.ramadan-deal-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--b60-white);
    font-size: 1rem;
}

.ramadan-validity {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.75rem;
}

.ramadan-instore {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFE500;
    background: rgba(255,229,0,0.08);
    border: 1px solid rgba(255,229,0,0.2);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* =========================================================================
   Mobile Hero Fix
   ========================================================================= */
@media (max-width: 768px) {
    .hero-graphic {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-pill-1,
    .hero-pill-2 {
        display: none;
    }

    .hero-img-frame {
        width: 85%;
    }

    .hero-badge-smashed {
        width: 64px;
        height: 64px;
        font-size: 0.5rem;
        bottom: -12px;
        right: -12px;
    }

    .hero-starburst {
        width: 88%;
        height: 88%;
    }
}

/* =========================================================================
   Promo Banner
   ========================================================================= */
.promo-banner {
    background: var(--b60-dark);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    border-top: 4px solid var(--b60-red);
    border-bottom: 4px solid var(--b60-red);
}

/* Dot grid texture */
.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(240, 90, 26, 0.22) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Large glowing orange orb — top-right */
.promo-banner::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(240, 90, 26, 0.45) 0%, transparent 65%);
    pointer-events: none;
    animation: promo-orb-pulse 4s ease-in-out infinite alternate;
}

/* Second glow — bottom-left */
.promo-inner::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(240, 90, 26, 0.25) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
}

@keyframes promo-orb-pulse {
    from { opacity: 0.7; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.1); }
}

.promo-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 229, 0, 0.12);
    border: 1px solid rgba(255, 229, 0, 0.35);
    color: var(--b60-yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.promo-headline {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    color: var(--b60-white);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 60px rgba(240, 90, 26, 0.5);
}

.promo-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
}

.promo-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.promo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    min-width: 160px;
    transition: background 0.2s ease;
}

.promo-item:hover {
    background: rgba(240, 90, 26, 0.12);
    border-color: rgba(240, 90, 26, 0.3);
}

.promo-item-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--b60-red);
    line-height: 1;
}

.promo-item-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--b60-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.promo-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    margin: 0 0.25rem;
    flex-shrink: 0;
}

.promo-validity {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.04em;
}

@media (max-width: 600px) {
    .promo-divider { display: none; }
    .promo-items { gap: 0.75rem; }
    .promo-item { min-width: 130px; padding: 1rem 1.5rem; }
}

/* =========================================================================
   Social Proof Strip
   ========================================================================= */
.social-strip {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--b60-light);
    overflow: hidden;
}

.social-strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-ig-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--b60-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--b60-dark);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-ig-link:hover {
    background: var(--b60-dark);
    color: var(--b60-white);
}

.social-ig-link i {
    font-size: 1.1rem;
}

/* Scrolling track */
.social-track-wrap {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.social-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: social-scroll 30s linear infinite;
}

.social-track:hover {
    animation-play-state: paused;
}

@keyframes social-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.social-card {
    width: 280px;
    flex-shrink: 0;
    background: var(--b60-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(240, 90, 26, 0.15);
}

.social-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.social-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.social-card:hover .social-card-img img {
    transform: scale(1.05);
}

.social-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240,90,26,0.7) 0%, rgba(27,42,74,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 2rem;
    color: white;
}

.social-card:hover .social-card-overlay {
    opacity: 1;
}

.social-card-body {
    padding: 1rem 1.1rem 1.1rem;
}

.social-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.social-handle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--b60-red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.social-stars {
    color: #FFB800;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.social-card-quote {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.55;
    font-style: italic;
}

@media (max-width: 768px) {
    .social-card { width: 240px; }
    .social-track { gap: 1rem; }
}
