/*
Theme Name: White Bricks
Theme URI: https://whitebrickscafe.com.au
Description: Custom theme for White Bricks Cafe — pure HTML/CSS wrapped in WordPress PHP templates.
Author: JC CHAI PTY LTD
Version: 1.0.0
License: Proprietary
Text Domain: wb-theme
*/

/* ===== White Bricks — Textured Brick Wall Design System ===== */

/* ===== LOCAL FONTS ===== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/inter-400.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/playfair-display-400.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/playfair-display-700-italic.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Rochester Signature';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/rochester-signature.woff2') format('woff2');
}

:root {
    --bg: #F5F0EB;
    --bg-dark: #2A1D0F;
    --bg-card-dark: rgba(28, 17, 8, 0.31);
    --bg-cta: #2C1810;
    --bg-cta-feat: #4A2C17;
    --text: #1C1108;
    --text-sec: #3D2A1A;
    --text-muted: #5C3820;
    --text-light: #D4C4B0;
    --text-cream: #E8DFD3;
    --text-white: #FFFFFF;
    --accent: #5C3820;
    --gold: #E8C99A;
    --star: #E8B060;
    --legal: #A09080;
    --border: rgba(44, 24, 16, 0.125);
    --border-gold: rgba(232, 201, 154, 0.133);
    --heading: 'Playfair Display', serif;
    --body: 'Inter', sans-serif;
    --radius: 16px;
    --pill: 100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}
h1, h2, h3, h4 { font-family: var(--heading); line-height: 1.1; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--body); }

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: min(800px, 100%); }
.content-above { position: relative; z-index: 2; }

/* ===== TEXTURE BACKGROUNDS ===== */
.tex {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.tex--light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245,240,235,0.80) 0%, rgba(245,240,235,0.80) 40%, rgba(245,240,235,0.85) 80%);
    z-index: 1;
    pointer-events: none;
}
.tex--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42,29,15,0.63) 0%, rgba(42,29,15,0.75) 40%, rgba(42,29,15,0.88) 100%);
    z-index: 1;
    pointer-events: none;
}
.tex--darker::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42,29,15,0.75) 0%, rgba(42,29,15,0.82) 40%, rgba(42,29,15,0.91) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 0;
}
.logo span {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    color: var(--text);
}
/* Rochester Signature script logo — fills nav bar height in one row */
.logo--script {
    font-family: 'Rochester Signature', cursive;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0;
    color: var(--text);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.nav { display: flex; align-items: center; gap: 24px; }
.nav__link {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-sec);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav__link:hover { color: var(--accent); }
.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-cta);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: var(--pill);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: background 0.2s;
}
.btn-order:hover { background: var(--accent); }

/* ===== HERO ===== */
.hero { padding: 0; position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(245,240,235,0.80) 0%, rgba(245,240,235,0.80) 40%, rgba(245,240,235,0.85) 80%); z-index: 1; pointer-events: none; }
.hero__content { padding: 48px 24px 24px; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    padding: 6px 12px;
    border-radius: var(--pill);
    border: 1px solid rgba(44,24,16,0.25);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: background 0.2s;
}
.badge:hover { background: #EDE8E1; }
.hero__h1 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--text);
    margin: 16px 0;
}
.hero__sub {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-sec);
}

/* Order Grid */
.order-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 600px;
    margin: 24px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.order-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 12px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 140px;
}
.order-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,24,16,0.15); }
.order-card--feat { background: var(--bg-cta-feat); color: var(--text-white); }
.order-card--light { background: var(--bg); border: 1px solid var(--border); color: var(--text); }
.order-card--feat .order-card__title { color: var(--text-white); }
.order-card--feat .order-card__sub { color: rgba(255,255,255,0.67); }
.order-card--light .order-card__sub { color: var(--accent); }
.order-card__icon { width: 24px; height: 24px; }
.order-card__title { font-size: 14px; font-weight: 700; line-height: 1.15; text-align: center; }
.order-card__sub { font-size: 10px; text-align: center; }

