/* ═══════════════════════════════════════════════════════════
   Pizzeria — Thème Moderne
   Tons sombres, image hero plein écran avec overlay,
   typographie clean, accents chauds subtils
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

html { scroll-behavior: smooth; }

:root {
    --primary: #e85d26;
    --primary-dark: #c94d1e;
    --primary-light: #f27a4a;
    --accent: #f0a54b;
    --accent-light: #f5be6e;
    --dark: #141414;
    --dark-soft: #1e1e1e;
    --dark-card: #242424;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --text-muted: #9a9a9a;
    --bg: #f8f7f4;
    --bg-alt: #efede8;
    --white: #fff;
    --green: #4caf50;
    --red: #e53935;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Inter', -apple-system, sans-serif;
}

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

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

html { height: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex; flex-direction: column; min-height: 100%;
}
main { flex: 1 0 auto; }
.footer { flex-shrink: 0; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Navigation ─────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.5rem 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    position: relative;
    z-index: 1100;
    letter-spacing: 0.02em;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 0.15rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/static/images/hero-napoli.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.62);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.6) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0,0,0,0.4);
    color: #fff;
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.text-accent { color: var(--primary-light); }

.hero-box {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-status { display: flex; align-items: center; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.status-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    backdrop-filter: blur(8px);
}
.status-open { background: rgba(34,197,94,0.65); color: #fff; border: 1px solid rgba(34,197,94,0.7); }
.status-open i { font-size: 0.5rem; animation: pulse-dot 2s infinite; }
.status-closed { background: rgba(239,68,68,0.65); color: #fff; border: 1px solid rgba(239,68,68,0.7); }
.status-closed i { font-size: 0.5rem; }
.status-emergency { font-size: 0.85rem; font-weight: 600; color: #fbbf24; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.stars { color: var(--accent); font-size: 1.1rem; }
.stars-lg { font-size: 1.5rem; }

.rating-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 400;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    color: rgba(255,255,255,0.4);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ── Buttons ────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 38, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
}

.btn-dark {
    background: rgba(50,50,50,0.85);
    color: var(--white);
    border-color: transparent;
}

.btn-dark:hover {
    background: rgba(40,40,40,0.92);
    border-color: transparent;
}

.btn-ubereats {
    background: #06C167;
    color: #fff;
    border-color: #06C167;
}

.btn-ubereats:hover {
    background: #05a857;
    border-color: #05a857;
}


.btn-ubereats {
    background: #06C167;
    color: #fff;
    border: 2px solid #06C167;
}

.btn-ubereats:hover {
    background: #05a857;
    border-color: #05a857;
}

.section .btn-outline,
.cta-section .btn-outline {
    color: var(--text);
    border-color: var(--text-muted);
}

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

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* ── Sections ───────────────────────────────────────────── */

.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark .text-accent { color: var(--accent); }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-dark .section-label { color: var(--accent); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.section-dark .section-desc { color: rgba(255,255,255,0.6); }

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ── Page Hero ──────────────────────────────────────────── */

.page-hero {
    position: relative;
    padding: 10rem 0 4rem;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/static/images/hero-napoli.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.page-hero .container { position: relative; }

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    font-weight: 300;
}

.page-hero .section-label { color: var(--accent); }

/* ── About ──────────────────────────────────────────────── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232, 93, 38, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover .about-photo {
    transform: scale(1.05);
}

/* ── Menu Cards (Home popular) ──────────────────────────── */

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.menu-card-image {
    position: relative;
    height: 200px;
    background: var(--dark-soft);
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.08);
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-popular {
    background: var(--primary);
    color: var(--white);
}

.menu-card-body {
    padding: 1.2rem;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
}

.menu-card-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-card-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.menu-card-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
}

.tag-green { color: var(--green); background: rgba(76,175,80,0.12); }
.tag-red { color: var(--primary-light); background: rgba(232,93,38,0.12); }

/* ── Menu Page ──────────────────────────────────────────── */

