/* =============================================
   Bagel N Bites Theme
   Cream header, dark hero, red accents
   For bagel shops, burger joints, casual eats
   ============================================= */

:root {
    --bn-red:         #DC2626;
    --bn-red-dark:    #B91C1C;
    --bn-red-soft:    #FEE2E2;
    --bn-cream:       #FBF1D5;
    --bn-cream-2:     #FAEBC4;
    --bn-cream-dark:  #F0DFAA;
    --bn-dark:        #1A1A1A;
    --bn-dark-2:      #2A2A2A;
    --bn-text:        #2A2A2A;
    --bn-text-mid:    #6B6B6B;
    --bn-text-soft:   #9A9A9A;
    --bn-border:      #EFE5C8;
    --bn-white:       #FFFFFF;
    --theme-accent:   #DC2626;
}

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

html { scroll-behavior: smooth; }

body.theme-bagel-bites {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bn-white);
    color: var(--bn-text);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
}

body.theme-bagel-bites a:not(.bn-btn):not(.bn-btn-add):not(.bn-row-add) { color: var(--bn-red); }

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

/* ---- TYPOGRAPHY ---- */
.bn-logo-script {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    color: var(--bn-dark);
    font-size: 2rem;
    letter-spacing: 0.5px;
    line-height: 1;
}

.bn-logo-script-light { color: var(--bn-cream); }

/* ---- TOP TAGLINE STRIP ---- */
.bn-topbar {
    background: var(--bn-cream);
    border-bottom: 1px solid var(--bn-border);
    padding: 8px 40px;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    height: 36px;
    display: flex;
    align-items: center;
}

.bn-topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bn-topbar-text {
    color: var(--bn-red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bn-topbar-phone {
    color: var(--bn-red);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.bn-topbar-phone:hover { color: var(--bn-red-dark); }

/* ---- NAVIGATION ---- */
.bn-nav {
    position: fixed;
    top: 36px; left: 0; right: 0;
    z-index: 1000;
    background: var(--bn-cream);
    border-bottom: 1px solid var(--bn-border);
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
}

.bn-nav-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.bn-nav .bn-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bn-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin-left: auto;
}

.bn-nav-links a:not(.bn-btn) {
    text-decoration: none;
    color: var(--bn-dark);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 2px;
    transition: color 0.2s;
    position: relative;
}

.bn-nav-links a:not(.bn-btn):hover,
.bn-nav-links a.active {
    color: var(--bn-red);
}

.bn-nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--bn-red);
}

.bn-nav-cta a.bn-btn { padding: 10px 22px; font-size: 0.78rem; }
.bn-nav-cta a.bn-btn:hover { color: var(--bn-white); }

.bn-hamburger {
    display: none;
    background: none;
    border: 0;
    width: 36px; height: 36px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin-left: auto;
}

.bn-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bn-dark);
    border-radius: 2px;
    margin: 0 auto;
}

/* Push content below fixed header (topbar + nav = 36 + 72 = 108px) */
body.theme-bagel-bites > .bn-hero,
body.theme-bagel-bites > .bn-page-header { padding-top: 148px; }

/* ---- BUTTONS ---- */
.bn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s, background 0.2s, color 0.2s;
    font-family: inherit;
    line-height: 1.2;
}

.bn-btn:active { transform: translateY(1px); }

.bn-btn-red {
    background: var(--bn-red);
    color: var(--bn-white);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.bn-btn-red:hover {
    background: var(--bn-red-dark);
    box-shadow: 0 6px 18px rgba(185, 28, 28, 0.35);
    color: var(--bn-white);
}

.bn-btn-outline-light {
    background: transparent;
    color: var(--bn-white);
    border: 2px solid var(--bn-white);
    padding: 11px 28px;
}

.bn-btn-outline-light:hover {
    background: var(--bn-white);
    color: var(--bn-dark);
}

.bn-btn-cream {
    background: var(--bn-cream);
    color: var(--bn-red);
}

.bn-btn-cream:hover {
    background: var(--bn-cream-2);
    color: var(--bn-red-dark);
}

/* ---- HERO ---- */
.bn-hero {
    position: relative;
    background:
        linear-gradient(180deg, #0F0F0F 0%, #1A1A1A 100%);
    color: var(--bn-white);
    padding: 148px 40px 80px;
    overflow: hidden;
}

.bn-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 30%, rgba(251, 241, 213, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.bn-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bn-hero-text { padding: 20px 0; }

.bn-hero-script {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--bn-red);
    margin-bottom: 16px;
    letter-spacing: 1px;
    line-height: 1;
}

.bn-hero-title {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
    color: var(--bn-white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.bn-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 32px;
}

.bn-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.bn-hero-art {
    position: relative;
    max-width: 600px;
    margin-left: auto;
}

.bn-hero-art img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.45));
}