/* Walk-in text */
.walkin {
    text-align: center;
    font-size: 11px;
    color: var(--text-sec);
    padding: 16px 24px;
    position: relative;
    z-index: 2;
}

/* ===== CAROUSEL ===== */
.carousel-wrap { position: relative; padding: 0 24px; z-index: 2; }
.carousel-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
    flex: 0 0 calc(33.333% - 7px);
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.carousel-slide img { width: 100%; height: 170px; object-fit: cover; transition: transform 0.3s; }
.carousel-slide:hover img { transform: scale(1.05); }
.carousel-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 10px 8px;
    background: linear-gradient(transparent, rgba(28,17,8,0.75));
    color: #F5F0EB;
    font-size: 11px;
    font-weight: 600;
}
.carousel-arrow {
    position: absolute;
    top: 50%; transform: translateY(-70%);
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(28,17,8,0.6);
    color: #F5F0EB;
    font-size: 22px;
    z-index: 3;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}
.carousel-arrow:hover { background: rgba(28,17,8,0.85); }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; padding: 12px 0 4px; }
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(92,56,32,0.25);
    padding: 0;
    transition: all 0.2s;
}
.carousel-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }

/* ===== SECTION SPACING ===== */
.section { padding: 56px 0; }
.section--hero { padding: 0; }
.section--footer { padding: 40px 0; }

/* ===== HIGHLIGHTS ===== */
.section--highlights { background-image: url('images/textures/timber.webp'); }
.section-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.label--gold { color: var(--gold); }
.label--brown { color: var(--accent); }
.hl-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }
.hl-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--bg-card-dark);
    border: 1px solid var(--border-gold);
}
.hl-card__icon { color: var(--gold); flex-shrink: 0; }
.hl-card__title { font-family: var(--heading); font-size: 16px; font-weight: 700; line-height: 1.15; color: var(--text-white); }
.hl-card__desc { font-size: 11px; line-height: 1.4; color: var(--text-light); margin-top: 4px; }

/* ===== HOW IT WORKS ===== */
.section--hiw { background-image: url('images/textures/brick.webp'); }
.hiw__h2 { font-size: 28px; font-weight: 700; letter-spacing: -1px; color: var(--text); margin: 12px 0 16px; }
.hiw__sub { font-size: 14px; line-height: 1.6; color: var(--text-sec); margin-bottom: 24px; }
.steps { display: flex; flex-direction: column; gap: 12px; }
.step {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border);
}
.step__num { font-family: var(--heading); font-size: 32px; font-weight: 700; color: var(--accent); flex-shrink: 0; line-height: 1; }
.step__title { font-size: 16px; font-weight: 600; color: var(--text); }
.step__desc { font-size: 13px; line-height: 1.5; color: var(--accent); margin-top: 4px; }
.cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--pill);
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.2s;
}
.cta-outline:hover { background: var(--accent); color: var(--text-white); }

/* ===== REVIEWS ===== */
.section--reviews { background-image: url('images/textures/timber.webp'); padding: 56px 0; }
.reviews__h2 { font-size: 28px; font-style: italic; font-weight: 700; letter-spacing: -1.5px; color: #F5F0EB; margin: 8px 0; }
.reviews__sub { font-size: 13px; color: var(--gold); margin-bottom: 20px; }
.reviews-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.review-card {
    padding: 16px;
    border-radius: var(--radius);
    background: var(--bg-card-dark);
    border: 1px solid var(--border-gold);
}
.review-card__text { font-size: 14px; font-style: italic; line-height: 1.4; color: var(--text-cream); margin-bottom: 6px; }
.review-card__stars { color: var(--star); font-size: 12px; }
.review-card__author { font-size: 11px; color: var(--gold); margin-top: 4px; font-weight: 500; }
.ig-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; text-decoration: none; }
.ig-cta__handle { color: var(--text-white); font-weight: 600; }
.ig-cta__count { color: var(--gold); }
.cta-outline--gold { border-color: var(--gold); color: var(--gold); margin-top: 12px; }
.cta-outline--gold:hover { background: var(--gold); color: var(--text); }