.menu-filter-section {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.menu-filter {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.filter-select {
    width: 100%;
    max-width: 360px;
    padding: 0.65rem 2.5rem 0.65rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--bg-alt);
    background: var(--white);
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary);
    outline: none;
}

.menu-section { margin-bottom: 3rem; }

.menu-section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-alt);
}

.menu-section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-section-title i { color: var(--primary); }

.menu-section-desc {
    color: var(--text-light);
    margin-top: 0.3rem;
    font-weight: 300;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
}

.menu-item-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.menu-item-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.menu-item-image {
    width: 120px;
    min-height: 100%;
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.2;
}

.menu-item-body {
    padding: 1rem 1.2rem;
    flex: 1;
}

.menu-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-weight: 400;
}

.badge-inline {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.badge-popular { background: rgba(232,93,38,0.12); color: var(--primary); }
.badge-veggie { background: rgba(76,175,80,0.12); color: var(--green); }
.badge-spicy { background: rgba(229,57,53,0.12); color: var(--red); }

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

.menu-item-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
}

.menu-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.fade-in {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Services ───────────────────────────────────────────── */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(232, 93, 38, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.service-card p { color: var(--text-light); font-size: 0.95rem; font-weight: 300; }

.service-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(232, 93, 38, 0.06);
    color: var(--primary);
    border: 1px solid rgba(232, 93, 38, 0.12);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-badge i {
    font-size: 1rem;
}

a.service-badge-link {
    text-decoration: none;
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

a.service-badge-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-cta-secondary {
    background: transparent !important;
    border: 1.5px solid rgba(255,255,255,0.3) !important;
    color: var(--white) !important;
}

.nav-cta-secondary:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

/* ── Reviews ────────────────────────────────────────────── */

.rating-summary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.04);
}

.review-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-avatar-lg {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
}

.review-stars {
    color: var(--accent);
    font-size: 0.8rem;
}

.review-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}
.review-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.review-read-more {
    background: none;
    border: none;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.5rem;
    display: block;
}
.review-read-more:hover {
    text-decoration: underline;
}

.review-date {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* Reviews page */
.rating-summary-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.rating-big {
    display: flex;
    align-items: baseline;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary);
}

.rating-max {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-left: 0.2rem;
}

.rating-details .stars { margin-bottom: 0.3rem; }
.rating-details p { color: var(--text-light); font-size: 0.95rem; }

.rating-summary-card .btn-outline {
    margin-left: auto;
    color: var(--text);
    border-color: var(--text-muted);
}

.rating-summary-card .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card-full {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card-full:hover {
    box-shadow: var(--shadow);
}

.review-card-full .review-stars { margin-bottom: 0.2rem; }
.review-card-full .review-date { color: var(--text-muted); }

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-text-full {
    color: var(--text);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1rem;
    font-weight: 300;
}

/* ── Reviews Carousel ──────────────────────────────────── */

.rv-carousel-wrap {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}
.rv-swipe-hint {
    display: none;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.rv-swipe-hint.hidden { opacity: 0; pointer-events: none; }
@media (max-width: 767px) {
    .rv-swipe-hint { display: block; }
}
.rv-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.rv-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 4%;
    will-change: transform;
}
.rv-card {
    flex-shrink: 0;
    width: 85vw;
    background: var(--dark-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
    min-height: 240px;
}
.rv-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.1); }
@media (min-width: 768px) {
    .rv-card { width: 340px; }
}
@media (min-width: 1024px) {
    .rv-card { width: 380px; }
}
.rv-text {
    flex: 1;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-light);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 1rem 0;
}
.rv-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}
.rv-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}
.rv-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.rv-arrow:hover { background: var(--primary); border-color: var(--primary); }
@media (min-width: 768px) {
    .rv-arrow { display: flex; }
}
.rv-arrow-prev { left: 1.5rem; }
.rv-arrow-next { right: 1.5rem; }

