/* =====================================================
   KEBAB EXPRESS — Light theme (white bg + kebab decor)
   Inspired by kebabexpress.md
   ===================================================== */

:root {
    --bg:           #ffffff;
    --bg-soft:      #fdf8ee;
    --bg-warm:      #fff5e0;
    --bg-dark:      #1a1612;
    --surface:      #ffffff;
    --surface-soft: #fbf6ec;
    --line:         #ece2cf;
    --line-2:       #f3ebd9;

    --yellow:       #f4c220;
    --yellow-2:     #ffd84d;
    --red:          #e1140a;
    --red-2:        #c20f06;
    --dark:         #1a1612;
    --text:         #1f1a13;
    --text-soft:    #5a4f3f;
    --text-dim:     #8a7c66;

    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 14px -6px rgba(60,40,15,0.12);
    --shadow:    0 22px 48px -22px rgba(60,40,15,0.18);
    --shadow-lg: 0 38px 80px -30px rgba(60,40,15,0.25);

    --ease:      cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--yellow); color: #000; }

/* The grain overlay from previous theme is now optional/removed */
.grain { display: none; }

/* ===== Decorative food shapes (subtle background) ===== */
.bg-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: .85;
    transition: transform 1.5s var(--ease);
}
.bg-decor.float { animation: floaty 7s ease-in-out infinite; }
.bg-decor.float-2 { animation: floaty 9s ease-in-out infinite reverse; }
@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(0); }
    50%      { transform: translateY(-18px) rotate(6deg); }
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-2);
    transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 6px 24px -18px rgba(60,40,15,0.2);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 18px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}
.logo img {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #000;
    padding: 4px;
    border: 3px solid var(--yellow);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease);
}
.logo:hover img { transform: rotate(-6deg) scale(1.05); }
.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    line-height: .85;
}
.logo-yellow { color: var(--dark); }
.logo-red    { color: var(--red); }

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.site-nav a {
    font-weight: 700;
    font-size: .92rem;
    position: relative;
    padding: 6px 0;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .8px;
}
.site-nav a:not(.btn-phone)::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
    border-radius: 3px;
}
.site-nav a:not(.btn-phone):hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a:not(.btn-phone):hover { color: var(--red); }

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--red);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 26px -10px rgba(225,20,10,0.45);
    transition: all .25s var(--ease);
    text-transform: uppercase;
    font-size: .85rem;
    letter-spacing: 1px;
}
.btn-phone:hover { background: var(--red-2); transform: translateY(-2px); }
.btn-phone::after { display: none; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    padding: 0 6px;
}
.nav-toggle span {
    display: block;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all .3s var(--ease);
}
.nav-toggle span:nth-child(1) { width: 26px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 22px; }
.nav-toggle.open span { width: 26px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--red); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--red); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 36px -14px rgba(225,20,10,0.55);
}
.btn-primary:hover { background: var(--red-2); transform: translateY(-2px); box-shadow: 0 22px 44px -16px rgba(225,20,10,0.6); }
.btn-ghost {
    border-color: var(--dark);
    color: var(--dark);
    background: transparent;
}
.btn-ghost:hover { background: var(--dark); color: var(--yellow); transform: translateY(-2px); }
.btn-yellow {
    background: var(--yellow);
    color: var(--dark);
    box-shadow: 0 14px 36px -14px rgba(244,194,32,0.6);
}
.btn-yellow:hover { background: var(--yellow-2); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: .95rem; }
.btn-sm { padding: 9px 16px; font-size: .78rem; }

/* ===== HERO v2 (Big Splash style — kebabexpress.md inspired) ===== */
.hero-v2 {
    position: relative;
    min-height: 720px;
    padding: 50px 0 100px;
    overflow: hidden;
    background: #fdf8ef;
}
.hero-v2-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(225,20,10,0.04) 1.5px, transparent 1.8px),
        linear-gradient(180deg, #fdf8ef 0%, #faf2e0 100%);
    background-size: 32px 32px, 100% 100%;
}
.hero-tomatoes {
    position: absolute;
    top: 18px;
    left: -28px;
    width: 280px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 22px 30px rgba(225,20,10,0.18));
    animation: floaty 7s ease-in-out infinite;
}
.hero-ring {
    position: absolute;
    width: 130px;
    z-index: 2;
    pointer-events: none;
}
.hero-ring-1 { top: 18%;  right: 22%; width: 130px; animation: floaty 8s ease-in-out infinite; }
.hero-ring-2 { bottom: 12%; right: 5%; width: 160px; animation: floaty 10s ease-in-out infinite reverse; }
.hero-ring-3 { top: 50%; right: 2%; width: 100px; animation: floaty 9s ease-in-out infinite; }

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 620px;
    z-index: 4;
}
.hero-v2-text {
    position: relative;
    z-index: 5;
    padding-top: 80px;
}
.hero-v2-eyebrow {
    display: inline-block;
    color: var(--red);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    letter-spacing: 4px;
    margin-bottom: 18px;
}
.hero-v2-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.8rem, 9vw, 7rem);
    line-height: .88;
    margin: 0 0 30px;
    letter-spacing: 1px;
    color: var(--dark);
    font-weight: 400;
}
.hero-v2-title .title-italic {
    color: var(--red);
    font-style: italic;
    letter-spacing: 2px;
}
.hero-v2-desc {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 480px;
    margin: 0 0 36px;
    line-height: 1.7;
}
.hero-v2-cta { margin-top: 8px; }
.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--yellow);
    color: var(--dark);
    padding: 17px 38px;
    border-radius: 999px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    box-shadow: 0 18px 40px -14px rgba(244,194,32,0.55);
    transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-order:hover { background: var(--yellow-2); transform: translateY(-3px); box-shadow: 0 26px 50px -16px rgba(244,194,32,0.7); }