/* ===== FIND US ===== */
.section--findus { background-image: url('images/textures/brick.webp'); }
.findus__addr { font-size: 28px; font-weight: 700; letter-spacing: -1px; color: var(--text); margin: 8px 0 24px; }
.findus-layout { display: flex; flex-direction: column; gap: 32px; }
.findus-map { border-radius: 12px; overflow: hidden; }
.findus-details { display: flex; flex-direction: column; gap: 12px; }
.detail-row { display: flex; align-items: center; gap: 12px; }
.detail-icon { color: var(--accent); flex-shrink: 0; }
.detail-text { font-size: 14px; color: var(--text-sec); }
.detail-text--bold { font-weight: 600; color: var(--text); }
#find-us { scroll-margin-top: 72px; }

/* ===== FOOTER ===== */
.footer { background: #2C1810 !important; background-image: none !important; color: var(--text-cream); }
.footer::before { display: none !important; }
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    color: var(--text-light);
}
.footer .logo span { color: var(--text-white); font-size: 12px; }
.footer .logo--script { color: var(--text-white); font-size: 28px; }
.footer__tag { font-size: 12px; line-height: 1.5; color: var(--text-light); word-break: break-word; }
.footer__hrs { font-size: 11px; font-weight: 500; color: var(--gold); }
.footer__divider { width: 100%; height: 1px; background: rgba(255,255,255,0.125); }
.footer__nav { font-size: 12px; color: var(--text-cream); }
.footer__nav a { color: var(--text-cream); text-decoration: none; transition: color 0.2s; }
.footer__nav a:hover { color: var(--text-white); }
.footer__social { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; color: var(--text-cream); }
.footer__social a { color: var(--text-cream); text-decoration: none; font-size: 11px; transition: color 0.2s; }
.footer__social a:hover { color: var(--text-white); }
.footer__legal { font-size: 10px; line-height: 1.6; color: var(--legal); }
.footer__legal a { color: var(--legal); text-decoration: underline; text-decoration-color: rgba(160,144,128,0.3); }
.footer__legal a:hover { color: var(--text-light); }

/* ===== ABOUT PAGE ===== */
.about__label { margin-bottom: 12px; }
.about__h1 { font-size: 48px; font-weight: 700; letter-spacing: -2px; line-height: 0.85; margin-bottom: 20px; }
.about__body { font-size: 15px; line-height: 1.8; color: var(--text-sec); }
.about-hero { position: relative; overflow: hidden; }
.about-hero__img { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; margin-bottom: 32px; }
.about-section { margin-bottom: 48px; }
.about-section__label { display: block; margin-bottom: 8px; }
.about-section__h2 { font-family: var(--heading); font-size: 28px; font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; color: var(--text); }
.about-section__body { font-size: 15px; line-height: 1.8; color: var(--text-sec); margin-bottom: 12px; }
.about-section__body strong { color: var(--text); font-weight: 600; }
.about-dishes { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 20px 0; }
.about-dish { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; }
.about-dish__icon { font-size: 20px; flex-shrink: 0; }
.about-dish__name { font-weight: 600; font-size: 14px; color: var(--text); }
.about-dish__desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.dukes-block { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; margin: 20px 0; }
.dukes-block__header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.dukes-block__badge { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); background: rgba(92,56,32,0.08); padding: 4px 10px; border-radius: var(--pill); }
.dukes-block__link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 13px; font-weight: 600; text-decoration: none; margin-top: 12px; transition: color 0.2s; }
.dukes-block__link:hover { color: var(--text); }
.dukes-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.dukes-feat { display: flex; align-items: start; gap: 8px; font-size: 13px; color: var(--text-sec); line-height: 1.5; }
.dukes-feat__check { color: var(--accent); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* Interior photo inside Dukes block */
.dukes-photo { border-radius: 12px; overflow: hidden; margin: 0 0 20px; box-shadow: 0 2px 12px rgba(28,17,8,0.08); }
.dukes-photo img { width: 100%; height: auto; display: block; }

/* About Section 4 — The Space: two portrait photos side-by-side at every breakpoint */
.space-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px auto; max-width: 800px; }
.space-grid img { width: 100%; height: auto; border-radius: 12px; display: block; box-shadow: 0 2px 12px rgba(28,17,8,0.18); }
@media (max-width: 480px) { .space-grid { gap: 10px; } }