/* ---- SECTIONS ---- */
.bn-section {
    padding: 70px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.bn-section-cream {
    background: var(--bn-cream);
    max-width: none;
    margin: 0;
    padding: 50px 40px;
}

.bn-section-cream > * { max-width: 1280px; margin-left: auto; margin-right: auto; }

.bn-section-dark {
    background: var(--bn-dark);
    color: var(--bn-white);
    padding: 70px 40px;
}

.bn-dark-band-title {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--bn-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

/* Section heading with stars */
.bn-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.bn-star {
    color: var(--bn-red);
    font-size: 1rem;
    flex-shrink: 0;
}

.bn-section-heading::before,
.bn-section-heading::after {
    content: '';
    height: 1.5px;
    width: 80px;
    background: var(--bn-text-soft);
    flex-shrink: 0;
}

.bn-section-title {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--bn-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

/* ---- PAGE HEADER ---- */
.bn-page-header {
    background: var(--bn-cream);
    padding: 148px 40px 50px;
    text-align: center;
    border-bottom: 1px solid var(--bn-border);
}

.bn-page-header-script {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    color: var(--bn-red);
    font-size: 1.5rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.bn-page-header h1 {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    color: var(--bn-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1;
}

.bn-page-header p {
    color: var(--bn-text-mid);
    font-size: 1rem;
}

/* ---- CATEGORY CIRCLES (round icons) ---- */
.bn-cat-circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
}

.bn-cat-circle-item {
    text-decoration: none;
    color: var(--bn-dark);
    text-align: center;
    flex: 0 0 auto;
    width: 90px;
    transition: transform 0.2s;
}

.bn-cat-circle-item:hover {
    transform: translateY(-3px);
}

.bn-cat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bn-cream-2);
    border: 1.5px solid var(--bn-cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: background 0.2s, border-color 0.2s;
}

.bn-cat-circle i {
    font-size: 2rem;
    color: var(--bn-dark);
}

.bn-cat-circle svg {
    width: 42px;
    height: 42px;
    color: var(--bn-dark);
    transition: color 0.2s, transform 0.2s;
}

.bn-cat-circle-item:hover .bn-cat-circle {
    background: var(--bn-white);
    border-color: var(--bn-red);
}

.bn-cat-circle-item:hover .bn-cat-circle i,
.bn-cat-circle-item:hover .bn-cat-circle svg {
    color: var(--bn-red);
}

.bn-cat-circle-item:hover .bn-cat-circle svg {
    transform: scale(1.08);
}

.bn-cat-circle-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--bn-dark);
    line-height: 1.2;
}

/* ---- POPULAR PICKS ---- */
.bn-popular-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.bn-popular-card {
    background: var(--bn-white);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.25s;
}

.bn-popular-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.bn-popular-card-top {
    margin-bottom: 10px;
    min-height: 56px;
}

.bn-popular-name {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--bn-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.bn-popular-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bn-red);
}

.bn-popular-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    margin: 8px auto 18px;
    max-width: 200px;
}

.bn-popular-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.bn-popular-cta {
    padding: 10px 22px;
    font-size: 0.78rem;
    width: 100%;
    margin-top: auto;
}

/* ---- FEATURE PANELS (dark) ---- */
.bn-feature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1.1fr;
    gap: 18px;
}

.bn-feature-panel {
    background: var(--bn-dark);
    border-radius: 14px;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--bn-white);
    overflow: hidden;
    position: relative;
    min-height: 200px;
    transition: transform 0.2s, box-shadow 0.25s;
}

.bn-feature-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.bn-feature-panel-text {
    flex: 1;
    z-index: 2;
}

