/* =========================
   ROOT + GLOBAL
   ========================= */

:root {
    --primary: #e67309;
    --primary-dark: #c85f02;
    --bg: #050509;
    --bg-elevated: #111115;
    --bg-alt: #0b0b10;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text-main: #ffffff;
    --text-muted: #b3b3bd;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================
   LAYOUT HELPERS
   ========================= */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 56px 0;
}

.section-alt {
    background: var(--bg-alt);
}

/* =========================
   HEADER / NAV
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(5, 5, 9, 0.98), rgba(5, 5, 9, 0.88), transparent);
    border-bottom: 1px solid var(--border-subtle);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 1180px;
    margin: 0 auto;
    background: radial-gradient(circle at top, rgb(230 115 9 / 46%), transparent 55%), #602e00;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #ffd9a4, #e67309, #3b1704);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.06em;
    box-shadow: 0 0 18px rgba(230, 115, 9, 0.9);
    animation: pulseGlow 2.4s ease-in-out infinite;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text .title {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.2em;
}

.brand-text .subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--text-muted);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
    color: var(--text-muted);
    transition: color 0.18s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transition: width 0.18s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

/* NAV CTA / Buttons */

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    border-radius: 999px;
    border: none;
    outline: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 9px 17px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.btn-lg {
    padding: 11px 22px;
    font-size: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-main);
    box-shadow: 0 12px 30px rgba(230, 115, 9, 0.6);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg) translateX(-100%);
    opacity: 0;
}

.btn-primary:hover::before {
    animation: shine 1s forwards;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-strong);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
}

.btn:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.btn-icon {
    font-size: 14px;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: rgba(5, 5, 9, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0;
}

.nav-toggle-line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

/* When open */
.nav-toggle.nav-toggle--open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.nav-toggle--open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.nav-toggle--open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================
   HERO
   ========================= */

.hero {
    padding: 40px 0 40px;
    background:
            radial-gradient(circle at top, rgba(230, 115, 9, 0.2), transparent 55%),
            radial-gradient(circle at 80% 0, rgba(255, 255, 255, 0.04), transparent 60%),
            var(--bg);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 11px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(5, 5, 9, 0.9);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.dot-live {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #ffefcf, #e67309);
    box-shadow: 0 0 12px rgba(230, 115, 9, 0.9);
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
    line-height: 1.02;
}

.hero-title span {
    display: block;
}

.hero-title .accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-muted);
}

.meta-value {
    font-weight: 600;
}

/* Hero right visuals */

.hero-media {
    position: relative;
}

.hero-badge {
    position: absolute;
    right: 6%;
    top: 0;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-strong);
    font-size: 11px;
    box-shadow: var(--shadow-soft);
}

.hero-badge-label {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 3px;
        font-weight: bold;
}

.hero-badge-title {
    font-weight: 700;
}

.hero-badge-sub {
    font-size: 10px;
    color: var(--text-muted);
}

/* GRID LAYOUT — 2 columns: left = 1 tall image, right = 2 stacked images */
.hero-image-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 0.9fr; /* your original ratio */
    grid-template-rows: repeat(2, 130px); /* creates 2 rows */
    gap: 0; /* remove ALL spacing */
    margin-top: 26px;
    overflow: hidden;
}

/* GENERAL IMAGE WRAPPER */
.hero-img {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: #08080c;
    border: none;
}

/* LEFT (MAIN) IMAGE SPANS TWO ROWS */
.hero-img-main {
    grid-row: 1 / span 2; /* tall column */
}

/* IMAGE SIZES */
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.7s ease;
}

/* Right-side stacked images */
.hero-img-secondary img,
.hero-img-tertiary img {
    width: 100%;
    height: 100% !important; /* auto-fills grid row height */
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.7s ease;
}

/* HOVER ZOOM */
.hero-img:hover img {
    transform: scale(1.09);
}

/* SEPARATOR LINES (1px subtle) */
.hero-img-main {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-img-secondary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* FLOAT ANIMATIONS */
.hero-img-secondary {
    animation: floatCard 6s ease-in-out infinite;
}

.hero-img-tertiary {
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes floatCard {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}


.hero-img:hover img {
    transform: scale(1.09);
}

.hero-stats {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

.stat {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: bolder;
}

.stat-label {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

/* =========================
   SECTION HEADERS
   ========================= */

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--text-muted);
    margin: 0 0 6px;
}

.section-title {
    margin: 0;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-sub {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 380px;
    margin: 0;
}

/* =========================
   MENU HIGHLIGHTS CARDS
   ========================= */

.card-grid {
    display: grid;
    gap: 16px;
}

.card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-elevated);
    padding: 16px 16px 14px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border-color: var(--border-strong);
}

.card-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-muted);
}

.card-title {
    font-size: 16px;
    margin: 0;
}

.card-text {
    font-size: 13px;
    color: var(--text-muted);
}

.card-list li {
    font-size: 12px;
    margin-bottom: 4px;
    color: var(--text-main);
}

.card-footer-text {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* =========================
   FLAVOURS
   ========================= */

.flavour-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.flavour-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at 0 0, rgb(230 115 9 / 45%), #ffffff);
    padding: 16px 16px 14px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.flavour-header h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.flavour-header p {
    margin: 0 0 10px;
    font-size: 13px;
    color: #000;
}

.flavour-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.chip {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: #fff;
}

.chip-soft {
    border-color: rgba(255, 255, 255, 0.2);
}

.chip-hot {
    border-color: rgba(230, 115, 9, 0.75);
}

.chip-extra {
    border-color: rgba(230, 40, 9, 0.9);
    box-shadow: 0 0 12px rgba(230, 40, 9, 0.6);
}

.flavour-scale {
    margin-top: 4px;
}

.scale-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #ff6000;
    display: block;
    margin-bottom: 4px;
}

.scale-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 3px;
}

.scale-bar {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.scale-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ffd9a4, #e67309, #e62809);
    transform-origin: left;
    animation: heatGrow 2.4s ease-in-out infinite alternate;
}

.scale-ends {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-muted);
}

/* =========================
   FEATURED ITEMS
   ========================= */

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
    gap: 18px;
}

.feature-main {
    border-radius: 22px;
    border: 1px solid var(--border-strong);
    overflow: hidden;
    background: #050509;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.7s ease;
}

.feature-main:hover .feature-image img {
    transform: scale(1.1);
}