/* ===== LEGAL PAGES ===== */
.legal h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.legal h2 { font-size: 22px; font-weight: 700; margin-top: 32px; margin-bottom: 12px; }
.legal p { font-size: 14px; line-height: 1.7; color: var(--text-sec); margin-bottom: 8px; }
.legal a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(92,56,32,0.3); }
.legal a:hover { text-decoration-color: var(--accent); }

/* ===== MENU PLACEHOLDER ===== */
.menu-placeholder { text-align: center; padding: 80px 24px; }
.menu-placeholder__h1 { font-size: 36px; margin-bottom: 16px; }
.menu-placeholder__text { font-size: 15px; color: var(--text-sec); margin-bottom: 24px; }

/* ===== WPCAFE ORDER PAGE ===== */
.order-page { padding: 32px 0 56px; }
.order-page__h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; text-align: center; }
.order-page__sub { font-size: 15px; color: var(--text-sec); margin-bottom: 32px; text-align: center; }
.order-page__surcharge { margin-top: 16px; font-size: 13px; color: var(--text-muted); text-align: center; }

/* ===== WPCAFE OVERRIDES ===== */

/* Category tabs — pill-style horizontal scroll */
.wpc-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    justify-content: center !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
}
.wpc-nav li {
    list-style: none !important;
}
.wpc-nav li a {
    font-family: var(--body) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: var(--text-sec) !important;
    padding: 8px 16px !important;
    border-radius: var(--pill) !important;
    border: 1px solid var(--border) !important;
    background: transparent !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    display: inline-block !important;
}
.wpc-nav li a:hover {
    background: var(--accent) !important;
    color: var(--text-white) !important;
    border-color: var(--accent) !important;
}
.wpc-nav li a[style*="color"],
.wpc-nav li a.active,
.wpc-nav li.active a,
.wpc-nav li a.wpc-active {
    background: var(--bg-cta) !important;
    color: var(--text-white) !important;
    border-color: var(--bg-cta) !important;
    border-bottom: none !important;
}

/* Hide WPCafe search — tabs are enough for a cafe menu */
.wpc-ajax-input-search,
.wpc-ajax-livesearch-wrap {
    display: none !important;
}

/* Hide the old WPCafe tab active indicator triangle */
.wpc-nav li a::after,
.wpc-nav li a::before {
    display: none !important;
}
/* Override any inline border-bottom from WPCafe JS */
.wpc-nav li a[style] {
    border-bottom: none !important;
}

/* Menu item cards */
.wpc-food-menu-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    background: var(--bg) !important;
    padding: 16px 20px !important;
    margin-bottom: 8px !important;
    transition: border-color 0.2s !important;
}
.wpc-food-menu-item:hover {
    border-color: rgba(92, 56, 32, 0.3) !important;
}
.wpc-food-menu-item .wpc-food-menu-title,
.wpc-food-menu-item .wpc-post-title {
    font-family: var(--heading) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: var(--text) !important;
}
.wpc-food-menu-item .wpc-food-menu-title a,
.wpc-food-menu-item .wpc-post-title a {
    text-decoration: none !important;
    color: inherit !important;
}
.wpc-food-menu-item .wpc-food-menu-desc,
.wpc-food-menu-item .wpc-food-menu-content p,
.wpc-food-menu-item .wpc-food-inner-content > p {
    font-size: 13px !important;
    color: var(--text-sec) !important;
    line-height: 1.5 !important;
}
.wpc-food-menu-item .wpc-food-menu-price,
.wpc-food-menu-item .wpc-menu-price {
    color: #C24B3A !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    font-family: var(--body) !important;
}
/* Also catch the currency wrapper span */
.wpc-food-menu-item .wpc-menu-currency {
    color: #C24B3A !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    font-family: var(--body) !important;
}
/* WPCafe 3.0.8 title border decoration */
.wpc-food-menu-item .wpc-title-border {
    display: none !important;
}