.bn-feature-panel-text h3 {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--bn-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.bn-feature-panel-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.bn-feature-btn {
    padding: 8px 22px;
    font-size: 0.72rem;
    background: transparent;
    color: var(--bn-white);
    border: 1.5px solid var(--bn-white);
    border-radius: 999px;
}

.bn-feature-btn:hover {
    background: var(--bn-white);
    color: var(--bn-dark);
}

.bn-feature-panel-img {
    flex: 0 0 45%;
    aspect-ratio: 1 / 0.85;
    max-width: 180px;
}

.bn-feature-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

/* ---- CATEGORY PILL FILTER ---- */
.bn-cat-nav {
    background: var(--bn-white);
    position: sticky;
    top: 108px;
    z-index: 50;
    padding: 14px 0;
    border-bottom: 1px solid var(--bn-border);
    margin: 0 -40px;
}

.bn-cat-nav-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.bn-cat-nav-inner::-webkit-scrollbar { display: none; }

.bn-pill {
    flex-shrink: 0;
    background: var(--bn-cream);
    border: 1.5px solid var(--bn-border);
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--bn-dark);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    font-family: inherit;
}

.bn-pill:hover {
    border-color: var(--bn-red);
    color: var(--bn-red);
}

.bn-pill-active,
.bn-pill.bn-pill-active {
    background: var(--bn-red);
    border-color: var(--bn-red);
    color: var(--bn-white);
}

/* ---- MENU GRID (cards) ---- */
.bn-category-heading {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--bn-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bn-red);
    display: inline-block;
}

.bn-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.bn-menu-card {
    background: var(--bn-white);
    border: 1.5px solid var(--bn-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.bn-menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.bn-menu-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bn-cream);
}

.bn-menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.bn-menu-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.bn-menu-card-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--bn-dark);
    letter-spacing: 0.3px;
}

.bn-menu-card-body .desc {
    color: var(--bn-text-mid);
    font-size: 0.88rem;
    line-height: 1.5;
    flex-grow: 1;
    min-height: 36px;
}

.bn-menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px dashed var(--bn-border);
}

.bn-price {
    font-weight: 800;
    color: var(--bn-red);
    font-size: 1.2rem;
}

.bn-btn-add {
    background: var(--bn-red);
    color: var(--bn-white);
    border: 0;
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: inherit;
}

.bn-btn-add:hover { background: var(--bn-red-dark); }
.bn-btn-add:active { transform: scale(0.96); }

/* ---- MENU LIST (line / table style) ---- */
.bn-menu-table {
    background: var(--bn-white);
    border: 1.5px solid var(--bn-border);
    border-radius: 14px;
    padding: 8px 24px;
}

.bn-menu-row {
    padding: 18px 0;
    border-bottom: 1px dashed var(--bn-border);
}

.bn-menu-row:last-child { border-bottom: 0; }

.bn-menu-row-main {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bn-row-name {
    font-weight: 800;
    color: var(--bn-dark);
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.bn-row-spice {
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--bn-red-soft);
    color: var(--bn-red-dark);
    font-weight: 700;
}

.bn-row-allergens { display: inline-flex; gap: 4px; }

.bn-allergen-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--bn-cream);
    color: var(--bn-red-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

.bn-row-dots {
    flex-grow: 1;
    border-bottom: 2px dotted var(--bn-border);
    margin: 0 6px;
    height: 14px;
}

.bn-row-price {
    font-weight: 800;
    color: var(--bn-red);
    font-size: 1.05rem;
}

.bn-row-add {
    background: var(--bn-red);
    color: var(--bn-white);
    border: 0;
    border-radius: 6px;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.2s;
}

.bn-row-add:hover { background: var(--bn-red-dark); color: var(--bn-white); }

.bn-menu-row-desc {
    color: var(--bn-text-mid);
    font-size: 0.88rem;
    margin-top: 4px;
    margin-left: 0;
    line-height: 1.5;
}

/* ---- ABOUT ---- */
.bn-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.bn-about-grid img {
    border-radius: 14px;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.bn-about-script {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    color: var(--bn-red);
    font-size: 1.5rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
    line-height: 1;
}

.bn-about-text h2 {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--bn-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.1;
}

.bn-about-text p {
    color: var(--bn-text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.bn-about-text .bn-btn { margin-top: 10px; }

/* ---- FEATURES ---- */
.bn-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.bn-feature-card {
    background: var(--bn-white);
    border: 1.5px solid var(--bn-border);
    border-radius: 14px;
    padding: 30px 26px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.25s;
}

.bn-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.bn-feature-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--bn-red-soft);
    color: var(--bn-red);
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.bn-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bn-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.bn-feature-card p { color: var(--bn-text-mid); font-size: 0.95rem; }

/* ---- CTA BANNER ---- */
.bn-cta-banner {
    background: var(--bn-red);
    color: var(--bn-white);
    padding: 70px 40px;
    text-align: center;
}

.bn-cta-banner h2 {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1;
}

.bn-cta-banner p {
    opacity: 0.92;
    font-size: 1.05rem;
    margin-bottom: 26px;
}

/* ---- CONTACT ---- */
.bn-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.bn-block-heading {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--bn-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
}

.bn-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bn-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bn-info-icon {
    width: 50px; height: 50px;
    border-radius: 10px;
    background: var(--bn-red-soft);
    color: var(--bn-red);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bn-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bn-red);
    font-weight: 800;
}

.bn-info-value { font-weight: 600; color: var(--bn-dark); }

.bn-hours-card {
    margin-top: 28px;
    padding: 22px 24px;
    background: var(--bn-cream);
    border-radius: 12px;
    border: 1.5px solid var(--bn-border);
}

.bn-hours-card h4 {
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--bn-dark);
    letter-spacing: 0.3px;
}

.bn-hours-card h4 i { color: var(--bn-red); margin-right: 6px; }

.bn-hours-card p { color: var(--bn-text-mid); line-height: 1.9; }

.bn-form {
    background: var(--bn-white);
    border: 1.5px solid var(--bn-border);
    border-radius: 14px;
    padding: 28px;
}

.bn-form-group {
    margin-bottom: 16px;
}

.bn-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--bn-dark);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bn-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--bn-border);
    border-radius: 8px;
    background: var(--bn-white);
    color: var(--bn-dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
}