.feature-body {
    padding: 14px 15px 12px;
    background: linear-gradient(to top, rgb(162 65 0 / 77%), #e673095c, transparent);
}

.feature-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.feature-title {
    margin: 0 0 6px;
    font-size: 18px;
}

.feature-text {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 8px;
}

.feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.meta-pill {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-strong);
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-card {
    display: grid;
    grid-template-columns: 0.8fr 1.3fr;
    gap: 10px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background: var(--bg-elevated);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.8);
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-card-image img {
    transform: scale(1.1);
}

.feature-card-body {
    padding: 10px 11px 11px;
}

.feature-card-body h4 {
    margin: 0 0 4px;
    font-size: 14px;
}

.feature-card-body p {
    margin: 0 0 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-tags span {
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
}

/* =========================
   ABOUT
   ========================= */

.about-strip {
    border-radius: 22px;
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at 0 0, rgb(230 115 9 / 41%), #ffffff);
    padding: 18px 18px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 18px;
    box-shadow: var(--shadow-soft);
}

.about-main .about-text {
    font-size: 15px;
    color: var(--text-muted);
    margin: 6px 0 10px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-pills span {
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: #fff;
}

.about-details h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.about-details p {
    margin: 0 0 8px;
    font-size: 15px;
    color: var(--text-muted);
}

/* =========================
   STORES / POSTCODE CTA
   ========================= */

.store-cta {
    border-radius: 22px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-elevated);
    padding: 18px 18px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 18px;
    box-shadow: var(--shadow-soft);
}

.store-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 6px;
}

.store-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.input {
    flex: 1;
    min-width: 0;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    padding: 9px 11px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--text-main);
    font-size: 14px;
    outline: none;
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.store-note {
    font-size: 14px;
    color: var(--text-muted);
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    border-top: 1px solid var(--border-subtle);
    background: #050509;
    margin-top: 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 20px;
    padding: 20px 16px 14px;
}

.footer-brand .footer-logo {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2em;
    display: inline-block;
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-heading {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: white;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.18s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 18px;
    font-size: 11px;
    color: var(--text-muted);
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(230, 115, 9, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 28px rgba(230, 115, 9, 1);
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-120%) skewX(-20deg);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateX(220%) skewX(-20deg);
        opacity: 0;
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes heatGrow {
    0% {
        transform: scaleX(0.2);
    }
    50% {
        transform: scaleX(0.7);
    }
    100% {
        transform: scaleX(1);
    }
}

/* =========================
   RESPONSIVE
   ========================= */

/* Large tablets */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-media {
        order: 1;
    }

    .feature-layout {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tablets & below */
@media (max-width: 900px) {
    .card-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flavour-layout {
        grid-template-columns: 1fr;
    }

    .about-strip,
    .store-cta {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        padding-inline: 12px;
    }

    .nav-right {
        gap: 10px;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: relative;
        left: 0;
        right: 0;
        top: 100%;
        padding: 10px 16px 14px;
        flex-direction: column;
        background: #fff;
        border-bottom: 1px solid var(--border-subtle);
    
    }

    .nav-links.nav-links--open {
        display: flex;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        max-width: none;
    }

    .hero-image-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .hero-img-main img {
        height: 220px;
    }

    .hero-meta {
        font-size: 10px;
    }

    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .store-form {
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: left;
    }
}

/* Extra small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-img-secondary img,
    .hero-img-tertiary img {
        height: 100px;
    }

    .hero-stats {
        flex-direction: column;
    }
}




/*

////////////////////menu    ////////////   */

/* =========================
   MENU PAGE
   ========================= */

.menu-page .hero {
    display: none; /* in case you reuse class names, keep home hero hidden on menu page */
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes menuHeroGradient {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 0%; }
}

@keyframes menuHeroCardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

/* =========================
   MENU HERO
   ========================= */

.menu-hero {
    padding-top: 40px;
    background:
        radial-gradient(circle at top left, rgba(255, 207, 134, 0.9), transparent 60%),
        radial-gradient(circle at bottom right, rgba(255, 179, 102, 0.9), transparent 60%),
        #fff8f0;
    background-size: 160% 160%;
    animation: menuHeroGradient 22s ease-in-out infinite;
}

.menu-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: center;
}

.menu-hero-main .section-title {
    font-size: 26px;
}

.menu-hero-text {
    font-size: 16px;
    color: #4b5563;
    max-width: 460px;
    margin-top: 4px;
}

/* hero tags / pills */

.menu-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.menu-hero-pill {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.45);
    background: radial-gradient(circle at 0 0, #fff7e6, #ffffff);
    color: #7c2d12;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.menu-hero-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    border-color: rgba(249, 115, 22, 0.9);
}

/* hero side panel */

.menu-hero-highlight {
    display: flex;
    justify-content: flex-end;
}

/* floating hero card */

.menu-hero-card {
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    background:
        radial-gradient(circle at 0 0, rgba(255, 234, 209, 0.96), #ffffff);
    padding: 18px 18px 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    max-width: 320px;
    position: relative;
    overflow: hidden;
    animation: menuHeroCardFloat 10s ease-in-out infinite;
}

.menu-hero-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #9ca3af;
}

.menu-hero-title {
    font-size: 20px;
    margin: 2px 0 6px;
    color: #111827;
}

.menu-hero-card-text {
    font-size: 13px;
    color: #4b5563;
    margin: 0 0 10px;
}

.menu-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

/* subtle sheen across hero card on hover */

.menu-hero-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 50%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 65%);
    opacity: 0;
    transform: translateX(-40%);
    transition: opacity 0.3s ease, transform 0.7s ease;
}

.menu-hero-card:hover::after {
    opacity: 1;
    transform: translateX(80%);
}

/* =========================
   FILTER BAR
   ========================= */

.menu-filters {
    padding-top: 32px;
    padding-bottom: 24px;
}

.menu-filter-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.menu-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pill {
    border-radius: 999px;
    border: 1px solid rgba(209, 213, 219, 1);
    background: #ffffff;
    padding: 7px 13px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b7280;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
                box-shadow 0.18s ease, transform 0.18s ease;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.filter-pill.is-active,
.filter-pill:hover {
    background: linear-gradient(135deg, #fed7aa, #f97316);
    color: #111827;
    border-color: rgba(249, 115, 22, 0.9);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.35);
    transform: translateY(-1px);
}

/* =========================
   MENU GRID & ITEMS
   ========================= */

.menu-grid-section {
    padding-top: 18px;
}

.menu-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 14px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

/* card shell around each item */

.menu-item.card {
    position: relative;
    overflow: visible;
    cursor: default;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 10px 10px 36px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-item.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
    border-color: rgba(249, 115, 22, 0.7);
}

.menu-item-image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.menu-item-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.6s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

/* badges – light orange chip */

.menu-item-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    font-size: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, #fff7e6, #ffffff);
    border: 1px solid rgba(249, 115, 22, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #7c2d12;
}

.menu-item-body {
    padding-top: 10px;
}

.menu-item-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.menu-item-title {
    margin: 0;
    font-size: 17px;
}

.menu-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.menu-item-meta {
    margin: 0 0 6px;
    font-size: 12px;
    color: #6b7280;
}

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 10px;
}

.menu-item-tags span {
    padding: 3px 7px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

/* =========================
   INFO BUTTON + POPUP
   ========================= */

.menu-item-info-btn {
    position: absolute;
    right: 16px;
    bottom: 14px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease,
                transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.menu-item-info-btn:hover {
    background: linear-gradient(135deg, #fed7aa, #f97316);
    color: #111827;
    border-color: rgba(249, 115, 22, 0.9);
    box-shadow: 0 0 14px rgba(249, 115, 22, 0.9);
    transform: translateY(-1px);
}

/* keep popup dark for contrast, like flavour page */

.menu-item-popup {
    position: absolute;
    right: 20px;
    bottom: 46px;
    width: 260px;
    max-width: 80vw;
    border-radius: 14px;
    padding: 10px 11px 9px;
    border: 1px solid #4b5563;
    background: #050509;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.9);
    font-size: 13px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 5;
}

.menu-item-popup::before {
    content: "";
    position: absolute;
    right: 18px;
    bottom: -6px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #4b5563 transparent transparent transparent;
}

.menu-item-popup h4 {
    margin: 0 0 4px;
    font-size: 15px;
}

.menu-item-popup p {
    margin: 0 0 4px;
    color: #e5e7eb;
}

.popup-flavours {
    font-size: 11px;
    color: #9ca3af;
}

/* Show popup on hover for desktop */
@media (hover: hover) and (pointer: fine) {
    .menu-item:hover .menu-item-popup {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* JS toggled state (mobile + desktop click) */
.menu-item-popup.menu-item-popup--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* FILTER HIDE */

.menu-item.is-hidden {
    display: none;
}

/* SCROLL REVEAL */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE – MENU PAGE
   ========================= */

@media (max-width: 1024px) {
    .menu-hero-inner {
        grid-template-columns: 1fr;
    }

    .menu-hero-highlight {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-hero-inner {
        gap: 18px;
    }

    .menu-hero-card {
        max-width: none;
    }

    .menu-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-popup {
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }

    .menu-item-popup::before {
        right: 32px;
    }
}








/* =========================
   FLAVOURS PAGE – FLAVOUR-FOCUSED
   ========================= */

.flavours-page .hero {
    display: none; /* safeguard if hero class ever reused */
}

/* HERO – light, warm, flavoury */

@keyframes flavourHeroFloat {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 0%; }
}

.flavours-hero {
    padding-top: 40px;
    background:
        radial-gradient(circle at top left, rgba(255, 207, 134, 0.8), transparent 60%),
        radial-gradient(circle at bottom right, rgba(255, 179, 102, 0.8), transparent 60%),
        #fff8f0;
    background-size: 160% 160%;
    animation: flavourHeroFloat 18s ease-in-out infinite;
}

.flavours-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: flex-start;
}

.flavours-hero-main {
    animation: fadeUpHero 0.7s ease-out forwards;
}

@keyframes fadeUpHero {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.flavours-hero-text {
    font-size: 16px;
    color: #4b5563;
    max-width: 460px;
    margin-top: 4px;
}

/* hero tags – soft, pill-like, tiny pop on hover */

.flavours-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.flavours-tag {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.4); /* tiger orange edge */
    background: radial-gradient(circle at 0 0, rgba(255, 243, 222, 0.9), #ffffff);
    color: #7c2d12;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.flavours-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    border-color: rgba(249, 115, 22, 0.9);
}

.flavours-hero-panel {
    display: flex;
    justify-content: flex-end;
}

/* hero card – light glass with orange hue */

.flavours-hero-card {
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    background:
        radial-gradient(circle at 0 0, rgba(255, 234, 209, 0.9), #ffffff);
    padding: 18px 18px 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    max-width: 360px;
    position: relative;
    overflow: hidden;
    animation: heroCardFloat 8s ease-in-out infinite;
}

@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

.flavours-hero-card-header h2 {
    margin: 4px 0 6px;
    font-size: 18px;
    color: #111827;
}

.hero-chip {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #9a3412;
}

.flavours-hero-card p {
    font-size: 13px;
    color: #4b5563;
    margin: 0 0 8px;
}

.flavours-hero-card ul {
    padding-left: 18px;
    margin: 0 0 6px;
    font-size: 13px;
    color: #4b5563;
}

.flavours-hero-card li {
    margin-bottom: 3px;
}

.flavours-hero-card-note {
    font-size: 12px;
    color: #6b7280;
}

/* LEGEND – colourful dots for heat */

.flavours-legend {
    margin-top: 18px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.legend-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.legend-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
}

.legend-bars {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4b5563;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

/* light, flavoury heat colours */
.legend-dot--cool {
    background: radial-gradient(circle at 30% 0%, #e0f2fe, #38bdf8);
}
.legend-dot--medium {
    background: radial-gradient(circle at 30% 0%, #fef3c7, #facc15);
}
.legend-dot--hot {
    background: radial-gradient(circle at 30% 0%, #fed7aa, #f97316);
}
.legend-dot--wild {
    background: radial-gradient(circle at 30% 0%, #fecaca, #ef4444);
    animation: dotPulse 2.2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(248, 113, 113, 0); }
    50%      { transform: scale(1.15); box-shadow: 0 0 12px rgba(248, 113, 113, 0.8); }
}

.legend-text {
    margin-right: 6px;
}

.legend-note {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* =========================
   SYSTEM SECTION
   ========================= */

.flavours-system-section {
    background: #fffdf7;
}

.flavours-system-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 16px;
}

.flavours-system-header .section-title {
    color: #111827;
}

.flavours-system-header .section-sub {
    color: #4b5563;
}

.flavours-system-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

/* toggle buttons with tiger orange highlight */

.flavours-toggle-btn {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 7px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.18s ease;
}

.flavours-toggle-btn.is-active,
.flavours-toggle-btn:hover {
    background: linear-gradient(135deg, #ffb347, #f97316);
    color: #111827;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.35);
    transform: translateY(-1px);
}

.flavours-system-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.flavours-system-card {
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background:
        radial-gradient(circle at 0 0, rgba(255, 239, 213, 0.8), #ffffff);
    padding: 16px 16px 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

/* small sweep highlight on hover */

.flavours-system-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 50%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 60%);
    opacity: 0;
    transform: translateX(-40%);
    transition: opacity 0.3s ease, transform 0.7s ease;
}

.flavours-system-card:hover::after {
    opacity: 1;
    transform: translateX(80%);
}

.system-pill {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #a16207;
    margin-bottom: 4px;
}

.flavours-system-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: #111827;
}

.system-text {
    font-size: 13px;
    color: #4b5563;
    margin: 0 0 8px;
}

.system-list {
    font-size: 13px;
    color: #4b5563;
    padding-left: 18px;
    margin: 0 0 10px;
}

.system-list li {
    margin-bottom: 3px;
}

.system-scale {
    margin-top: 2px;
}

.system-scale-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    display: block;
    margin-bottom: 4px;
}

.system-scale-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 3px;
}

.system-scale-bars span {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #bbf7d0, #facc15, #fb923c, #ef4444);
}

.system-scale-bars--short span {
    flex: 1;
}

.system-scale-ends {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #9ca3af;
}

/* =========================
   FILTERS
   ========================= */

.flavours-filter-section {
    padding-top: 32px;
    padding-bottom: 18px;
    background: #fffdf7;
}

.flavours-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 14px;
}

.flavours-filter-bar .section-title {
    color: #111827;
}

.flavours-filter-bar .section-sub {
    color: #4b5563;
}

.flavours-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.flavour-filter-pill {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.18s ease;
}

.flavour-filter-pill.is-active,
.flavour-filter-pill:hover {
    background: linear-gradient(135deg, #ffb347, #f97316);
    color: #111827;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.3);
    transform: translateY(-1px);
}

/* =========================
   FLAVOUR GRID & TILES
   ========================= */

.flavours-grid-section {
    padding-top: 12px;
    background: #fffdf7;
}

.flavour-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* base tile style */
.flavour-tile {
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 14px 14px 12px;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

/* light hover lift */
.flavour-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
    border-color: rgba(249, 115, 22, 0.6);
}

.flavour-tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.flavour-system-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b7280;
    padding: 3px 7px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: rgba(255, 255, 255, 0.85);
}

.flavour-system-label--fried {
    border-color: rgba(248, 113, 22, 0.7);
}

/* heat dots follow legend colours */

.flavour-heat-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

.flavour-heat-dot--cool {
    background: radial-gradient(circle at 30% 0%, #e0f2fe, #38bdf8);
}
.flavour-heat-dot--medium {
    background: radial-gradient(circle at 30% 0%, #fef3c7, #facc15);
}
.flavour-heat-dot--hot {
    background: radial-gradient(circle at 30% 0%, #fed7aa, #f97316);
}
.flavour-heat-dot--wild {
    background: radial-gradient(circle at 30% 0%, #fecaca, #ef4444);
}

.flavour-name {
    margin: 0 0 4px;
    font-size: 16px;
    color: #111827;
}

.flavour-summary {
    margin: 0 0 6px;
    font-size: 13px;
    color: #4b5563;
}

.flavour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.flavour-tags span {
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    background: rgba(255, 255, 255, 0.85);
}

/* info button */

.flavour-info-btn {
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 5px 9px;
    cursor: pointer;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.flavour-info-btn:hover {
    background: linear-gradient(135deg, #ffb347, #f97316);
    color: #111827;
    transform: translateY(-1px);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.45);
    border-color: transparent;
}

/* POPUP */

.flavour-popup {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fffefb;
    padding: 9px 10px 8px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
    font-size: 12px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 4;
}

.flavour-popup h4 {
    margin: 0 0 4px;
    font-size: 13px;
    color: #111827;
}

.flavour-popup p {
    margin: 0 0 4px;
    color: #4b5563;
}

.flavour-popup strong {
    color: #111827;
}

/* Hover show (desktop) */
@media (hover: hover) and (pointer: fine) {
    .flavour-tile:hover .flavour-popup {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* JS toggled state (mobile or click) */
.flavour-popup.flavour-popup--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Filter hide */
.flavour-tile.is-hidden {
    display: none;
}

/* =========================
   INDIVIDUAL TILE COLOURS
   Based on HTML order:
   1 Mango & Lime
   2 Lemon & Herb
   3 Mild
   4 Hot
   5 Extra Hot
   6 Chipotle Buffalo
   7 Korean
   8 Garlic Parmesan
   9 BBQ Sweet
   10 Nashville Cracker
   11 Sweet Chili
   ========================= */

/* 1 – Mango & Lime: fresh green / lime */
.flavour-grid .flavour-tile:nth-child(1) {
    background: radial-gradient(circle at 0 0, #dcfce7, #f0fdf4);
    border-color: #bbf7d0;
}

/* 2 – Lemon & Herb: yellow / herbal */
.flavour-grid .flavour-tile:nth-child(2) {
    background: radial-gradient(circle at 0 0, #fef9c3, #fffbeb);
    border-color: #fef08a;
}

/* 3 – Mild: soft orange */
.flavour-grid .flavour-tile:nth-child(3) {
    background: radial-gradient(circle at 0 0, #ffedd5, #fff7ed);
    border-color: #fed7aa;
}

/* 4 – Hot: deeper orange */
.flavour-grid .flavour-tile:nth-child(4) {
    background: radial-gradient(circle at 0 0, #fed7aa, #fffbeb);
    border-color: #fb923c;
}

/* 5 – Extra Hot: red / fire */
.flavour-grid .flavour-tile:nth-child(5) {
    background: radial-gradient(circle at 0 0, #fee2e2, #fef2f2);
    border-color: #fca5a5;
}

/* 6 – Chipotle Buffalo: smoky orange-red */
.flavour-grid .flavour-tile:nth-child(6) {
    background: radial-gradient(circle at 0 0, #fed7aa, #fee2e2);
    border-color: #f97316;
}

/* 7 – Korean: sticky red / brown */
.flavour-grid .flavour-tile:nth-child(7) {
    background: radial-gradient(circle at 0 0, #fee2e2, #fef3c7);
    border-color: #f97373;
}

/* 8 – Garlic Parmesan: creamy white */
.flavour-grid .flavour-tile:nth-child(8) {
    background: radial-gradient(circle at 0 0, #fefce8, #ffffff);
    border-color: #fef3c7;
}

/* 9 – BBQ Sweet: smoky brown / amber */
.flavour-grid .flavour-tile:nth-child(9) {
    background: radial-gradient(circle at 0 0, #fed7aa, #fffbeb);
    border-color: #fb923c;
}

/* 10 – Nashville Cracker: hot orange / red */
.flavour-grid .flavour-tile:nth-child(10) {
    background: radial-gradient(circle at 0 0, #fed7aa, #fee2e2);
    border-color: #f97316;
}

/* 11 – Sweet Chili: pinkish red / glossy */
.flavour-grid .flavour-tile:nth-child(11) {
    background: radial-gradient(circle at 0 0, #ffe4e6, #fff1f2);
    border-color: #fb7185;
}

/* =========================
   RESPONSIVE – FLAVOURS PAGE
   ========================= */

@media (max-width: 1024px) {
    .flavours-hero-inner {
        grid-template-columns: 1fr;
    }

    .flavours-hero-panel {
        justify-content: flex-start;
    }

    .flavours-system-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .flavour-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flavours-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .flavour-grid {
        grid-template-columns: 1fr;
    }

    .flavours-hero-inner {
        gap: 18px;
    }

    .flavours-hero-card {
        max-width: none;
    }

    .flavours-system-header {
        flex-direction: column;
        align-items: flex-start;
    }
}



/* =========================
   ABOUT PAGE
   ========================= */

.about-page .hero {
    display: none;
}

/* HERO – animated warm background */

@keyframes aboutHeroGradient {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 0%; }
}

.about-hero {
    padding-top: 40px;
    background:
        radial-gradient(circle at top left, rgba(255, 207, 134, 0.85), transparent 60%),
        radial-gradient(circle at bottom right, rgba(255, 179, 102, 0.85), transparent 60%),
        #fff8f0;
    background-size: 160% 160%;
    animation: aboutHeroGradient 20s ease-in-out infinite;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: flex-start;
}

.about-hero-text {
    font-size: 16px;
    color: #4b5563;
    max-width: 470px;
    margin-top: 4px;
}

/* hero pills – soft orange accents */

.about-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.about-hero-pills span {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    background: radial-gradient(circle at 0 0, #fff7e6, #ffffff);
    color: #7c2d12;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.about-hero-pills span:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    border-color: rgba(249, 115, 22, 0.9);
}

/* hero side panel */

.about-hero-panel {
    display: flex;
    justify-content: flex-end;
}

/* floating hero card */

@keyframes aboutHeroCardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

.about-hero-card {
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    background:
        radial-gradient(circle at 0 0, rgba(255, 234, 209, 0.95), #ffffff);
    padding: 18px 18px 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    max-width: 360px;
    position: relative;
    overflow: hidden;
    animation: aboutHeroCardFloat 9s ease-in-out infinite;
}

.about-hero-card-header h2 {
    margin: 4px 0 6px;
    font-size: 20px;
    color: #111827;
}

.about-hero-card p {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 10px;
}

/* subtle light swipe on hero card */

.about-hero-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 50%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 60%);
    opacity: 0;
    transform: translateX(-40%);
    transition: opacity 0.3s ease, transform 0.7s ease;
}

.about-hero-card:hover::after {
    opacity: 1;
    transform: translateX(80%);
}

/* hero stats – small pop */

.about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.about-stat {
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 13px;
    color: #6b7280;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.about-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.about-stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #111827;
}

.about-stat-label {
    color: #6b7280;
}

/* WHO WE ARE */

.about-story {
    background: #fffdf7;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.3fr);
    gap: 20px;
    align-items: flex-start;
}

.about-story-text p {
    font-size: 15px;
    color: #4b5563;
    margin-top: 6px;
}

.about-subheading {
    margin: 0 0 8px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

/* value cards – slight hover */

.about-value-card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 10px 11px;
    font-size: 14px;
    color: #4b5563;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.about-value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    border-color: rgba(249, 115, 22, 0.6);
}

.about-value-card h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: #111827;
}

/* TIMELINE */

.about-timeline-section {
    background: #fff8f0;
}

.timeline {
    position: relative;
    margin-top: 8px;
    padding-left: 18px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.6),
        rgba(249, 115, 22, 0.9)
    );
}

.timeline-item {
    position: relative;
    margin-bottom: 18px;
}

/* pulsing dots */

@keyframes aboutDotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(249, 115, 22, 0); }
    50%      { transform: scale(1.2); box-shadow: 0 0 12px rgba(249, 115, 22, 0.8); }
}

.timeline-dot {
    position: absolute;
    left: -2px;
    top: 2px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #ffe5c2, #f97316);
    animation: aboutDotPulse 2.6s ease-in-out infinite;
}

/* timeline card – now light, not dark */

.timeline-content {
    margin-left: 18px;
    padding: 8px 10px 9px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.timeline-year {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
}

.timeline-content h3 {
    margin: 2px 0 4px;
    font-size: 15px;
    color: #111827;
}

.timeline-content p {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
}

/* DIFFERENTIATORS */

.about-differentiators {
    background: #fffdf7;
}

.about-diff-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-diff-card {
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 14px 14px 11px;
    font-size: 15px;
    color: #4b5563;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.about-diff-card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -30%;
    width: 50%;
    height: 180%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 65%);
    opacity: 0;
    transform: translateX(-40%);
    transition: opacity 0.3s ease, transform 0.7s ease;
}

.about-diff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
    border-color: rgba(249, 115, 22, 0.6);
}

.about-diff-card:hover::after {
    opacity: 1;
    transform: translateX(80%);
}

.about-diff-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: #111827;
}

/* EXPANSION */

.about-expansion {
    background: #fff8f0;
}

.about-expansion-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
    gap: 18px;
    align-items: flex-start;
}

.about-expansion-text {
    font-size: 15px;
    color: #4b5563;
    margin-top: 6px;
}

.about-expansion-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

/* small highlight cards */

.expansion-card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 10px 11px 9px;
    font-size: 13px;
    color: #4b5563;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.expansion-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
    border-color: rgba(249, 115, 22, 0.6);
}

.expansion-card h3 {
    margin: 2px 0 4px;
    font-size: 16px;
    color: #111827;
}

.expansion-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
}

/* CTA */

.about-cta {
    background: #fffdf7;
}

.about-cta-inner {
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    background:
        radial-gradient(circle at 0 0, rgba(255, 223, 186, 0.9), #ffffff);
    padding: 16px 16px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

/* soft sheen when hover */

.about-cta-inner::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 50%;
    height: 180%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 60%);
    opacity: 0;
    transform: translateX(-40%);
    transition: opacity 0.3s ease, transform 0.7s ease;
}

.about-cta-inner:hover::after {
    opacity: 1;
    transform: translateX(90%);
}

.about-cta-text p {
    font-size: 15px;
    color: #4b5563;
    margin-top: 6px;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.about-cta-note {
    border-radius: 16px;
    border: 1px dashed rgba(249, 115, 22, 0.6);
    padding: 10px 11px 9px;
    font-size: 14px;
    color: #4b5563;
    background: #fffefb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.about-cta-note h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #111827;
}

/* RESPONSIVE – ABOUT PAGE */

@media (max-width: 1024px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-panel {
        justify-content: flex-start;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-expansion-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .about-values-grid,
    .about-expansion-cards,
    .about-diff-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-hero-inner {
        gap: 18px;
    }

    .about-hero-card {
        max-width: none;
    }

    .timeline::before {
        left: 4px;
    }

    .timeline-dot {
        left: -4px;
    }
}







/* =========================================
   LIGHT THEME OVERRIDES (GLOBAL)
   ========================================= */

/* New colour system – light theme */
:root {
    --primary: #e67309;
    --primary-dark: #c85f02;

    --bg: #ffffff;
    --bg-alt: #f5f5f7;
    --bg-elevated: #ffffff;

    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.18);

    --text-main: #111111;
    --text-muted: #6b7280;

    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.12);
}

/* Base layout */

html,
body {
    background-color: #f5f5f7;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.5;
}

/* Sections a bit brighter and more spacious */
.section {
    padding: 64px 0;
    background-color: var(--bg);
}

.section-alt {
    background-color: var(--bg-alt);
}

/* =========================================
   HEADER / NAV – light bar
   ========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-subtle);
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent; /* remove dark gradient */
}

/* Brand stays orange, but pops on white */

.logo-circle {
    background: radial-gradient(circle at 30% 0%, #ff6600, #dc6900);
    box-shadow: 0 0 18px rgba(230, 115, 9, 0.4);
}

.brand-text .title {
    color: #111827;
}

.brand-text .subtitle {
    color: var(--text-muted);
}

/* Nav links clearer & slightly bigger */

.nav-links {
    font-size: 12px;
}

.nav-links a {
    color: var(--text-muted);
}

.nav-links a::after {
    background: var(--primary);
}

.nav-links a:hover {
    color: #111827;
}

/* CTA buttons on light background */

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(230, 115, 9, 0.35);
}

.btn-outline {
    background: transparent;
    color: #111827;
    border-color: var(--border-strong);
}

.btn-ghost {
    background: rgba(15, 23, 42, 0.02);
    color: #111827;
    border-color: var(--border-subtle);
}

/* Mobile nav on white */

.nav-toggle {
    background: #000;
    border-color: var(--border-strong);
}

.nav-links.nav-links--open {
    background: #ffffff;
}

/* =========================================
   HERO – clean, bright hero
   ========================================= */

.hero {
    padding: 48px 0 48px;
    background:
        radial-gradient(circle at top, rgba(230, 115, 9, 0.16), transparent 55%),
        #ffffff;
}

.hero-title {
    font-size: 42px;
    letter-spacing: 0.05em;
    color: #111827;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-pill {
    background: #ffffff;
    border-color: var(--border-subtle);
    color: var(--text-muted);
}

/* Hero images – light card style */

.hero-img {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.hero-img-main img {
    height: 260px;
}

.hero-img-secondary img,
.hero-img-tertiary img {
    height: 120px;
}

/* Stats on white cards */

.stat {
    background: #ffffff;
    border-color: var(--border-subtle);
    width: -webkit-fill-available;
}

/* =========================================
   GENERIC CARDS / PANELS
   ========================================= */

.card,
.feature-main,
.feature-card,
.about-strip,
.store-cta,
.menu-hero-card,
.flavours-hero-card,
.flavours-system-card,
.flavour-tile,
.menu-item,
.about-diff-card,
.expansion-card,
.about-cta-inner,
.about-value-card {
    background-color: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

/* Make card text a little clearer */

.card-text,
.feature-text,
.menu-item-meta,
.flavour-summary,
.about-text,
.about-expansion-text {
    color: #000;
}

/* Section headers slightly larger */

.section-title {
    font-size: 24px;
    letter-spacing: 0.14em;
    color: #111827;
}

.section-sub {
    font-size: 14px;
    color: var(--text-muted);
}

/* =========================================
   MENU / FLAVOURS / ABOUT BACKGROUNDS
   ========================================= */

/* Menu */
.menu-hero {
    background:
        radial-gradient(circle at top, rgba(230, 115, 9, 0.16), transparent 55%),
        #ffffff;
}

.menu-grid-section {
    background-color: #ffffff;
}

/* Flavours */
.flavours-hero {
    background:
        radial-gradient(circle at top, rgba(230, 115, 9, 0.16), transparent 55%),
        #ffffff;
}

/* About */
.about-hero {
    background:
        radial-gradient(circle at top, rgba(230, 115, 9, 0.16), transparent 55%),
        #ffffff;
}

.about-story {
    background-color: #f9fafb;
}

.about-timeline-section {
    background-color: #ffffff;
}

.about-differentiators {
    background-color: #f9fafb;
}

.about-expansion {
    background-color: #ffffff;
}

/* Timeline line on light background */

.timeline::before {
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.15),
        rgba(230, 115, 9, 0.9)
    );
}

.timeline-content {
    background: #ffffff;
}

/* =========================================
   MENU / FLAVOUR POPUPS (NOW LIGHT)
   ========================================= */

.menu-item-popup,
.flavour-popup {
    background: #ffffff;
    border-color: var(--border-strong);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

/* =========================================
   FOOTER – still strong, but cleaner
   ========================================= */

.site-footer {
    background: #111827;
    border-top: none;
    color: #e5e7eb;
}

.footer-brand p,
.footer-text,
.footer-links a,
.footer-bottom {
    color: #e5e7eb;
}

.footer-links a:hover {
    color: var(--primary);
}

/* =========================================
   RESPONSIVE TWEAKS – slightly bigger on mobile
   ========================================= */

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn,
    .btn-lg {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
}












/* =========================
   CONTACT PAGE
   ========================= */

.contact-page .hero {
    display: none; /* just in case hero is reused globally */
}

/* CONTACT HERO */

.contact-hero {
    padding-top: 56px;
    background:
        radial-gradient(circle at top, rgba(230, 115, 9, 0.14), transparent 55%),
        #ffffff;
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: flex-start;
}

.contact-hero-left .section-title {
    font-size: 28px;
    letter-spacing: 0.16em;
}

.contact-hero-left .section-sub {
    max-width: 460px;
    font-size: 15px;
}

/* Left info blocks */

.contact-hero-info {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.info-block {
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    padding: 10px 12px;
    box-shadow: var(--shadow-soft);
    font-size: 13px;
}

.info-block h3 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.info-block p {
    margin: 0;
    color: var(--text-muted);
}

.info-block a {
    color: #111827;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.info-block a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* RIGHT: MAP */

.contact-hero-right {
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    padding: 10px;
    box-shadow: var(--shadow-soft);
}

/* CONTACT FORM SECTION */

.contact-form-wrapper {
    max-width: 880px;
}

.contact-form {
    margin-top: 12px;
    border-radius: 22px;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
}

/* We already have .input; just refine for contact page context */

.contact-form .form-group {
    margin-bottom: 14px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111827;
}

.contact-form .input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    padding: 9px 12px;
    background: #f9fafb;
    color: #111827;
    font-size: 13px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form textarea {
    border-radius: 16px;
    resize: vertical;
    min-height: 140px;
}

.contact-form .input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(230, 115, 9, 0.2);
}

/* Submit button */

.contact-form .btn-primary {
    margin-top: 4px;
}

/* FAQ SECTION */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    padding: 12px 14px 11px;
    box-shadow: var(--shadow-soft);
    font-size: 13px;
}

.faq-item h3 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.faq-item p {
    margin: 0;
    color: var(--text-muted);
}

/* RESPONSIVE – CONTACT PAGE */

@media (max-width: 1024px) {
    .contact-hero-inner {
        grid-template-columns: 1fr;
    }

    .contact-hero-right {
        max-width: 520px;
    }

    .contact-hero-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-hero-inner {
        gap: 18px;
    }

    .contact-hero-info {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero-left .section-title {
        font-size: 24px;
    }

    .contact-form {
        padding: 14px 14px 12px;
    }
}
















/* =========================================
   GLOBAL SIZE & SPACING – SUPER LARGE (XL+)
   ========================================= */

/* Base font + spacing */
html,
body {
    font-size: 18.5px;      /* was 17px */
    line-height: 1.75;
}

/* Sections more open */
.section {
    padding: 30px 0;        /* was 80px */
}

/* =========================
   TYPOGRAPHY – HEADINGS
   ========================= */

.section-kicker {
    font-size: 15px;        /* was 14px */
}

.section-title {
    font-size: 32px;        /* was 28px */
    letter-spacing: 0.20em;
}

.section-sub {
    font-size: 18px;        /* was 16px */
}

/* Hero */
.hero-title {
    font-size: 50px;        /* was 52px */
    letter-spacing: 0.07em;
}

.hero-subtitle {
    font-size: 19px;        /* was 17px */
}

/* Nav */
.nav-links {
    font-size: 14px;        /* was 14px */
}

/* =========================
   BUTTONS
   ========================= */

.btn {
    font-size: 13px;        /* was 14px */
    padding: 15px 26px;
}

.btn-lg {
    font-size: 16px;        /* was 14px */
    padding: 18px 30px;
}

/* =========================
   CARDS / CONTENT TEXT
   ========================= */

.card-title {
    font-size: 22px;        /* was 20px */
}

.card-text {
    font-size: 17px;        /* was 15px */
}

.card-list li {
    font-size: 16px;
}

/* Feature cards */
.feature-title {
    font-size: 24px;        /* was 22px */
}

.feature-text {
    font-size: 17px;        /* was 15px */
}

.meta-pill,
.mini-tags span {
    font-size: 14px;
}

/* =========================
   MENU PAGE
   ========================= */

.menu-item-title {
    font-size: 22px;        /* was 18px */
}

.menu-item-price {
    font-size: 17px;        /* was 15px */
}

.menu-item-meta {
    font-size: 15px;        /* was 14px */
}

.menu-item-tags {
    font-size: 14px;
}

/* =========================
   FLAVOURS PAGE
   ========================= */

.flavour-name {
    font-size: 24px;        /* was 20px */
}

.flavour-summary {
    font-size: 17px;        /* was 15px */
}

.flavour-tags span {
    font-size: 13px;
}

/* =========================
   FORMS
   ========================= */

.input,
.contact-form .input,
.contact-form select,
.contact-form textarea,
.store-form .input {
    font-size: 17px;           /* was 15px */
    padding: 16px 18px;
}

/* Contact form labels & FAQ */
.contact-form label {
    font-size: 17px;
}

.faq-item {
    font-size: 17px;
}

.faq-item h3 {
    font-size: 20px;
}

/* Contact hero title & text */
.contact-hero-left .section-title {
    font-size: 38px;           /* was 32px */
}

.contact-hero-left .section-sub {
    font-size: 19px;
}

/* Info blocks (contact) */
.info-block {
    font-size: 16px;
}

.info-block h3 {
    font-size: 18px;
}

/* =========================
   FOOTER
   ========================= */

.footer-brand .footer-logo {
    font-size: 18px;
}

.footer-brand p,
.footer-text,
.footer-links a {
    font-size: 12px;
}

.footer-bottom {
    font-size: 14px;
}

/* =========================
   MOBILE / TABLET – still large
   ========================= */

@media (max-width: 768px) {
    .hero-title {
        font-size: 44px;       /* was 38px */
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 30px;
    }

    .btn,
    .btn-lg {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .nav-links {
        font-size: 15px;
    }
}





/* =====================================
   HERO MEDIA – VIDEO BOX
   ===================================== */

.hero-video-box {
    width: 100%;
    height: 380px;              /* same visual height as images */
    background: #000;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-top: 20px;
}

.hero-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}







/* Hide full menu on mobile by default */
.nav-menu {
    display: flex;
    gap: 20px;
}

/* Mobile layout */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 100%;
        padding: 18px 24px;
        flex-direction: column;
        gap: 12px;
        display: none;
    }

    .nav-menu--open {
        display: flex;
    }

    .nav-links a {
        display: block;
        font-size: 17px;
        padding: 8px 0;
        color: black;
    }

    .nav-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}










/* Base card styling */
.flavour-card {
    border-radius: 18px;
    padding: 24px 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* 🔥 GRILLED CARD – Tiger Flame Orange → Deep Ember */
.flavour-layout .flavour-card:first-child {
    background: linear-gradient(135deg, #ff7a0a52, #cc3d00) !important;
}

/* 🟧 FRIED CARD – Honey Orange → Smoked Brown */
.flavour-layout .flavour-card:nth-child(2) {
   background: linear-gradient(135deg, #ff9f1a96, #aa490094) !important;
}

/* Headings & body text inside cards */
.flavour-card .flavour-header h3,
.flavour-card .flavour-header p,
.flavour-card .flavour-scale,
.flavour-card .scale-label,
.flavour-card .scale-ends span {
    color: #ffffff;
}

/* Pill styling */
.flavour-header .pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
}

/* Chips – base styling */
.flavour-chips {
    margin-top: 14px;
    margin-bottom: 16px;
}

.chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    margin: 4px 6px 0 0;
    font-weight: 600;
    color: #fff;
}

/* --------------------- */
/* 🔥 GRILLED – INDIVIDUAL FLAVOURS (Tiger Orange Theme) */
/* 1: Mango & Lime */
.flavour-layout .flavour-card:first-child .flavour-chips .chip:nth-child(1) {
    background: #e5b800; /* deep golden mango */
    color: #2d2500;
}

/* 2: Lemon & Herb */
.flavour-layout .flavour-card:first-child .flavour-chips .chip:nth-child(2) {
    background: #ffd84d; /* warm lemon */
    color: #3a3200;
}

/* 3: Mild */
.flavour-layout .flavour-card:first-child .flavour-chips .chip:nth-child(3) {
    background: #ff9a3c; /* soft warm orange */
    color: #1f0d00;
}

/* 4: Hot */
.flavour-layout .flavour-card:first-child .flavour-chips .chip:nth-child(4) {
    background: #ff5a1f; /* tiger flame */
    color: #ffffff;
}

/* 5: Extra Hot */
.flavour-layout .flavour-card:first-child .flavour-chips .chip:nth-child(5) {
    background: #d93200; /* fierce chilli red-orange */
    color: #ffffff;
}

/* --------------------- */
/* 🍗 FRIED – INDIVIDUAL SAUCES */
/* 1: Chipotle Buffalo */
.flavour-layout .flavour-card:nth-child(2) .flavour-chips .chip:nth-child(1) {
    background: #ff6a2b;
}

/* 2: Korean */
.flavour-layout .flavour-card:nth-child(2) .flavour-chips .chip:nth-child(2) {
    background: #c52e00;
}

/* 3: Garlic Parmesan */
.flavour-layout .flavour-card:nth-child(2) .flavour-chips .chip:nth-child(3) {
    background: #f3d7a7;
    color: #3b2f1b;
}

/* 4: BBQ Sweet */
.flavour-layout .flavour-card:nth-child(2) .flavour-chips .chip:nth-child(4) {
    background: #6b2e00;
    color: #ffe5c4;
}

/* 5: Nashville Cracker */
.flavour-layout .flavour-card:nth-child(2) .flavour-chips .chip:nth-child(5) {
    background: #ff7b00;
}

/* 6: Sweet Chili */
.flavour-layout .flavour-card:nth-child(2) .flavour-chips .chip:nth-child(6) {
    background: #ff4b2e;
}

/* 7: Honey BBQ */
.flavour-layout .flavour-card:nth-child(2) .flavour-chips .chip:nth-child(7) {
    background: #f59e0b;
    color: #3b2400;
}

/* 8: Lemon Pepper */
.flavour-layout .flavour-card:nth-child(2) .flavour-chips .chip:nth-child(8) {
    background: #ffd966;
    color: #3a3000;
}

/* --------------------- */
/* Heat / Sauciness scale styling */

.scale-bars .scale-bar {
    flex: 1;
    height: 6px;
    border-radius: 999px;
}

/* Grilled scale – tiger orange heat */
.flavour-layout .flavour-card:first-child .scale-bars .scale-bar:nth-child(1) { background: #ffe38b; }
.flavour-layout .flavour-card:first-child .scale-bars .scale-bar:nth-child(2) { background: #ffbf4f; }
.flavour-layout .flavour-card:first-child .scale-bars .scale-bar:nth-child(3) { background: #ff9933; }
.flavour-layout .flavour-card:first-child .scale-bars .scale-bar:nth-child(4) { background: #ff5a1f; }
.flavour-layout .flavour-card:first-child .scale-bars .scale-bar:nth-child(5) { background: #d93200; }

/* Fried scale – smoky orange → rich brown */
.flavour-layout .flavour-card:nth-child(2) .scale-bars .scale-bar:nth-child(1) { background: #f5e6c8; }
.flavour-layout .flavour-card:nth-child(2) .scale-bars .scale-bar:nth-child(2) { background: #ffb667; }
.flavour-layout .flavour-card:nth-child(2) .scale-bars .scale-bar:nth-child(3) { background: #ff7b3e; }
.flavour-layout .flavour-card:nth-child(2) .scale-bars .scale-bar:nth-child(4) { background: #b85500; }

















/* --- STICKY MENU CATEGORIES --- */
.menu-filters {
    position: relative;
    z-index: 10;
    background: #ffffff;
    transition: box-shadow 0.2s ease, padding 0.2s ease, transform 0.2s ease;
}

.menu-filters.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
}

/* Placeholder to avoid layout jump when we fix it */
.menu-filters-placeholder {
    height: 0;
}

/* Hide nav when sticky */
.site-header.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* --- CATEGORY BAR LAYOUT --- */
.menu-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.menu-filter-bar .section-title {
    margin-bottom: 0.25rem;
}

.menu-filter-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0 0.25rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Orange scrollbar just for categories bar */
.menu-filter-pills::-webkit-scrollbar {
    height: 6px;
}
.menu-filter-pills::-webkit-scrollbar-track {
    background: #ffe3cc;
    border-radius: 999px;
}
.menu-filter-pills::-webkit-scrollbar-thumb {
    background: #ff7a1a;
    border-radius: 999px;
}
.menu-filter-pills::-webkit-scrollbar-thumb:hover {
    background: #ff6000;
}

/* Firefox scrollbar */
.menu-filter-pills {
    scrollbar-color: #ff7a1a #ffe3cc;
    scrollbar-width: thin;
}

/* --- PILL STYLING (make it "amazing") --- */
.filter-pill {
    border: none;
    background: #f5f5f7;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.filter-pill:hover {
    background: #fff3e6;
    transform: translateY(-1px);
}

.filter-pill.is-active {
    background: #ff7a1a;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(255, 122, 26, 0.35);
    transform: translateY(-1px);
}



/* Make pill bar sticky */
.menu-filter-pills {
    position: relative;
    z-index: 999;
    background: #ffffff;
    padding: 0.6rem 0.3rem;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.25s ease;
}

.menu-filter-pills.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 0.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);}

/* Orange scrollbar */
.menu-filter-pills::-webkit-scrollbar {
    height: 6px;
}
.menu-filter-pills::-webkit-scrollbar-track {
    background: #ffe3cc;
    border-radius: 999px;
}
.menu-filter-pills::-webkit-scrollbar-thumb {
    background: #ff7a1a;
    border-radius: 999px;
}
.menu-filter-pills::-webkit-scrollbar-thumb:hover {
    background: #ff6000;
}

/* Firefox */
.menu-filter-pills {
    scrollbar-color: #ff7a1a #ffe3cc;
    scrollbar-width: thin;
}

/* Hide header when sticky */
.site-header.hide-header {
    transform: translateY(-100%);
    opacity: 0;
    transition: 0.25s ease;
}

/* Amazing pill design */
.filter-pill {
    background: #f5f5f7;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    border: none;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s ease;
}

.filter-pill:hover {
    background: #fff1e0;
}

.filter-pill.is-active {
    background: #ff7a1a;
    color: #fff;
    box-shadow: 0 6px 14px rgba(255,122,26,0.35);
}


/* Make ONLY the filter pills sticky */
/* Sticky filter bar */
.menu-filters-sticky {

    z-index: 999;
    background: #050816;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Pills horizontal scroll */
.menu-filter-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: #ff6f00 transparent;
}

/* Chrome / Safari / Edge scrollbar */
.menu-filter-pills::-webkit-scrollbar {
    height: 8px;
}
.menu-filter-pills::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}
.menu-filter-pills::-webkit-scrollbar-thumb {
    background: #ff6f00;
    border-radius: 25px;
}