/* Add-to-cart button — pill with + icon */
.wpc-food-menu-item a.add_to_cart_button,
.wpc-food-menu-item a.product_type_simple.add_to_cart_button {
    background: var(--bg-cta) !important;
    color: var(--text-white) !important;
    border-radius: var(--pill) !important;
    width: auto !important;
    height: auto !important;
    padding: 8px 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    border: none !important;
    font-family: var(--body) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: background 0.2s, transform 0.15s !important;
    text-decoration: none !important;
}
.wpc-food-menu-item a.add_to_cart_button::before {
    content: '+' !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}
.wpc-food-menu-item a.add_to_cart_button:hover {
    background: var(--accent) !important;
    transform: scale(1.05) !important;
}
/* "Select options" for variable products */
.wpc-food-menu-item a.product_type_variable {
    background: transparent !important;
    color: var(--accent) !important;
    border: 1.5px solid var(--accent) !important;
    border-radius: var(--pill) !important;
    padding: 8px 18px !important;
    font-family: var(--body) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.2s !important;
    text-decoration: none !important;
}
.wpc-food-menu-item a.product_type_variable:hover {
    background: var(--accent) !important;
    color: var(--text-white) !important;
}

/* Hide product thumbnails (no photos yet) */
.wpc-food-menu-item .wpc-food-menu-thumb { display: none !important; }

/* Hide WPCafe floating mini-cart — we use our own cart bar */
.wpc_cart_block { display: none !important; }

/* ===== FLOATING CART BAR ===== */
.cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.cart-bar--visible {
    transform: translateY(0);
    pointer-events: auto;
}
.cart-bar__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    padding: 14px 24px;
    background: var(--bg-cta);
    color: var(--text-white);
    border-radius: var(--pill);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(28, 17, 8, 0.35);
    transition: background 0.2s, transform 0.15s;
}
.cart-bar__inner:hover {
    background: var(--accent);
    transform: scale(1.02);
}
.cart-bar__icon {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.cart-bar__count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #C24B3A;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.cart-bar__label {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.cart-bar__total {
    margin-left: auto;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}
.cart-bar__arrow {
    font-size: 18px;
    flex-shrink: 0;
}

/* ===== WOOCOMMERCE SINGLE PRODUCT ===== */
/* Hide sidebar widgets on product/cart/checkout pages */
.woocommerce-page .widget-area,
.woocommerce-page aside#secondary,
.single-product .widget-area,
.single-product aside#secondary,
body.woocommerce .sidebar,
body.woocommerce #secondary {
    display: none !important;
}
/* Make product content full width */
.woocommerce-page #primary,
.single-product #primary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}
/* Style the variation dropdown */
.single-product .variations select {
    font-family: var(--body) !important;
    font-size: 14px !important;
    padding: 10px 16px !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    background: var(--bg) !important;
    color: var(--text) !important;
    min-width: 120px !important;
}
.single-product .variations .label label {
    font-family: var(--body) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--text) !important;
}
/* Single product add to cart */
.single-product .single_add_to_cart_button {
    background: var(--bg-cta) !important;
    color: var(--text-white) !important;
    border-radius: var(--pill) !important;
    font-family: var(--body) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 14px 32px !important;
    border: none !important;
    transition: background 0.2s !important;
}
.single-product .single_add_to_cart_button:hover {
    background: var(--accent) !important;
}
/* Quantity input */
.single-product .quantity input[type="number"] {
    font-family: var(--body) !important;
    font-size: 16px !important;
    padding: 10px !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    width: 60px !important;
    text-align: center !important;
}
/* Breadcrumb */
.woocommerce-breadcrumb {
    font-family: var(--body) !important;
    font-size: 12px !important;
    color: var(--text-muted) !important;
    padding: 12px 0 !important;
}
.woocommerce-breadcrumb a {
    color: var(--accent) !important;
    text-decoration: none !important;
}
/* Product title */
.single-product .product_title {
    font-family: var(--heading) !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
}
/* Price */
.single-product .price {
    color: #C24B3A !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}
/* Product description */
.single-product .woocommerce-product-details__short-description {
    font-size: 15px !important;
    color: var(--text-sec) !important;
    line-height: 1.6 !important;
}
/* Hide SKU, Related products, tabs on product pages */
.single-product .product_meta,
.single-product .related.products,
.single-product .woocommerce-tabs {
    display: none !important;
}

/* ===== WOOCOMMERCE CART & CHECKOUT ===== */
.woocommerce .button,
.woocommerce input.button,
.woocommerce a.button {
    background: var(--bg-cta) !important;
    color: var(--text-white) !important;
    border-radius: var(--pill) !important;
    font-family: var(--body) !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    padding: 12px 24px !important;
    border: none !important;
    transition: background 0.2s !important;
}
.woocommerce .button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
    background: var(--accent) !important;
}
/* Cart page empty state */
.cart-empty {
    font-family: var(--heading) !important;
    font-size: 20px !important;
    text-align: center !important;
    color: var(--text-sec) !important;
}
.return-to-shop .button {
    margin-top: 16px !important;
}