.bn-input:focus {
    outline: 0;
    border-color: var(--bn-red);
    background: var(--bn-white);
}

textarea.bn-input { min-height: 120px; resize: vertical; }

/* ---- INFO STRIP (between page content and footer) ---- */
.bn-info-strip {
    background: var(--bn-cream);
    padding: 30px 40px;
    border-top: 1px solid var(--bn-border);
    border-bottom: 1px solid var(--bn-border);
}

.bn-info-strip-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bn-info-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bn-info-strip-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--bn-white);
    color: var(--bn-red);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid var(--bn-cream-dark);
}

.bn-info-strip-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--bn-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.bn-info-strip-text {
    font-size: 0.82rem;
    color: var(--bn-text-mid);
    line-height: 1.5;
}

/* ---- FOOTER ---- */
.bn-footer {
    background: var(--bn-dark);
    color: rgba(255, 255, 255, 0.78);
    padding: 60px 40px 0;
    margin-top: 0;
}

.bn-footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
}

.bn-footer-heading {
    color: var(--bn-red);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bn-footer-grid a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 2;
    transition: color 0.2s;
}

.bn-footer-grid a:hover { color: var(--bn-red); }

.bn-footer-grid p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 6px;
}

.bn-footer-grid p i {
    color: var(--bn-red);
    margin-right: 6px;
}

.bn-footer-logo {
    margin-bottom: 14px;
}

.bn-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.bn-footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bn-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.bn-footer-social a:hover {
    background: var(--bn-red);
    color: var(--bn-white);
}

/* Newsletter */
.bn-newsletter {
    display: flex;
    margin-top: 12px;
    background: var(--bn-white);
    border-radius: 6px;
    overflow: hidden;
    max-width: 360px;
}

.bn-newsletter-input {
    flex: 1;
    border: 0;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--bn-dark);
    background: transparent;
    outline: 0;
    min-width: 0;
}

.bn-newsletter-btn {
    background: var(--bn-red);
    color: var(--bn-white);
    border: 0;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.bn-newsletter-btn:hover { background: var(--bn-red-dark); }

/* Footer bottom */
.bn-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.bn-footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.82rem;
    margin: 0 4px;
}

.bn-footer-legal a:hover { color: var(--bn-red); }

.bn-sep { color: rgba(255, 255, 255, 0.3); }

