/* ==========================================================
   LUNCH STORY — BISTRO NOWOCZESNE (WERSJA OLIWKOWA)
   ========================================================== */

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

:root {
    --primary: #2d5a27;
    --primary-light: #44803b;
    --primary-dark: #1b3a17;
    --accent: #e59819;
    --accent-hover: #cf840f;
    --accent-soft: rgba(229, 152, 25, 0.14);
    
    --bg-page: #fbfbf8;
    --bg-card: #ffffff;
    --bg-alt: #f4f6f2;
    --bg-dark: #182218;

    --text-main: #202720;
    --text-muted: #5e6c5e;
    --text-light: #8e9e8e;
    --text-white: #ffffff;

    --border: rgba(45, 90, 39, 0.12);
    --border-card: rgba(0, 0, 0, 0.07);
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(45, 90, 39, 0.09);
    --shadow-lg: 0 20px 50px rgba(45, 90, 39, 0.14);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.2;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 36px;
}

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

.text-body {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1.02rem;
}

.btn-block {
    width: 100%;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
    background-color: var(--primary-dark);
    color: #e2ede1;
    font-size: 0.82rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.tb-item strong {
    color: #ffffff;
}

.tb-divider {
    color: var(--accent);
}

.tb-phone {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    padding: 3px 12px;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.tb-phone:hover {
    background: var(--accent);
    color: #111;
}

/* MAIN HEADER */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 251, 248, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-img {
    height: 48px;
    width: auto;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 650;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.25s ease;
    border-radius: 2px;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.25s ease;
}

.btn-call:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.btn-call:hover small {
    color: #d1ebd0;
}

.btn-icon {
    font-size: 1.15rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}

.btn-text small {
    font-size: 0.70rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}

.btn-text strong {
    font-size: 0.92rem;
    font-weight: 800;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-btn span {
    width: 26px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: 0.3s;
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    z-index: 999;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.m-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.m-hours {
    font-size: 0.84rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

/* HERO SECTION */
.hero-section {
    padding: 60px 0 70px;
    background: linear-gradient(180deg, rgba(45, 90, 39, 0.05) 0%, transparent 100%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}

.badge-star {
    color: #d97706;
    font-weight: 850;
}

.badge-pipe {
    color: #d1d5db;
}

.hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(229, 152, 25, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-lead {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

.hl-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hl-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.hl-desc strong {
    display: block;
    font-size: 0.90rem;
    color: var(--text-main);
    line-height: 1.2;
}

.hl-desc small {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* HERO VISUAL */
.visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #ffffff;
    border: 3px solid #ffffff;
}

.hero-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.visual-card:hover .hero-main-img {
    transform: none;
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.v-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    flex-shrink: 0;
}

.visual-badge strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-main);
}

.visual-badge span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* LIVE DAILY STRIP */
.live-daily-strip {
    background: var(--primary);
    color: #ffffff;
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.strip-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.strip-tag {
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.25);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.strip-content {
    font-size: 0.95rem;
    flex-grow: 1;
}

.strip-btn {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    background: var(--accent);
    color: #111;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.strip-btn:hover {
    background: #fbbc04;
    transform: translateX(4px);
}

/* MENU SECTION */
.menu-section {
    padding: 90px 0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    font-size: 0.90rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(45, 90, 39, 0.25);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.menu-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45, 90, 39, 0.3);
}

.card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #eee;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item-card:hover .card-img {
    transform: scale(1.06);
}

.item-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--primary-dark);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.card-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.item-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
}

.item-price {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary);
    white-space: nowrap;
}

.item-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 12px;
}

.diet-tag {
    font-size: 0.74rem;
    font-weight: 700;
    color: #4b6348;
}

.order-link {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.order-link:hover {
    color: var(--accent);
}

.menu-notice {
    background: var(--bg-alt);
    border: 1px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    color: var(--text-main);
    font-size: 0.95rem;
}

.menu-notice a {
    color: var(--primary);
    text-decoration: underline;
}

/* ABOUT SECTION */
.about-section {
    padding: 90px 0;
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    display: flex;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--border-card);
}

.afc-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.afc-icon p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.about-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.ab-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.ab-num {
    display: block;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.ab-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 90px 0;
}

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

.gallery-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-thumb {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 26, 16, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.90rem;
}

/* REVIEWS SECTION GOOGLE */
.reviews-section {
    padding: 90px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reviews-header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.google-badge-top {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: var(--radius-md);
}

.g-rating-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #111;
    margin-right: 6px;
}

.g-stars {
    color: #fbbc04;
    font-size: 1.25rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.review-card {
    background: var(--bg-page);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45, 90, 39, 0.3);
}

.rc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.av-1 { background: #2563eb; }
.av-2 { background: #d97706; }
.av-3 { background: #059669; }
.av-4 { background: #7c3aed; }
.av-5 { background: #dc2626; }
.av-6 { background: #0891b2; }

.rc-user-info {
    flex-grow: 1;
}

.rc-user-info strong {
    display: block;
    font-size: 0.94rem;
    color: var(--text-main);
}

.rc-badge-guide {
    font-size: 0.72rem;
    color: #d97706;
    font-weight: 700;
}

.rc-badge-verified {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.rc-date {
    font-size: 0.74rem;
    color: var(--text-light);
}

.rc-stars {
    color: #fbbc04;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.rc-text {
    font-size: 0.90rem;
    color: #3b473b;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.rc-footer {
    border-top: 1px solid #eef2ed;
    padding-top: 10px;
}

.rc-tag {
    font-size: 0.74rem;
    font-weight: 750;
    color: var(--primary);
    background: rgba(45, 90, 39, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
}

/* CATERING SECTION */
.catering-section {
    padding: 90px 0;
    background: var(--bg-alt);
}

.catering-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cat-list {
    list-style: none;
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cat-list li {
    display: flex;
    gap: 14px;
}

.cat-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cat-list strong {
    font-size: 1.05rem;
    color: var(--text-main);
}

.cat-list p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.cat-cta-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.cat-cta-box p {
    font-size: 0.94rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-main);
}

.cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cat-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.cat-badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cat-badge-float strong {
    font-size: 1.05rem;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.cat-badge-float p {
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* DELIVERY SECTION */
.delivery-section {
    padding: 80px 0;
}

.delivery-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.delivery-box .section-eyebrow {
    color: var(--accent);
}

.delivery-box .section-title {
    color: #ffffff;
}

.del-lead {
    font-size: 1.05rem;
    color: #d1ebd0;
    margin-bottom: 28px;
    line-height: 1.6;
}

.del-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 34px;
}

.df-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 16px 14px;
}

.df-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 8px;
}

.df-item strong {
    display: block;
    font-size: 0.88rem;
    color: #ffffff;
}

.df-item small {
    font-size: 0.74rem;
    color: #b0d4af;
}

.del-info-card {
    background: #ffffff;
    color: var(--text-main);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.del-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.area-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.92rem;
}

.del-phone-box {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    text-align: center;
}

.del-phone-box span {
    display: block;
    font-size: 0.80rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.del-phone-box a {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
}

/* CONTACT SECTION */
.contact-section {
    padding: 90px 0;
    background: var(--bg-page);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.c-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.c-card-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.c-card strong {
    font-size: 0.96rem;
    color: var(--text-main);
}

.c-card p {
    font-size: 0.90rem;
    color: var(--text-muted);
    margin: 2px 0;
}

.c-card small {
    font-size: 0.78rem;
    color: var(--text-light);
}

.c-card a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.c-map-link {
    font-size: 0.84rem;
    display: inline-block;
    margin-top: 4px;
}

.c-map-link:hover {
    text-decoration: underline;
}

.social-links-row {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.soc-btn {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 750;
    color: var(--primary);
}

.soc-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

.contact-map-wrap {
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    overflow: hidden;
}

/* FOOTER */
.site-footer {
    background: #111712;
    color: #d1ddd1;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.f-brand p {
    font-size: 0.88rem;
    color: #92a392;
    line-height: 1.6;
    margin-top: 14px;
}

.f-logo {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.f-links h4, .f-contact h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

.f-links a {
    display: block;
    color: #a4b5a4;
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.f-links a:hover {
    color: #ffffff;
}

.f-contact p {
    font-size: 0.88rem;
    color: #a4b5a4;
    margin-bottom: 8px;
}

.f-contact a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.fb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #7b8f7b;
    flex-wrap: wrap;
    gap: 12px;
}

.hub-back-link {
    color: #4ade80;
    font-weight: 700;
    text-decoration: none;
}

.hub-back-link:hover {
    text-decoration: underline;
}

/* FLOATING MOBILE CALL BUTTON */
.floating-call-btn {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 998;
}

.fcb-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #10b981;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 850;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.45);
    letter-spacing: 0.02em;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox-modal.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    object-fit: contain;
}

#lightboxCaption {
    color: #ffffff;
    font-weight: 700;
    margin-top: 14px;
    font-size: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1080px) {
    .hero-grid, .about-grid, .catering-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visual-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .menu-grid, .gallery-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-box {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .desktop-menu {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .top-bar-inner {
        font-size: 0.76rem;
    }

    .tb-item:first-child {
        display: none;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .menu-grid, .gallery-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }

    .floating-call-btn {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 16px;
    }

    .nav-wrapper {
        height: 68px;
    }

    .brand-img {
        height: 34px;
    }

    .hero-section {
        padding: 28px 0 44px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6.5vw, 2.2rem);
    }

    .hero-lead {
        font-size: 0.94rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .hero-main-img {
        height: 280px;
    }

    .menu-categories-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .menu-tab {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.82rem;
        padding: 8px 14px;
    }

    .daily-toast {
        bottom: 80px;
        right: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
        padding: 12px 14px;
    }

    .c-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .del-features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .top-bar-inner {
        font-size: 0.70rem;
    }

    .fcb-link {
        font-size: 0.82rem;
        padding: 12px 14px;
    }
}

/* ==========================================================
   ANIMATIONS & DYNAMIC JS ENHANCEMENTS
   ========================================================== */

.reveal-init {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* LIVE DAILY TOAST */
.daily-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    max-width: 380px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(45, 90, 39, 0.12);
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    z-index: 1050;
    transform: translateY(120px) scale(0.9);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.daily-toast.toast-show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.toast-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    margin-top: 6px;
    flex-shrink: 0;
}

.toast-body {
    flex-grow: 1;
}

.toast-body strong {
    font-size: 0.88rem;
    color: var(--text-main);
    display: block;
    margin-bottom: 2px;
}

.toast-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 10px;
}

.toast-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-btn {
    background: var(--primary);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 999px;
    transition: background 0.2s;
}

.toast-btn:hover {
    background: var(--primary-light);
}

.toast-dismiss {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.toast-dismiss:hover {
    color: var(--text-main);
}

/* BACK TO TOP BUTTON */
.back-to-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 1.3rem;
    font-weight: 900;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.35);
    z-index: 990;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.back-to-top-btn.btt-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top-btn:hover {
    background: var(--accent);
    color: #111;
    transform: translateY(-4px);
}

@media (max-width: 820px) {
    .daily-toast {
        bottom: 84px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
    .back-to-top-btn {
        bottom: 84px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
}

/* ==========================================================
   GLOBAL DEMO SWITCHER BAR (EXACT QUICK PIZZA & BAR REPLICA)
   ========================================================== */
.global-demo-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    background: rgba(14, 14, 18, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
    max-width: calc(100% - 24px);
    width: fit-content;
    box-sizing: border-box;
    transition: transform 0.25s ease, opacity 0.25s ease, bottom 0.25s ease;
}

.global-demo-bar.is-minimized {
    display: none !important;
}

.demo-bar-body {
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-bar-group {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.demo-group-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.demo-pills-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 750;
    text-decoration: none;
    color: #dedede;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: all 0.2s ease;
    white-space: nowrap;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.demo-pill-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-1px);
}

.demo-pill-btn.active {
    background: var(--primary, #2d5a27);
    color: #ffffff;
    border-color: var(--primary, #2d5a27);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.demo-bar-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.16);
}

.demo-hub-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    user-select: none;
}

.demo-hub-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

.demo-bar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.demo-bar-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.demo-name-short {
    display: none;
}

.demo-name-full {
    display: inline;
}

.demo-min-badge {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 14px;
    z-index: 999999;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 14, 18, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.demo-min-badge:hover {
    background: rgba(28, 28, 34, 0.98);
    transform: translateY(-2px);
}

.demo-min-badge.is-visible {
    display: inline-flex;
}

@media (max-width: 880px) {
    .global-demo-bar {
        bottom: 84px;
        gap: 8px;
        padding: 6px 10px;
    }
    .demo-bar-body {
        gap: 8px;
    }
    .demo-group-label {
        display: none;
    }
    .demo-name-full {
        display: none;
    }
    .demo-name-short {
        display: inline;
    }
    .demo-pill-btn {
        padding: 6px 9px;
        font-size: 0.72rem;
    }
    .demo-hub-link {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    .demo-min-badge {
        bottom: 84px;
    }
}

@media (max-width: 600px) {
    .global-demo-bar {
        bottom: calc(74px + env(safe-area-inset-bottom, 0px));
        width: calc(100% - 16px);
        max-width: 410px;
        padding: 8px 10px 7px;
        border-radius: 18px;
        flex-direction: column;
        gap: 6px;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75);
    }
    .demo-bar-toggle {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 22px;
        height: 22px;
        font-size: 0.62rem;
        z-index: 2;
    }
    .demo-bar-body {
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }
    .demo-bar-group {
        width: 100%;
        justify-content: center;
    }
    .demo-group-projects {
        padding-right: 22px;
    }
    .demo-group-projects .demo-pills-row {
        width: 100%;
        display: flex;
        gap: 4px;
    }
    .demo-group-projects .demo-pill-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 7px 2px;
        font-size: 0.72rem;
        text-align: center;
        justify-content: center;
    }
    .demo-name-full {
        display: none;
    }
    .demo-name-short {
        display: inline;
    }
    .demo-group-label {
        display: none;
    }
    .demo-bar-sep {
        display: none;
    }
    .demo-group-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 6px;
        padding-top: 5px;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
    }
    .demo-group-actions .demo-pills-row {
        display: flex;
        gap: 4px;
        flex: 1;
    }
    .demo-color-btn {
        padding: 5px 6px;
        font-size: 0.68rem;
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
    }
    .demo-hub-link {
        padding: 5px 10px;
        font-size: 0.68rem;
        flex-shrink: 0;
    }
    .demo-min-badge {
        bottom: calc(74px + env(safe-area-inset-bottom, 0px));
        right: 12px;
        font-size: 0.72rem;
        padding: 7px 12px;
    }
}


/* RESPONSIVE ENHANCEMENTS FOR MOBILE (HEADER, CALL BUTTON, HERO BADGE) */
@media (max-width: 860px) {
    .btn-call {
        padding: 6px 12px;
        gap: 6px;
    }
    .btn-call small {
        display: none !important;
    }
    .btn-call strong {
        font-size: 0.82rem;
    }
    .btn-icon {
        font-size: 0.95rem;
    }
    
    /* Visual badge below photo so it does not obscure the image */
    .visual-card {
        display: flex;
        flex-direction: column;
    }
    .hero-main-img {
        height: 300px !important;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    }
    .visual-badge {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
        background: var(--bg-alt) !important;
        border: 1px solid var(--border) !important;
        border-top: none !important;
        padding: 10px 14px !important;
        box-shadow: none !important;
        margin-top: 0 !important;
    }
    .visual-badge strong {
        font-size: 0.85rem;
    }
    .visual-badge span {
        font-size: 0.75rem;
    }

    /* Floating call button: sleek and does not collide with demo badge */
    .floating-call-btn {
        display: block !important;
        bottom: 12px !important;
        left: 12px !important;
        right: auto !important;
        max-width: calc(100% - 130px) !important;
        z-index: 998 !important;
    }
    .fcb-link {
        padding: 9px 14px !important;
        font-size: 0.82rem !important;
        font-weight: 750 !important;
        white-space: nowrap !important;
        border-radius: var(--radius-full) !important;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3) !important;
    }
    .demo-min-badge {
        bottom: 12px !important;
        right: 12px !important;
        padding: 7px 12px !important;
        font-size: 0.72rem !important;
    }
}

@media (max-width: 480px) {
    .btn-call {
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }
    .btn-call .btn-text {
        display: none !important;
    }
    .btn-icon {
        font-size: 1.15rem !important;
        margin: 0 !important;
    }
    .floating-call-btn {
        max-width: calc(100% - 110px) !important;
    }
    .fcb-link {
        padding: 8px 12px !important;
        font-size: 0.78rem !important;
    }
}