/* Review modal */
.rv-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}
.rv-modal.active { display: flex; }
.rv-modal-content {
    max-width: 520px;
    width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2.5rem;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.rv-modal-content p {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}
.rv-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}
.rv-modal-close:hover { color: var(--white); }

/* ── Hours & Location ───────────────────────────────────── */

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.hours-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.hours-day {
    font-weight: 600;
    min-width: 100px;
}

.hours-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(0,0,0,0.12);
    min-width: 20px;
}

.hours-slots {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
}

.hours-note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(232, 93, 38, 0.06);
    border-radius: 10px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 1.05rem;
}

.map-address i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.map-embed { margin-bottom: 1rem; }

/* ── Contact Page ───────────────────────────────────────── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(232, 93, 38, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
}

.contact-card a { color: var(--primary); }

.contact-socials {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: var(--bg-alt);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.services-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-card {
    background: var(--white); padding: 2rem;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem;
}
.contact-form-card h3 i { color: var(--accent); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { margin-bottom: 1rem; }
.cf-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.cf-required { color: #ef4444; }
.cf-group input, .cf-group textarea, .cf-group select {
    width: 100%; padding: 0.7rem 1rem; border-radius: 8px;
    border: 1px solid #e5e7eb; background: #fafafa;
    color: var(--text); font-family: inherit; font-size: 0.9rem;
    transition: border-color 0.3s;
}
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus { outline: none; border-color: var(--accent); }
.cf-group input::placeholder, .cf-group textarea::placeholder { color: #9ca3af; }
.cf-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.cf-submit { width: 100%; justify-content: center; cursor: pointer; border: none; font-family: inherit; font-size: 0.95rem; }
.cf-status { text-align: center; margin-top: 0.8rem; font-size: 0.85rem; }
.cf-status.success { color: #22c55e; }
.cf-status.error { color: #ef4444; }

.hours-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.hours-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.hours-card h3 i { color: var(--primary); }

.map-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ── CTA Section ────────────────────────────────────────── */

.cta-section {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/static/images/hero-napoli.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

.cta-section .container {
    position: relative;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(232, 93, 38, 0.3);
}

.cta-section .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
    background: transparent;
}

.cta-section .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

.cta-contact-form {
    max-width: 600px; margin: 2.5rem auto 0; text-align: left;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2rem;
}
.cta-contact-form h3 {
    font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.5rem; justify-content: center;
}
.cta-contact-form h3 i { color: var(--accent); }
.cta-contact-form .cf-group label { color: rgba(255,255,255,0.8); }
.cta-contact-form .cf-group input,
.cta-contact-form .cf-group textarea,
.cta-contact-form .cf-group select {
    background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: #fff;
}
.cta-contact-form .cf-group input::placeholder,
.cta-contact-form .cf-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.cta-contact-form .cf-group input:focus,
.cta-contact-form .cf-group textarea:focus,
.cta-contact-form .cf-group select:focus { border-color: var(--accent); }
.cta-contact-form .cf-status.success { color: #34d399; }

/* ── Footer ─────────────────────────────────────────────── */

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i { color: var(--primary); }

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 300;
}

.footer-col a:hover { color: var(--white); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}

.footer-contact i { color: var(--primary); margin-top: 0.2rem; font-size: 0.85rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

.footer-pricing { color: var(--primary); font-weight: 600; }

/* ── Flash Messages ─────────────────────────────────────── */

.flash-container {
    position: fixed;
    top: 80px;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
}

.flash {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    animation: slideIn 0.3s ease;
}

.flash-success { background: var(--green); color: var(--white); }
.flash-danger { background: var(--red); color: var(--white); }
.flash-warning { background: var(--accent); color: var(--dark); }

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.7;
}