.btn-order i { font-size: 1rem; background: #fff; width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--dark); }

/* === Hero visual (right side with splash + food) === */
.hero-v2-visual {
    position: relative;
    height: 620px;
    z-index: 4;
}
.hero-splash {
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 760px;
    height: 760px;
    z-index: 1;
    filter: drop-shadow(0 50px 80px rgba(225,20,10,0.25));
    animation: blobMorph 18s ease-in-out infinite;
}
@keyframes blobMorph {
    0%, 100% { transform: translateY(-50%) scale(1) rotate(0); }
    50%      { transform: translateY(-50%) scale(1.04) rotate(4deg); }
}
.hero-food {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background:
        url("https://images.unsplash.com/photo-1633321702518-7feccafb94d5?auto=format&fit=crop&w=900&q=85") center/cover;
    z-index: 2;
    box-shadow: 0 50px 90px -30px rgba(60,40,15,0.5);
    animation: floaty 6s ease-in-out infinite;
}
.hero-food::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.4);
    animation: spinSlow 40s linear infinite;
}
.hero-badge {
    position: absolute;
    top: 12%;
    left: 6%;
    width: 170px;
    height: 170px;
    z-index: 3;
    animation: floaty 5s ease-in-out infinite reverse;
}
.hero-badge img {
    width: 100%;
    height: 100%;
}
.hero-badge-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-align: center;
    padding: 18px;
}
.bt-eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 2px;
}
.bt-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    line-height: 1;
    color: var(--dark);
    letter-spacing: 1px;
}
.bt-price sup { font-size: .55rem; font-family: 'Manrope', sans-serif; letter-spacing: 1px; margin-right: 4px; vertical-align: top; }
.bt-price sub { font-size: .8rem; vertical-align: baseline; margin-left: 4px; font-family: 'Manrope', sans-serif; font-weight: 800; }

.hero-v2 .hero-scroll {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--red);
    font-size: 1.1rem;
    z-index: 5;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s var(--ease) infinite;
}

/* ===== Glovo icon inside button ===== */
.glovo-ico {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;
    object-fit: contain;
}

/* ===== Features bar ===== */
.stat strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--red);
    letter-spacing: 1px;
}
.stat strong i { font-size: 1.4rem; color: var(--yellow); margin-left: 4px; }
.stat span {
    font-size: .82rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}
.hero-scroll {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--red);
    font-size: 1.2rem;
    z-index: 3;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s var(--ease) infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ===== Features bar ===== */
.features-bar {
    background: var(--dark);
    padding: 30px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.features-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(244,194,32,0.15), transparent 35%),
        radial-gradient(circle at 90% 50%, rgba(225,20,10,0.15), transparent 35%);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .5px;
    transition: color .25s var(--ease);
}
.feature i {
    font-size: 1.8rem;
    color: var(--yellow);
}

/* ===== Section heading ===== */
.section-head {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
}
.section-eyebrow {
    display: inline-block;
    font-family: 'Caveat', cursive;
    color: var(--red);
    font-size: 1.8rem;
    margin-bottom: 6px;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1;
    margin: 0 0 14px;
    letter-spacing: 1.5px;
    color: var(--dark);
}
.section-sub {
    color: var(--text-soft);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== Menu ===== */
.menu-section {
    padding: 110px 0 100px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.menu-section::before, .menu-section::after {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    pointer-events: none;
}
.menu-section::before { top: 80px; left: -180px; background: radial-gradient(circle, rgba(244,194,32,0.16), transparent 70%); }
.menu-section::after  { bottom: 80px; right: -180px; background: radial-gradient(circle, rgba(225,20,10,0.10), transparent 70%); }

.menu-section .deco-1 { top: 6%; right: 8%; width: 110px; }
.menu-section .deco-2 { bottom: 12%; left: 4%; width: 130px; }

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
}
.tab {
    padding: 12px 24px;
    border-radius: 999px;
    background: #fff;
    border: 2px solid var(--line);
    color: var(--text-soft);
    font-weight: 800;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all .25s var(--ease);
    box-shadow: var(--shadow-sm);
}
.tab:hover { color: var(--red); border-color: var(--red); transform: translateY(-2px); }
.tab.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 14px 28px -10px rgba(225,20,10,0.5);
}