/* ---- SPICE LEVEL VARIANTS ---- */
.bn-spice-mild     { background: #FFF1B8; color: #8B6E1F; }
.bn-spice-medium   { background: #FFE0B8; color: #B5651D; }
.bn-spice-hot      { background: #FFD0CC; color: #C44; }
.bn-spice-very_hot { background: #FFB8B8; color: #B22; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .bn-nav { padding: 0 24px; }
    .bn-topbar { padding: 8px 24px; }
    .bn-section, .bn-section-cream, .bn-section-dark { padding: 50px 24px; }
    .bn-hero { padding: 140px 24px 60px; }
    .bn-page-header { padding: 140px 24px 40px; }
    body.theme-bagel-bites > .bn-hero,
    body.theme-bagel-bites > .bn-page-header { padding-top: 140px; }
    .bn-hero-inner { gap: 30px; }
    .bn-cta-banner { padding: 60px 24px; }
    .bn-info-strip { padding: 30px 24px; }
    .bn-info-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .bn-footer { padding: 50px 24px 0; }
    .bn-popular-grid { grid-template-columns: repeat(3, 1fr); }
    .bn-feature-grid { grid-template-columns: 1fr 1fr; }
    .bn-feature-grid > :nth-child(3) { grid-column: 1 / -1; }
    .bn-nav-links { gap: 20px; }
    .bn-nav-links a { font-size: 0.72rem; letter-spacing: 1px; }
    .bn-topbar-text { font-size: 0.65rem; letter-spacing: 1px; }
}

@media (max-width: 860px) {
    .bn-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bn-hero-text { padding: 0; }
    .bn-hero-sub { margin-left: auto; margin-right: auto; }
    .bn-hero-buttons { justify-content: center; }
    .bn-hero-art { max-width: 420px; margin: 20px auto 0; }
    .bn-about-grid { grid-template-columns: 1fr; gap: 30px; }
    .bn-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .bn-cat-nav { margin: 0 -24px; }
    .bn-cat-nav-inner { padding: 0 24px; }
    .bn-popular-grid { grid-template-columns: repeat(2, 1fr); }
    .bn-feature-grid { grid-template-columns: 1fr; }
    .bn-feature-grid > :nth-child(3) { grid-column: auto; }
    .bn-section-heading::before,
    .bn-section-heading::after { width: 40px; }
}

@media (max-width: 720px) {
    .bn-topbar { padding: 6px 16px; height: 32px; }
    .bn-topbar-text {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
    }
    .bn-topbar-phone { font-size: 0.75rem; }
    .bn-nav { top: 32px; height: 64px; padding: 0 16px; }
    body.theme-bagel-bites > .bn-hero,
    body.theme-bagel-bites > .bn-page-header { padding-top: 120px; }
    .bn-hero { padding: 120px 20px 50px; }
    .bn-page-header { padding: 120px 20px 40px; }

    .bn-cat-nav { top: 96px; }

    .bn-hamburger { display: flex; }
    .bn-nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        flex-direction: column;
        background: var(--bn-cream);
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--bn-border);
        align-items: stretch;
        margin-left: 0;
    }
    .bn-nav-links.open { display: flex; }
    .bn-nav-links li { width: 100%; }
    .bn-nav-links a { display: block; padding: 10px 8px; }
    .bn-nav-links a.bn-btn { text-align: center; margin-top: 6px; }

    .bn-hero-title { font-size: 2.4rem; }
    .bn-section-title { font-size: 1.6rem; }
    .bn-page-header h1 { font-size: 2.2rem; }
    .bn-cta-banner h2 { font-size: 1.9rem; }
    .bn-dark-band-title { font-size: 1.8rem; }

    .bn-cat-circles { gap: 16px 18px; }
    .bn-cat-circle-item { width: 76px; }
    .bn-cat-circle { width: 64px; height: 64px; }
    .bn-cat-circle i { font-size: 1.5rem; }
    .bn-cat-circle-label { font-size: 0.62rem; letter-spacing: 0.5px; }

    .bn-menu-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .bn-menu-card-body { padding: 14px 14px 16px; }
    .bn-menu-card-body h3 { font-size: 0.95rem; }
    .bn-price { font-size: 1.05rem; }
    .bn-btn-add { padding: 6px 14px; font-size: 0.7rem; }

    .bn-popular-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .bn-popular-card { padding: 14px 12px; }
    .bn-popular-name { font-size: 0.78rem; }

    .bn-feature-panel { padding: 22px 20px; min-height: auto; }
    .bn-feature-panel-img { flex: 0 0 40%; }

    .bn-info-strip-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .bn-footer-grid { grid-template-columns: 1fr; }
    .bn-footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .bn-section, .bn-section-cream, .bn-section-dark { padding: 40px 16px; }
    .bn-hero { padding: 110px 16px 40px; }
    .bn-page-header { padding: 110px 16px 30px; }
    .bn-menu-table { padding: 4px 16px; }
    .bn-menu-row-main { row-gap: 4px; }
    .bn-info-strip-grid { grid-template-columns: 1fr; }
    .bn-info-strip { padding: 24px 16px; }
}