.flash-close:hover { opacity: 1; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ── Promo Banner ───────────────────────────────────────── */

.promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, #1a2332 0%, #243044 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    transform: translateY(100%);
    animation: promoSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

.promo-banner.hidden {
    transform: translateY(100%);
    animation: none;
    transition: transform 0.4s ease;
}

/* Mini tab when banner is dismissed */
.promo-banner-tab {
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 9997;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.promo-banner-tab.visible {
    transform: translateY(0);
}

.promo-banner-tab:hover {
    filter: brightness(1.1);
}

@keyframes promoSlideUp {
    to { transform: translateY(0); }
}

.promo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.promo-banner-close {
    position: absolute;
    top: -8px;
    right: 8px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.6);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    line-height: 1;
}

.promo-banner-close:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.promo-banner-text {
    flex: 1;
    min-width: 0;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.promo-no-fee {
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.promo-title {
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
}

.promo-title strong {
    color: #f59e0b;
    font-size: 1.15rem;
}

.promo-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    margin: 0.15rem 0 0;
}

.promo-urgency {
    color: #f87171 !important;
    font-size: 0.75rem;
    margin: 0.3rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.promo-urgency strong {
    color: #f59e0b !important;
}

.promo-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.promo-btn i {
    font-size: 1rem;
}

.promo-btn-info {
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
    color: #fff !important;
}

.promo-btn-phone {
    background: #3b82f6;
    color: #fff;
}

.promo-btn-sms {
    background: #8b5cf6;
    color: #fff;
}

.promo-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.footer { padding-bottom: 100px; }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { order: -1; }
    .image-frame { max-width: 300px; }
    .location-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1050;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    }

    .nav-menu.open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        width: auto;
        font-size: 1.4rem;
        text-align: center;
        transform: translateX(30px);
        opacity: 0;
        transition: color 0.3s ease, background 0.3s ease, transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-menu.open .nav-link {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-menu.open li:nth-child(1) .nav-link { transition-delay: 0.1s; }
    .nav-menu.open li:nth-child(2) .nav-link { transition-delay: 0.15s; }
    .nav-menu.open li:nth-child(3) .nav-link { transition-delay: 0.2s; }
    .nav-menu.open li:nth-child(4) .nav-link { transition-delay: 0.25s; }

    .nav-cta {
        margin-top: 1rem;
        justify-content: center;
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        transform: translateX(30px);
        opacity: 0;
        transition: background 0.3s ease, transform 0.4s ease 0.3s, opacity 0.4s ease 0.3s;
    }

    .nav-menu.open .nav-cta {
        transform: translateX(0);
        opacity: 1;
    }

    .hero { align-items: flex-end; padding-bottom: 2rem; }
    .hero-title { font-size: 3rem; }

    .popular-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .menu-items-grid { grid-template-columns: 1fr; }

    .menu-item-card { flex-direction: row; }
    .menu-item-image { width: 80px; min-height: 80px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .rating-summary-card {
        flex-direction: column;
        text-align: center;
    }

    .rating-summary-card .btn-outline { margin-left: 0; }

    .section { padding: 3rem 0; }
}

@media (max-width: 768px) {
    .promo-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1rem 0.8rem;
        gap: 0.8rem;
    }

    .promo-banner-close {
        top: 4px;
        right: 4px;
    }

    .promo-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .promo-btn {
        flex: 1;
        justify-content: center;
        padding: 0.55rem 0.8rem;
        font-size: 0.8rem;
    }

    .promo-btn span {
        display: none;
    }

    .promo-btn i {
        font-size: 1.2rem;
    }

    .promo-title { font-size: 0.9rem; }
    .promo-title strong { font-size: 1.05rem; }
    .promo-subtitle { font-size: 0.72rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .menu-legend { flex-direction: column; align-items: center; }
}

/* ── Holiday / Vacation Banner ─────────────────────────────── */
.holiday-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    padding: 0.85rem 1.5rem;
    text-align: center;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.3);
}
.holiday-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    line-height: 1.4;
}
.holiday-banner-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: holiday-pulse 2s ease-in-out infinite;
}
@keyframes holiday-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@media (max-width: 600px) {
    .holiday-banner { padding: 0.7rem 1rem; }
    .holiday-banner-content { font-size: 0.85rem; }
}