.category-block {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}
.category-block:last-child { margin-bottom: 0; }
.category-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 2px;
    margin: 0 0 32px;
    position: relative;
    padding-left: 26px;
    text-transform: uppercase;
    color: var(--dark);
}
.category-title::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 80%;
    background: linear-gradient(180deg, var(--yellow), var(--red));
    border-radius: 6px;
}

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

.product-card {
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225,20,10,0.25);
    box-shadow: var(--shadow);
}
/* Full-width image, ~50% of card height */
.product-img {
    aspect-ratio: 4 / 3;
    background-color: var(--bg-warm);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line-2);
}
.badge {
    position: absolute;
    top: 18px; left: 18px;
    background: var(--red);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 12px;
    border-radius: 999px;
    z-index: 5;
    box-shadow: 0 6px 16px -6px rgba(225,20,10,0.6);
}
.product-body {
    padding: 16px 16px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin: 0 0 6px;
    color: var(--dark);
}
.product-desc {
    color: var(--text-soft);
    font-size: .82rem;
    margin: 0 0 14px;
    flex-grow: 1;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Product foot layout with 2 buttons */
.product-foot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px dashed var(--line);
    padding-top: 12px;
    align-items: stretch;
}
.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--red);
    letter-spacing: 1px;
    text-align: center;
}
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-actions .btn-sm {
    padding: 9px 8px;
    font-size: .72rem;
    letter-spacing: .4px;
    width: 100%;
    justify-content: center;
    gap: 6px;
}
.btn-glovo {
    background: #00A082;
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(0,160,130,0.45);
}
.btn-glovo:hover { background: #00B894; transform: translateY(-2px); }
.btn-glovo .glovo-ico { filter: brightness(0) invert(1); }

/* ===== Featured banner / ad strip ===== */
.featured-strip {
    padding: 60px 0;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}
.featured-strip .deco-1 { top: 10%; left: 5%; width: 80px; }
.featured-strip .deco-2 { bottom: 10%; right: 5%; width: 100px; }
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    position: relative;
    z-index: 2;
}
.feature-card {
    background: linear-gradient(135deg, var(--dark), #2d241b);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    overflow: hidden;
    position: relative;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card.red { background: linear-gradient(135deg, var(--red), #a8100a); }
.feature-card.yellow { background: linear-gradient(135deg, var(--yellow), #c9a014); color: var(--dark); }
.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    margin: 0 0 8px;
}
.feature-card p { margin: 0 0 18px; opacity: .85; font-size: .9rem; }
.feature-card .btn-sm {
    background: #fff;
    color: var(--dark);
    padding: 8px 16px;
}
.feature-card .btn-sm:hover { background: var(--yellow); }
.feature-card i.bg-icon {
    position: absolute;
    right: -14px; bottom: -14px;
    font-size: 7rem;
    opacity: .12;
}

/* ===== About / Categories preview ===== */
.about-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.about-section .deco-1 { top: 8%; left: 4%; width: 90px; }
.about-section .deco-2 { bottom: 8%; right: 4%; width: 120px; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-text .section-eyebrow,
.about-text .section-title { text-align: left; }
.about-text .section-title { margin-bottom: 18px; }
.about-text p { color: var(--text-soft); font-size: 1.02rem; margin: 0 0 16px; }
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.about-tags span {
    background: var(--bg-warm);
    color: var(--dark);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
}
.about-tags i { color: var(--red); margin-right: 6px; }

.about-visual {
    position: relative;
    aspect-ratio: 1 / 1;
}
.about-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(244,194,32,0.4), transparent 60%),
        url("https://images.unsplash.com/photo-1561758033-d89a9ad46330?auto=format&fit=crop&w=800&q=80") center/cover;
    box-shadow: 0 40px 90px -30px rgba(60,40,15,0.4);
}
.about-circle::after {
    content: '';
    position: absolute;
    inset: -14px;
    border: 2px dashed var(--yellow);
    border-radius: 50%;
    animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.about-badge {
    position: absolute;
    background: var(--red);
    color: #fff;
    width: 130px; height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-weight: 800;
    box-shadow: 0 20px 40px -16px rgba(225,20,10,0.5);
    bottom: 10%;
    right: -10%;
    animation: floaty 5s ease-in-out infinite;
}
.about-badge strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: .9;
    display: block;
}
.about-badge span { font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; }

/* ===== CTA bar ===== */
.cta-bar {
    background: var(--dark);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 50%, rgba(244,194,32,0.25), transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(225,20,10,0.3), transparent 50%);
}
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.cta-inner h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    margin: 0 0 8px;
    color: #fff;
    letter-spacing: 1.5px;
}
.cta-inner p { color: rgba(255,255,255,0.8); margin: 0; }
.cta-inner .btn-primary { background: var(--yellow); color: var(--dark); }
.cta-inner .btn-primary:hover { background: var(--yellow-2); }

/* ===== Page hero (galerie / contact) ===== */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(244,194,32,0.18), transparent 60%),
        linear-gradient(180deg, var(--bg-warm), var(--bg));
}
.page-hero-bg { display: none; }
.page-hero .deco-1 { top: 18%; left: 8%; width: 90px; }
.page-hero .deco-2 { bottom: 14%; right: 8%; width: 110px; }
.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    margin: 8px 0 12px;
    letter-spacing: 2px;
    color: var(--dark);
    position: relative;
    z-index: 2;
}
.page-sub { color: var(--text-soft); max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }

/* ===== Gallery ===== */
.gallery-section { padding: 80px 0 100px; background: var(--bg); }
.gallery-grid {
    columns: 3;
    column-gap: 18px;
}
.gallery-item {
    display: block;
    margin-bottom: 18px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    break-inside: avoid;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    box-shadow: var(--shadow-sm);
}
.gallery-item:hover { box-shadow: var(--shadow); }
.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
    position: absolute;
    left: 14px; bottom: 14px;
    background: rgba(26,22,18,0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .82rem;
    backdrop-filter: blur(8px);
}
.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    background: rgba(225,20,10,0.65);
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26,22,18,0.94);
    backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.12);
    color: #fff;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all .25s var(--ease);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--red); }

/* ===== Contact ===== */
.contact-section { padding: 80px 0 100px; background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-block {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    box-shadow: var(--shadow-sm);
}
.contact-block:hover { transform: translateY(-3px); border-color: rgba(225,20,10,0.25); box-shadow: var(--shadow); }
.contact-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), var(--red-2));
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 12px 24px -10px rgba(225,20,10,0.45);
}
.contact-block h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin: 0 0 4px;
    letter-spacing: 1px;
    color: var(--dark);
}
.contact-block p { margin: 0; color: var(--text-soft); }
.contact-block a { color: var(--red); }

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.contact-socials a {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all .25s var(--ease);
    box-shadow: var(--shadow-sm);
}
.contact-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 480px;
    border: 1px solid var(--line-2);
    box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--dark);
    color: #d9cdb3;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(244,194,32,0.08), transparent 50%);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}
.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    color: var(--yellow);
    margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; color: #b3a78c; }
