/* ═══════════════════════════════════════════════════════════
   CleanSite — Classique Theme
   Dark, warm & sophisticated — wood-burning oven ambiance
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Work+Sans:wght@300;400;500;600;700&display=swap');

html { scroll-behavior: smooth; }

:root {
    --primary: #c0392b;
    --primary-dark: #a93226;
    --primary-light: #e74c3c;
    --accent: #d4a056;
    --accent-light: #e0b474;
    --dark: #1a1a1a;
    --dark-soft: #252525;
    --dark-card: #2a2a2a;
    --text: #222;
    --text-light: #707070;
    --text-muted: #a0a0a0;
    --bg: #f9f8f5;
    --bg-alt: #f0eee8;
    --white: #fff;
    --green: #27ae60;
    --red: #e74c3c;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Work Sans', -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(26, 26, 26, 0.94);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 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.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1100;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.3rem;
}

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

.nav-link {
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.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.9rem;
    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('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
}

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

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

.hero-logo {
    display: block;
    margin: 0 auto 2rem;
    width: clamp(180px, 30vw, 300px);
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
    border-radius: 50%;
}

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

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

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

.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.25rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.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.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.status-open i { font-size: 0.5rem; animation: pulse-dot 2s infinite; }
.status-closed { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.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: 2rem;
}

.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.9rem;
}

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

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    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.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.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 4px 15px rgba(192,57,43,0.3);
}

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

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

.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;
}

.phone-dropdown {
    position: relative;
    display: inline-block;
}
.phone-dropdown button {
    cursor: pointer;
    box-sizing: border-box;
    line-height: inherit;
    font-family: inherit;
}
.phone-arrow {
    font-size: 0.65rem;
    margin-left: 0.3rem;
    transition: transform 0.2s;
}
.phone-dropdown.open .phone-arrow {
    transform: rotate(180deg);
}
.phone-dropdown-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    min-width: 320px;
    white-space: nowrap;
    z-index: 50;
}
.phone-dropdown.open .phone-dropdown-menu {
    display: block;
}
.phone-dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0.85rem 1.2rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.phone-dropdown-menu a:last-child { border-bottom: none; }
.phone-dropdown-menu a:hover {
    background: rgba(0,0,0,0.04);
}
.phone-dropdown-city {
    font-weight: 600;
    font-size: 0.85rem;
}
.phone-dropdown-number {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Nav phone dropdown overrides */
.nav-cta .phone-arrow { font-size: 0.55rem; }
li .phone-dropdown-menu {
    bottom: auto;
    top: calc(100% + 0.3rem);
}

.ubereats-dropdown {
    position: relative;
    display: inline-block;
}
.service-badge-ubereats {
    background: #06C167 !important;
    color: #fff !important;
    border-color: #06C167 !important;
    cursor: pointer;
}
.service-badge-ubereats:hover {
    background: #05a857 !important;
    border-color: #05a857 !important;
}
.ubereats-arrow {
    font-size: 0.65rem;
    margin-left: 0.3rem;
    transition: transform 0.2s;
}
.ubereats-dropdown.open .ubereats-arrow {
    transform: rotate(180deg);
}
.ubereats-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    min-width: 280px;
    white-space: nowrap;
    z-index: 50;
}
.ubereats-dropdown.open .ubereats-dropdown-menu {
    display: block;
}
.ubereats-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.2rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s;
}
.ubereats-dropdown-menu a:hover {
    background: rgba(6, 193, 103, 0.08);
    color: #06C167;
}
.ubereats-dropdown-menu a i {
    color: #06C167;
    margin-right: 0.5rem;
}

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

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

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.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.85rem;
    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: 600;
    margin-bottom: 0.5rem;
}

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

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

.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('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

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

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

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

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

.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;
}

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

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

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(192,57,43,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    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: 400px;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s 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: var(--shadow-lg);
}

.menu-card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(212,160,86,0.2));
    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.15);
}

.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(--accent);
    color: var(--dark);
}

.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.2rem;
}

.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.6);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.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.08);
    color: rgba(255,255,255,0.7);
}

.tag-green { color: var(--green); background: rgba(39,174,96,0.1); }
.tag-red { color: var(--red); background: rgba(231,76,60,0.1); }

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

.menu-filter-section {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    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='%23666' 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-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 2px solid var(--bg-alt);
    background: var(--white);
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.menu-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.menu-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.menu-tab i { margin-right: 0.3rem; }

.menu-item-category-tag {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
}

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

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

.menu-section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    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;
}

.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);
}

.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(--accent);
    opacity: 0.3;
}

.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;
}

.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(212,160,86,0.15); color: var(--accent); }
.badge-veggie { background: rgba(39,174,96,0.15); color: var(--green); }
.badge-spicy { background: rgba(231,76,60,0.15); 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;
}

.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);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(192,57,43,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
}

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

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

.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(192,57,43,0.06);
    color: var(--primary);
    border: 1px solid rgba(192,57,43,0.15);
    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 var(--primary) !important;
    color: var(--primary) !important;
}

.nav-cta-secondary:hover {
    background: var(--primary) !important;
    color: var(--white) !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.7);
}

.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);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-2px);
}

.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.8);
    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;
}
.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.4);
    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: 600;
    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;
}

/* ── 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: 2px dotted rgba(0,0,0,0.1);
    min-width: 20px;
}

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

.hours-note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(192,57,43,0.06);
    border-radius: 8px;
    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);
}

.contact-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(192,57,43,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;
}

.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 ─────────────────────────────────────── */
.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;
}

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

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

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

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

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

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

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

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

.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(192, 57, 43, 0.3);
}

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

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

.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.8);
    padding: 4rem 0 2rem;
}

.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: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

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

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    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: 1rem;
    margin-bottom: 1rem;
}

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

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

.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.6);
}

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

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

.footer-pricing { color: var(--accent); 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: 8px;
    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%);
    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.15);
    border: none;
    color: rgba(255,255,255,0.7);
    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.25);
    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.55);
    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; }

/* ── Traiteur ──────────────────────────────────────────── */

.traiteur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.traiteur-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid var(--bg-alt);
    position: relative;
    transition: var(--transition);
}
.traiteur-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.traiteur-card-highlight {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.traiteur-card-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.traiteur-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.traiteur-card-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.traiteur-card-price span { font-size: 1.5rem; }
.traiteur-card-price small {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.traiteur-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.traiteur-card-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-alt);
    font-size: 0.95rem;
}
.traiteur-card-list li:last-child { border-bottom: none; }
.traiteur-card-list i {
    color: var(--primary);
    margin-right: 0.5rem;
    width: 1rem;
}

.traiteur-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.traiteur-detail-card {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 1.5rem;
}
.traiteur-detail-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.traiteur-detail-card h4 i {
    color: var(--primary);
    margin-right: 0.4rem;
}
.traiteur-detail-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}
.traiteur-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.traiteur-detail-card ul li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}
.traiteur-detail-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

/* ── 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; }
    .traiteur-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
    .traiteur-details { grid-template-columns: 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(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        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-cta-desktop {
        display: none !important;
    }

    .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; }
    .cf-row { grid-template-columns: 1fr; }
}

/* ── 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; }
}