/* ===== DESKTOP ===== */
@media (min-width: 1025px) {
    .hero__content { padding-top: 96px; text-align: center; }
    .hero__h1 { font-size: 56px; }
    .section { padding: 72px 0; }
    .container { padding: 0 40px; }
    .section-label { display: block; text-align: center; }
    .hl-grid { grid-template-columns: repeat(4, 1fr); }
    .hiw__h2 { font-size: 40px; text-align: center; }
    .hiw__sub { text-align: center; }
    .steps { flex-direction: row; gap: 16px; }
    .step { flex-direction: column; flex: 1; text-align: center; }
    .cta-outline { display: inline-flex; margin-left: auto; margin-right: auto; }
    .section--hiw .container, .section--reviews .container, .section--findus .container { text-align: center; }
    .reviews__h2 { font-size: 40px; }
    .reviews-grid { flex-direction: row; gap: 16px; }
    .review-card { flex: 1; text-align: left; }
    .findus-layout { flex-direction: row; gap: 40px; }
    .findus-map, .findus-details { flex: 1; text-align: left; }
    .findus__addr { font-size: 32px; }
    .carousel-slide img { height: 200px; }
    .carousel-wrap { padding: 0 40px; }
    .about-hero__img { height: 400px; }
    .about-section__h2 { font-size: 36px; }
    .about-dishes { grid-template-columns: 1fr 1fr; }
    .logo--script { font-size: 28px; }
    .footer .logo--script { font-size: 28px; }
}

/* ===== TABLET ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo--script { font-size: 24px; }
    .footer .logo--script { font-size: 24px; }
    .hero { padding-bottom: 48px; }
    .hero__content { text-align: center; }
    .order-grid { grid-template-columns: repeat(2, 1fr); max-width: 400px; }
    .section-label { display: block; text-align: center; }
    .hl-grid { grid-template-columns: repeat(2, 1fr); }
    .section--hiw .container, .section--reviews .container, .section--findus .container { text-align: center; }
    .hiw__h2, .hiw__sub { text-align: center; }
    .step { flex-direction: column; text-align: center; align-items: center; }
    .review-card { text-align: left; }
    .findus-details { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .detail-row { justify-content: center; }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .header__inner { height: 48px; }
    .logo span { font-size: 11px; letter-spacing: 3px; }
    .logo--script { font-size: 18px; }
    .footer .logo--script { font-size: 18px; }
    .nav__link { font-size: 9px; }
    .btn-order { padding: 6px 12px; font-size: 9px; }
    .hero__h1 { font-size: 34px; }
    .hero { padding-bottom: 40px; }
    .hl-grid { grid-template-columns: 1fr; }
    .carousel-slide img { height: 140px; }
    .carousel-arrow { width: 30px; height: 30px; font-size: 18px; }
    .findus__addr { font-size: 24px; }
    .about__h1 { font-size: 36px; }
}

@media (max-width: 480px) {
    .order-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .order-card { min-height: 120px; padding: 10px; }
    .hero__h1 { font-size: 30px; }
}