.footer-col ul li a:hover { color: var(--yellow); }
.contact-list li i { color: var(--yellow); margin-right: 8px; width: 18px; }
.footer-tagline { color: #b3a78c; margin: 14px 0 18px; font-size: .92rem; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s var(--ease);
    color: #fff;
}
.socials a:hover { background: var(--yellow); color: var(--dark); transform: translateY(-3px); }
.hours-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: 1px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    background: rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { margin: 0; color: #8a7e64; font-size: .85rem; }
.footer-bottom .credit i { margin: 0 4px; }
.footer-col .logo img { border-color: var(--yellow); }
.footer-col .logo .logo-yellow { color: var(--yellow); }

/* ===== Popup ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,22,18,0.78);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.popup-overlay[hidden] { display: none !important; }
.popup-overlay.show { opacity: 1; }
.popup-card {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    position: relative;
    transform: scale(.9) translateY(20px);
    transition: transform .4s var(--ease);
    box-shadow: var(--shadow-lg);
}
.popup-overlay.show .popup-card { transform: scale(1) translateY(0); }
.popup-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .25s var(--ease), transform .25s var(--ease);
}
.popup-close:hover { background: var(--red); transform: rotate(90deg); }
.popup-img {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-warm);
}
.popup-body { padding: 28px; text-align: center; }
.popup-eyebrow {
    color: var(--red);
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    font-weight: 700;
}
.popup-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.1rem;
    letter-spacing: 1.5px;
    margin: 4px 0 12px;
    color: var(--dark);
}
.popup-msg {
    color: var(--text-soft);
    margin: 0 0 22px;
    line-height: 1.6;
}

/* ===== Location popup (Comandă → 3 locații) ===== */
.loc-popup {
    position: fixed;
    inset: 0;
    background: rgba(26,22,18,0.78);
    backdrop-filter: blur(14px);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.loc-popup[hidden] { display: none !important; }
.loc-popup.show { opacity: 1; }
.loc-popup-card {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 440px;
    width: 100%;
    overflow: hidden;
    position: relative;
    transform: scale(.92) translateY(20px);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg);
}
.loc-popup.show .loc-popup-card { transform: scale(1) translateY(0); }
.loc-popup-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-warm);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all .2s var(--ease);
}
.loc-popup-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.loc-popup-head {
    padding: 28px 26px 18px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-warm), #fff);
    border-bottom: 1px solid var(--line-2);
}
.loc-popup-eyebrow {
    display: block;
    font-family: 'Caveat', cursive;
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 2px;
}
.loc-popup-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 0 0 6px;
    color: var(--dark);
}
.loc-popup-sub {
    color: var(--text-soft);
    margin: 0;
    font-size: .9rem;
}
.loc-popup-list {
    padding: 18px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.loc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
    text-decoration: none;
    color: var(--dark);
}
.loc-item:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -16px rgba(225,20,10,0.35);
    text-decoration: none;
}
.loc-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red), var(--red-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 18px -8px rgba(225,20,10,0.4);
}
.loc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.loc-info strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--dark);
}
.loc-info small {
    color: var(--text-soft);
    font-size: .82rem;
    font-weight: 600;
    margin-top: 2px;
}
.loc-call {
    color: var(--red);
    font-weight: 800;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.loc-call i { margin-right: 4px; }

/* ===== Empty state ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-dim);
}
.empty-state i { font-size: 3rem; color: var(--red); margin-bottom: 18px; opacity: .35; }
.empty-state p { font-size: 1.1rem; margin: 0; }

/* ===== Scroll reveal ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .hero-photo { width: 580px; height: 580px; right: -220px; }
    .hero-food { width: 440px; height: 440px; }
    .hero-splash { width: 620px; height: 620px; right: -100px; }
    .hero-tomatoes { width: 220px; }
    .hero-badge { width: 140px; height: 140px; }
}
@media (max-width: 960px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-visual { max-width: 420px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .gallery-grid { columns: 2; }
    .hero-photo { display: none; }
    .hero-content { max-width: 100%; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: 45px;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0 24px;
        gap: 0;
        border-bottom: 1px solid var(--line);
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s var(--ease), padding .4s var(--ease);
        box-shadow: var(--shadow);
    }
    .site-nav.open {
        max-height: 600px;
        padding: 20px 24px;
    }
    .site-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line-2);
        font-size: 1rem;
    }
    .site-nav a:last-child { border-bottom: none; }
    .btn-phone { justify-content: center; margin-top: 10px; }

    .hero { min-height: auto; padding: 60px 0 80px; }
    .hero-stats { gap: 22px; }
    .hero-cta .btn { flex: 1; min-width: 140px; }

    /* === HERO V2 MOBILE — match reference image (2-col compact) === */
    .hero-v2 {
        min-height: auto;
        padding: 14px 0 50px;
    }
    .hero-v2-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        min-height: auto;
        padding-top: 70px;
        align-items: center;
    }
    .hero-v2-text {
        padding-top: 0;
        text-align: left;
    }
    .hero-v2-text .hero-v2-desc {
        margin-left: 0;
        margin-right: 0;
    }
    .hero-v2-eyebrow {
        font-size: .8rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .hero-v2-title {
        font-size: clamp(2rem, 9vw, 3.4rem);
        margin-bottom: 14px;
        line-height: .9;
    }
    .hero-v2-desc {
        font-size: .78rem;
        line-height: 1.45;
        margin-bottom: 16px;
        max-width: none;
    }
    .btn-order {
        padding: 11px 20px;
        font-size: .9rem;
        gap: 8px;
        letter-spacing: 1px;
    }
    .btn-order i { width: 22px; height: 22px; font-size: .8rem; }

    .hero-v2-visual {
        height: 320px;
        position: relative;
    }
    .hero-splash {
        width: 380px;
        height: 380px;
        right: -90px;
        left: auto;
    }
    .hero-food {
        width: 240px;
        height: 240px;
        right: -10px;
    }
    .hero-food::before { inset: -6px; border-width: 1.5px; }

    .hero-tomatoes {
        width: 120px;
        top: 6px;
        left: -16px;
    }
    .hero-ring-1 { width: 56px; top: 8%; right: 28%; }
    .hero-ring-2 { width: 70px; bottom: 6%; right: -8px; }
    .hero-ring-3 { width: 48px; top: 55%; right: -12px; }
    .hero-badge {
        width: 84px;
        height: 84px;
        left: -10px;
        top: 18%;
    }
    .bt-eyebrow { font-size: .65rem; }
    .bt-price { font-size: 1.3rem; }
    .bt-price sup { font-size: .45rem; }
    .bt-price sub { font-size: .55rem; }

    .hero-v2 .hero-scroll { display: none; }

    .menu-section, .about-section, .contact-section, .gallery-section { padding: 70px 0; }

    /* PRODUCT CARDS - 2 columns on mobile */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-body { padding: 12px 10px 14px; }
    .product-name { font-size: 1.1rem; }
    .product-desc { font-size: .76rem; -webkit-line-clamp: 2; margin-bottom: 10px; }
    .product-price { font-size: 1.25rem; }
    .product-actions .btn-sm { font-size: .65rem; padding: 7px 6px; }
    .glovo-ico { width: 14px; height: 14px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-col .logo { justify-content: center; }
    .footer-col .socials { justify-content: center; }
    .contact-list li { justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .gallery-grid { columns: 1; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .stat strong { font-size: 1.7rem; }
    .logo img { width: 42px; height: 42px; border-width: 2px; }
    .logo-text { font-size: 1.15rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }

    /* keep 2-col hero even on smallest phones */
    .hero-v2-grid { gap: 12px; padding-top: 60px; }
    .hero-v2-title { font-size: clamp(1.7rem, 10vw, 2.8rem); }
    .hero-v2-desc { font-size: .72rem; }
    .hero-v2-visual { height: 280px; }
    .hero-splash { width: 320px; height: 320px; right: -70px; }
    .hero-food { width: 200px; height: 200px; right: -6px; }
    .hero-tomatoes { width: 95px; top: 4px; left: -12px; }
    .hero-badge { width: 70px; height: 70px; top: 14%; }
    .bt-price { font-size: 1.05rem; }
    .btn-order { padding: 10px 16px; font-size: .82rem; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* =====================================================
   ORDER MODE: POPUP + BANNER + HEADER CONTROLS + CART
   ===================================================== */

/* --- Header: mode switch + cart --- */
.btn-mode-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    color: #1a1612;
    border: 1.5px solid #ece2cf;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s, border-color .18s, transform .18s;
}
.btn-mode-switch:hover {
    background: #fdf8ee;
    border-color: #f4c220;
    transform: translateY(-1px);
}
.btn-mode-switch i { color: #e1140a; font-size: 13px; }
.btn-mode-switch .mode-switch-hint {
    font-size: 11px;
    color: #8a7c66;
    font-weight: 500;
    letter-spacing: .3px;
    margin-left: 4px;
    border-left: 1px solid #ece2cf;
    padding-left: 8px;
}

.btn-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a1612;
    color: #fff !important;
    text-decoration: none;
    transition: background .18s, transform .18s;
}
.btn-cart i {
    color: #fff !important;
    font-size: 16px;
    line-height: 1;
}
.btn-cart:hover { background: #e1140a; color: #fff !important; transform: translateY(-1px); }
.btn-cart:hover i { color: #fff !important; }
.btn-cart.is-hidden { display: none; }
.btn-cart .cart-label {
    display: none;
}
.btn-cart .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #f4c220;
    color: #1a1612 !important;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.btn-cart .cart-count:not(.has-items) { opacity: .55; }

/* --- Pickup banner (fixed top of page) --- */
.pickup-banner {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, #ffd84d 0%, #f4c220 100%);
    color: #1a1612;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 12px -6px rgba(0,0,0,.18);
}
.pickup-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    text-align: center;
    flex-wrap: wrap;
}
.pickup-banner__icon { font-size: 18px; color: #c20f06; }
.pickup-banner__text { font-size: 14px; font-weight: 600; }
.pickup-banner__text strong { font-weight: 800; }
.pickup-banner__sub { color: #5a4f3f; font-weight: 500; font-size: 13px; }

@media (max-width: 640px) {
    .pickup-banner__inner { padding: 9px 12px; gap: 8px; }
    .pickup-banner__text  { font-size: 12.5px; line-height: 1.35; }
    .pickup-banner__sub   { display: block; margin-top: 2px; font-size: 11.5px; }
}

/* --- Old price (struck-through) on product cards --- */
.product-price .price-old {
    display: inline-block;
    color: #b9ad96;
    font-size: 0.78em;
    text-decoration: line-through;
    margin-right: 6px;
    font-weight: 600;
}

/* --- MODE POPUP (first visit selector) --- */
.mode-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 12, 8, 0.62);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .28s ease;
}
.mode-popup.show { opacity: 1; }
.mode-popup[hidden] { display: none; }

.mode-popup__card {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px 30px;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,.45);
    transform: translateY(8px);
    transition: transform .32s ease;
}
.mode-popup.show .mode-popup__card { transform: translateY(0); }

.mode-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f7efde;
    color: #1a1612;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mode-popup__close:hover { background: #ece2cf; }

.mode-popup__head { text-align: center; margin-bottom: 28px; }
.mode-popup__logo { width: 80px; height: auto; margin: 0 auto 12px; display: block; }
.mode-popup__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px, 4.2vw, 34px);
    color: #1a1612;
    margin: 0 0 8px;
    letter-spacing: 1px;
}
.mode-popup__sub { color: #5a4f3f; font-size: 14px; margin: 0; }

.mode-popup__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.mode-option {
    position: relative;
    background: #fdf8ee;
    border: 2px solid #ece2cf;
    border-radius: 18px;
    padding: 22px 18px 18px;
    text-align: center;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    transition: border-color .2s, transform .2s, background .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mode-option:hover {
    border-color: #f4c220;
    background: #fff8e3;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -16px rgba(244,194,32,.6);
}
.mode-option--pickup:hover { border-color: #e1140a; box-shadow: 0 14px 28px -16px rgba(225,20,10,.45); background: #fff3f0; }

.mode-option__icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #ece2cf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1612;
    margin-bottom: 4px;
}
.mode-option--delivery .mode-option__icon { color: #ffb000; }
.mode-option--pickup .mode-option__icon   { color: #e1140a; }

.mode-option__title {
    font-size: 18px; font-weight: 800; color: #1a1612;
}
.mode-option__desc {
    font-size: 13px; color: #5a4f3f; line-height: 1.4;
}
.mode-option__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 14px;
    background: #1a1612;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
}
.mode-option--pickup .mode-option__cta { background: #e1140a; }
.mode-option__badge {
    position: absolute;
    top: -10px;
    right: 14px;
    background: #e1140a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 14px -4px rgba(225,20,10,.55);
}

@media (max-width: 560px) {
    .mode-popup__card { padding: 28px 18px 22px; border-radius: 20px; }
    .mode-popup__options { grid-template-columns: 1fr; gap: 12px; }
    .mode-option { padding: 18px 14px 16px; }
}

/* --- CART TOAST --- */
.cart-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    z-index: 9000;
    background: #1a1612;
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px -10px rgba(0,0,0,.45);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    font-size: 14px;
    font-weight: 600;
    max-width: calc(100vw - 32px);
}
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cart-toast[hidden] { display: none; }
.cart-toast i { color: #5fd36b; font-size: 17px; }
.cart-toast__link {
    color: #f4c220;
    text-decoration: none;
    font-weight: 800;
    border-left: 1px solid rgba(255,255,255,.18);
    padding-left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cart-toast__link:hover { color: #ffd84d; }

/* --- Add-to-cart button micro-animation --- */
.btn-add-cart.bumped { animation: cart-bump .35s ease; }
@keyframes cart-bump {
    0%   { transform: scale(1); }
    40%  { transform: scale(0.94); }
    70%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* =====================================================
   CART PAGE
   ===================================================== */
.cart-page { padding: 50px 0 80px; background: #fdf8ee; min-height: 60vh; }
.cart-head { text-align: center; margin-bottom: 30px; }
.cart-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5a4f3f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}
.cart-back:hover { color: #e1140a; }
.cart-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5.5vw, 54px);
    margin: 0 0 6px;
    letter-spacing: 1.5px;
    color: #1a1612;
}
.cart-subtitle { color: #5a4f3f; font-size: 15px; margin: 0; }

.cart-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 900px) { .cart-grid { grid-template-columns: 1fr; gap: 22px; } }

.cart-items-wrap { background: #fff; border-radius: 20px; padding: 18px; box-shadow: 0 12px 30px -20px rgba(0,0,0,.18); }
.cart-items { display: flex; flex-direction: column; gap: 12px; }

.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto auto auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid #f3ebd9;
    border-radius: 14px;
    background: #fffefb;
    transition: border-color .15s;
}
.cart-item:hover { border-color: #ece2cf; }
.cart-item__img {
    width: 64px; height: 64px;
    background-size: cover;
    background-position: center;
    background-color: #fdf8ee;
    border-radius: 10px;
    border: 1px solid #ece2cf;
}
.cart-item__name { margin: 0 0 4px; font-size: 15px; font-weight: 700; color: #1a1612; }
.cart-item__price { font-size: 13px; color: #5a4f3f; }
.cart-item__price small { color: #8a7c66; font-weight: 500; }

.cart-item__qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fdf8ee;
    border: 1px solid #ece2cf;
    border-radius: 999px;
    padding: 4px;
}
.qty-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: #1a1612;
    font-weight: 800;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, transform .15s;
}
.qty-btn:hover { background: #f4c220; }
.qty-val { min-width: 22px; text-align: center; font-weight: 700; color: #1a1612; }

.cart-item__sub { font-weight: 800; color: #1a1612; min-width: 90px; text-align: right; font-size: 14px; }
.cart-item__remove {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 0;
    background: #fff5e0;
    color: #c20f06;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.cart-item__remove:hover { background: #e1140a; color: #fff; }

@media (max-width: 560px) {
    .cart-item {
        grid-template-columns: 56px 1fr auto;
        grid-template-rows: auto auto;
        gap: 8px 12px;
    }
    .cart-item__img  { grid-row: 1 / span 2; width: 56px; height: 56px; }
    .cart-item__info { grid-column: 2; }
    .cart-item__remove { grid-column: 3; grid-row: 1; justify-self: end; }
    .cart-item__qty  { grid-column: 2; grid-row: 2; justify-self: start; }
    .cart-item__sub  { grid-column: 3; grid-row: 2; justify-self: end; }
}

/* --- Checkout side --- */
.cart-checkout { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; }
@media (max-width: 900px) { .cart-checkout { position: static; } }

.cart-summary {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 30px -20px rgba(0,0,0,.18);
}
.cart-summary h3 { margin: 0 0 14px; font-size: 16px; color: #1a1612; }
.cart-summary__row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 0;
    color: #5a4f3f;
    font-size: 14px;
}
.cart-summary__row--note { color: #c20f06; font-weight: 600; font-size: 12.5px; }
.cart-summary__row--note i { margin-right: 2px; }
.cart-summary__row--total {
    margin-top: 8px;
    border-top: 1px dashed #ece2cf;
    padding-top: 12px;
    color: #1a1612;
    font-size: 18px;
    font-weight: 800;
}

/* --- Cart form --- */
.cart-form {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px -20px rgba(0,0,0,.18);
}
.cart-form h3 { margin: 0 0 16px; font-size: 16px; color: #1a1612; }
.cart-form .form-group { margin-bottom: 14px; }
.cart-form label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #1a1612;
    margin-bottom: 6px;
    letter-spacing: .2px;
}
.cart-form input[type="text"],
.cart-form input[type="tel"],
.cart-form textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1.5px solid #ece2cf;
    background: #fffefb;
    color: #1a1612;
    font-family: inherit;
    font-size: 14px;
    transition: border-color .15s, background .15s;
    box-sizing: border-box;
}
.cart-form input:focus,
.cart-form textarea:focus {
    outline: none;
    border-color: #f4c220;
    background: #fff;
}
.cart-form .form-row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 560px) { .cart-form .form-row--two { grid-template-columns: 1fr; } }

.restaurant-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.restaurant-option {
    display: block;
    position: relative;
    cursor: pointer;
}
.restaurant-option input { position: absolute; opacity: 0; pointer-events: none; }
.restaurant-option__inner {
    display: block;
    padding: 12px 14px;
    border: 1.5px solid #ece2cf;
    border-radius: 12px;
    background: #fffefb;
    transition: border-color .15s, background .15s, transform .15s;
}
.restaurant-option__inner strong {
    display: block; font-size: 14px; color: #1a1612; margin-bottom: 4px; font-weight: 800;
}
.restaurant-option__inner small {
    display: block; color: #5a4f3f; font-size: 12px; margin-top: 2px;
}
.restaurant-option__inner small i { color: #e1140a; margin-right: 4px; font-size: 11px; }
.restaurant-option:hover .restaurant-option__inner { border-color: #f4c220; background: #fffaef; }
.restaurant-option input:checked + .restaurant-option__inner {
    border-color: #e1140a;
    background: #fff3f0;
    box-shadow: 0 6px 14px -10px rgba(225,20,10,.4);
}

.cart-form__notice {
    margin: 14px 0 18px;
    padding: 12px 14px;
    background: #fff8e3;
    border: 1px solid #f4c220;
    border-radius: 12px;
    font-size: 12.5px;
    color: #5a4f3f;
    line-height: 1.45;
}
.cart-form__notice i { color: #c20f06; margin-right: 4px; }
.cart-form__notice strong { color: #1a1612; }

.btn-place-order {
    width: 100%;
    padding: 14px 18px;
    background: #e1140a;
    color: #fff;
    border: 0;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .15s, transform .15s;
    text-transform: uppercase;
}
.btn-place-order:hover:not(:disabled) { background: #c20f06; transform: translateY(-1px); }
.btn-place-order:disabled { opacity: .6; cursor: not-allowed; }
.btn-place-order.is-loading i { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.form-error {
    margin-top: 12px;
    padding: 10px 14px;
    background: #ffeae8;
    border: 1px solid #f5a39d;
    border-radius: 10px;
    color: #c20f06;
    font-size: 13px;
    font-weight: 600;
}

/* --- Empty cart --- */
.cart-empty {
    text-align: center;
    padding: 50px 24px;
    color: #5a4f3f;
    background: #fff;
    border-radius: 18px;
}
.cart-empty i { font-size: 42px; color: #f4c220; opacity: .65; margin-bottom: 12px; }
.cart-empty h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; margin: 0 0 6px; letter-spacing: .8px; color: #1a1612; }
.cart-empty p { margin: 0 0 18px; }
.cart-wrong-mode .btn { margin-top: 10px; }

/* --- Success state --- */
.cart-success {
    text-align: center;
    padding: 50px 24px;
    background: #fff;
    border-radius: 22px;
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 14px 40px -22px rgba(0,0,0,.22);
}
.cart-success__icon { font-size: 64px; color: #5fd36b; margin-bottom: 12px; }
.cart-success h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: #1a1612;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.cart-success p { color: #5a4f3f; margin: 0 0 22px; line-height: 1.55; }

/* --- Hide mode switch label on mobile, keep icon visible --- */
@media (max-width: 768px) {
    .btn-mode-switch .mode-switch-hint { display: none; }
    .btn-mode-switch {
        padding: 14px 0 !important;
        font-size: 1rem !important;
        background: transparent !important;
        border: 0 !important;
        border-bottom: 1px solid var(--line-2) !important;
        border-radius: 0 !important;
        justify-content: flex-start !important;
        color: #1a1612 !important;
        width: 100%;
    }
    .btn-mode-switch:hover { transform: none !important; background: transparent !important; }

    /* Cart as a proper menu item (full width row) on mobile */
    .btn-cart {
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #1a1612 !important;
        padding: 14px 0 !important;
        border-bottom: 1px solid var(--line-2);
        justify-content: flex-start !important;
        gap: 10px;
        font-size: 1rem;
        font-weight: 600;
    }
    .btn-cart:hover {
        background: transparent !important;
        color: var(--red) !important;
        transform: none !important;
    }
    .btn-cart i {
        color: var(--red) !important;
        font-size: 18px;
        width: 22px;
        text-align: center;
    }
    .btn-cart .cart-label {
        display: inline;
        flex: 1;
    }
    .btn-cart .cart-count {
        position: static !important;
        top: auto !important;
        right: auto !important;
        margin-left: auto;
        background: #1a1612 !important;
        color: #fff !important;
        min-width: 26px !important;
        height: 24px !important;
        padding: 0 8px !important;
        font-size: 12px !important;
        box-shadow: none !important;
    }
    .btn-cart .cart-count.has-items {
        background: var(--red) !important;
        color: #fff !important;
    }
}
.header-mobile-cart { display: none !important; }

/* --- Removed: mobile floating cart icon (now using menu item) --- */
