/* --- VARIABLES --- */
:root {
    --bg-charcoal: #1a1a1a;
    --text-cream: #f5f0e6;
    --accent-gold: #c9a961;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', Helvetica, sans-serif;
}

/* --- GLOBAL RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body {
    background-color: var(--bg-charcoal);
    color: var(--text-cream);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
    }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: var(--text-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

/* --- NAVBAR --- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.5s ease, padding 0.5s ease;
}

#navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 50px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 240, 230, 0.05);
}

#nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

#nav-menu a {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 30px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: var(--accent-gold);
    color: var(--bg-charcoal) !important;
}

/* --- FORMS (Minimalist) --- */
.reservation-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 40px;
    }
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(245, 240, 230, 0.6);
    margin-bottom: 10px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 240, 230, 0.2);
    color: var(--text-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 10px 0;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-bottom-color: var(--accent-gold);
}

.form-group select option {
    background: var(--bg-charcoal);
    color: var(--text-cream);
}

.alert-success {
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
}

/* --- MENU ITEMS --- */
.menu-category-block {
    margin-bottom: 80px;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-cream);
    margin: 0;
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(245, 240, 230, 0.2);
    margin: 0 20px;
    position: relative;
    top: -6px;
}

.menu-item-price {
    font-family: var(--font-body);
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.menu-item-desc {
    color: rgba(245, 240, 230, 0.6);
    font-size: 0.9rem;
    max-width: 80%;
}

/* --- QITCHEN GRID LAYOUT --- */
.stirbey-layout {
    display: grid;
    grid-template-columns: 8fr 2.5fr;
    height: 100vh;
    padding: 15px;
    gap: 15px;
    background-color: #0d0d0d;
    overflow: hidden;
}

@media (max-width: 900px) {
    .stirbey-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    .stirbey-main { min-height: 60vh; }
    .stirbey-sidebar { min-height: 90vh; }
}

.stirbey-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stirbey-main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/ui/main.png");
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.8s ease;
}

.stirbey-main:hover .stirbey-main-bg {
    transform: scale(1.02);
}

/* Video variant - same positioning, object-fit so the video covers like background */
.stirbey-main-video {
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    background: #000;
}

.stirbey-navbar {
    display: inline-flex;
    align-items: center;
    padding: 8px 8px 8px 20px;
    background-color: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    gap: 30px;
    margin: 10vh 0 0 40px;
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

.stirbey-nav-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.burger-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 18px;
    gap: 4px;
}

.burger-icon > span {
    display: block;
    width: 20px;
    height: 2.5px;
    background: var(--text-cream);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.3s ease, background-color 0.3s ease, width 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .stirbey-nav-icon-box:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--accent-gold);
    }

    .stirbey-nav-icon-box:hover .burger-icon > span {
        background: var(--accent-gold);
    }

    .stirbey-nav-icon-box:hover .burger-icon > span:nth-child(1) {
        transform: translateY(7px);
        opacity: 0;
    }

    .stirbey-nav-icon-box:hover .burger-icon > span:nth-child(3) {
        transform: translateY(-7px);
        opacity: 0;
    }

    .stirbey-nav-icon-box:hover .burger-icon > span:nth-child(2) {
        width: 24px;
    }
}

.stirbey-nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.stirbey-nav-links a {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.stirbey-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.stirbey-nav-links a:hover::after,
.stirbey-nav-links a.is-active::after,
.stirbey-nav-links a.active::after {
    width: 100%;
}

.stirbey-nav-links a:hover,
.stirbey-nav-links a.is-active,
.stirbey-nav-links a.active {
    color: var(--accent-gold);
}

.stirbey-book-btn {
    margin-left: auto;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    background: transparent;
}

.stirbey-book-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-charcoal) !important;
    border-color: var(--accent-gold);
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.stirbey-hero-title h1,
.stirbey-hero-title h2 {
    font-size: 5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    line-height: 1;
    color: #f0e6d3;
    -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
            animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.stirbey-hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 40px;
    position: relative;
    z-index: 1;
}

.stirbey-hero-title {
    flex: 1;
}

/* Show desktop title by default, hide mobile copy */
.stirbey-hero-title-mobile { display: none; }

.stirbey-social-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Thin vertical divider between the social icons and the phone icon —
   gold, fading to transparent at the top and bottom edges. */
.social-divider {
    width: 1px;
    align-self: stretch;
    min-height: 28px;
    margin: 0 6px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--accent-gold) 50%,
        transparent 100%
    );
    opacity: 0.6;
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-cream);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--bg-charcoal) !important;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Bell variant – styled like a real button, no anchor underline, with a subtle glow */
button.social-icon {
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    font: inherit;
}
.social-icon-bell {
    color: var(--accent-gold);
    border-color: rgba(201, 169, 97, 0.45);
    position: relative;
}
.social-icon-bell::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9a961;
    box-shadow: 0 0 8px rgba(201, 169, 97, 0.7);
    animation: bell-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes bell-dot-pulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.5; }
}

.stirbey-sidebar {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

.stirbey-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    min-height: 200px;
}

.stirbey-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.6s ease;
    filter: brightness(0.6);
}

.stirbey-card:hover .stirbey-card-bg {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.stirbey-card-video {
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    background: #000;
}

.stirbey-card-cutout {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #0d0d0d;
    padding: 15px 15px 0 20px;
    border-top-left-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
    transition: background 0.35s ease;
}

.stirbey-card-cutout::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0 0, transparent 20px, #0d0d0d 20.5px);
    pointer-events: none;
    transition: background 0.35s ease;
}

.stirbey-card-cutout::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0 0, transparent 20px, #0d0d0d 20.5px);
    pointer-events: none;
    transition: background 0.35s ease;
}

.stirbey-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-cream);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: inline-block;
}

.stirbey-card:hover .stirbey-card-title {
    color: var(--accent-gold);
    transform: translateY(-5px);
}

.stirbey-card-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.stirbey-card:hover .stirbey-card-arrow {
    background: var(--text-cream);
    color: var(--bg-charcoal);
}

/* ======= REZERVARE VIEW ======= */
.rezervare-layout {
    grid-template-columns: 1fr 1fr !important;
}

.stirbey-book-btn.active {
    background: var(--accent-gold);
    color: var(--bg-charcoal) !important;
    border-color: var(--accent-gold);
}

.stirbey-logo {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.stirbey-logo:hover {
    opacity: 1 !important;
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.4));
}

.rezervare-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.rezervare-panel {
    border-radius: 20px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    overflow-y: auto;
}

/* ========================= MOBILE SCROLL HINT ========================= */
.stirbey-scroll-hint {
    display: none;
}

@media (max-width: 768px) {
    .stirbey-scroll-hint {
        position: absolute;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        z-index: 3;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }
    .stirbey-scroll-hint.is-hidden {
        opacity: 0;
    }

    .stirbey-chev {
        color: var(--accent-gold);
        margin-top: -10px;
        opacity: 0;
        animation: stirbey-chev-pulse 1.8s cubic-bezier(0.55, 0, 0.45, 1) infinite;
    }

    .stirbey-chev-1 { animation-delay: 0s; }
    .stirbey-chev-2 { animation-delay: 0.25s; }
    .stirbey-chev-3 { animation-delay: 0.5s; }
}

@keyframes stirbey-chev-pulse {
    0%   { opacity: 0;    transform: translateY(-6px); }
    40%  { opacity: 1;    transform: translateY(0); }
    80%  { opacity: 0.3;  transform: translateY(4px); }
    100% { opacity: 0;    transform: translateY(6px); }
}

/* ========================= RESTAURANT VIEW ========================= */
.restaurant-layout {
    grid-template-columns: 1fr 1fr !important;
}

.restaurant-panel {
    border-radius: 20px;
    background: #0d0d0d;
    padding: 32px 28px;
    overflow-y: auto;
}

.restaurant-panel-inner {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* --- Top row: story + galerie --- */
.restaurant-top-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.restaurant-story {
    background: linear-gradient(160deg, rgba(201, 169, 97, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(186, 144, 92, 0.22);
    border-radius: 14px;
    padding: 22px 22px;
    color: rgba(245, 240, 230, 0.78);
    font-size: 0.82rem;
    line-height: 1.55;
}

.restaurant-story p {
    margin-bottom: 12px;
}

.restaurant-story p:last-child {
    margin-bottom: 0;
}

.restaurant-story-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-cream);
    line-height: 1.3;
    margin-bottom: 12px;
}

.restaurant-story-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 14px 0 6px;
}

/* --- Galerie tile --- */
.restaurant-galerie {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-cream);
    min-height: 220px;
    border: 1px solid rgba(186, 144, 92, 0.22);
    display: block;
}

.restaurant-galerie-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: filter 0.4s ease, transform 0.6s ease;
}

.restaurant-galerie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 22px;
    transition: background 0.3s ease;
}

.restaurant-galerie-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-cream);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.restaurant-galerie:hover .restaurant-galerie-content {
    transform: translateY(-2px);
}

.restaurant-galerie-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.restaurant-galerie:hover .restaurant-galerie-bg {
    filter: blur(6px) brightness(0.65);
    transform: scale(1.05);
}

.restaurant-galerie:hover .restaurant-galerie-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.restaurant-galerie:hover .restaurant-galerie-content {
    opacity: 1;
    transform: translateY(0);
}

/* --- Event card (middle) --- */
.restaurant-events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Horizontal carousel for events */
.restaurant-events-carousel {
    position: relative;
}
.restaurant-events-scroller {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Room for the -2px lift on hover so the top border isn't clipped */
    padding: 4px 1px 6px;
}
.restaurant-events-scroller::-webkit-scrollbar { display: none; }
.restaurant-events-scroller > .restaurant-event {
    flex: 0 0 calc(50% - 6px);
    min-width: 0;
    scroll-snap-align: start;
}
@media (max-width: 900px) {
    .restaurant-events-scroller > .restaurant-event { flex: 0 0 100%; }
}
/* Single event — fill the row, no carousel scrolling needed */
.restaurant-events-carousel:not(.is-multi) .restaurant-events-scroller > .restaurant-event {
    flex: 1 1 auto;
}

.restaurant-events-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.45);
    background: rgba(20, 16, 10, 0.85);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.restaurant-events-arrow:hover {
    background: rgba(40, 30, 18, 0.95);
    border-color: rgba(201, 169, 97, 0.8);
}
.restaurant-events-arrow-left  { left: -10px; }
.restaurant-events-arrow-right { right: -10px; }
@media (max-width: 900px) {
    .restaurant-events-arrow { width: 34px; height: 34px; }
    .restaurant-events-arrow-left  { left: -4px; }
    .restaurant-events-arrow-right { right: -4px; }
}

.restaurant-event {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.10) 0%, rgba(160, 124, 84, 0.04) 100%);
    border: 1px solid rgba(186, 144, 92, 0.3);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-cream);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.restaurant-event:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 97, 0.6);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.16) 0%, rgba(160, 124, 84, 0.07) 100%);
}

.restaurant-event-date {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(180deg, #c9a961 0%, #a07c54 100%);
    color: #2a1f10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    line-height: 1;
}

.restaurant-event-day {
    font-size: 1.6rem;
    font-weight: 700;
}

.restaurant-event-month {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 3px;
    font-weight: 600;
}

.restaurant-event-body {
    flex: 1;
}

.restaurant-event-tag {
    display: inline-block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.restaurant-event-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-cream);
    margin-bottom: 4px;
}

.restaurant-event-body p {
    font-size: 0.82rem;
    color: rgba(245, 240, 230, 0.6);
    line-height: 1.45;
}

.restaurant-event-arrow {
    color: rgba(201, 169, 97, 0.6);
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
}

.restaurant-event:hover .restaurant-event-arrow {
    color: var(--accent-gold);
    transform: translate(2px, -2px);
}

/* --- Contact card (bottom) --- */
.restaurant-contact-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 22px;
}

.restaurant-contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(186, 144, 92, 0.2);
}

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

.restaurant-info-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.restaurant-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(201, 169, 97, 0.08);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.restaurant-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(201, 169, 97, 0.8);
    margin-bottom: 4px;
}

.restaurant-info-value {
    font-size: 0.98rem;
    color: var(--text-cream);
    line-height: 1.4;
}

.restaurant-info-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.restaurant-info-link:hover {
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .restaurant-layout {
        grid-template-columns: 1fr !important;
    }
    .restaurant-panel {
        padding: 28px 20px;
    }
    .restaurant-top-row {
        grid-template-columns: 1fr;
    }
    .restaurant-galerie {
        min-height: 180px;
    }
    .restaurant-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================= MENIU VIEW ========================= */
.meniu-layout {
    grid-template-columns: 1fr 1fr !important;
}

.meniu-panel {
    border-radius: 20px;
    background: #0d0d0d;
    padding: 28px 26px;
    overflow-y: auto;
}

.meniu-panel-inner {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

/* --- Group switch (Mâncare / Băuturi) --- */
.meniu-group-switch {
    display: flex;
    background: #161616;
    border: 1px solid rgba(186, 144, 92, 0.25);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 12px;
    gap: 4px;
}

.meniu-group-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 9px 14px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    font-weight: 600;
}

.meniu-group-btn:hover {
    color: var(--text-cream);
}

.meniu-group-btn.active {
    background: linear-gradient(180deg, #c9a961 0%, #a07c54 100%);
    color: #1a1a1a;
}

/* --- Toolbar (search + tabs) --- */
.meniu-toolbar {
    position: sticky;
    top: -28px;
    background: #0d0d0d;
    padding: 10px 0 14px;
    z-index: 5;
    margin-bottom: 14px;
}

.meniu-search {
    position: relative;
    display: flex;
    align-items: center;
    background: #161616;
    border: 1px solid rgba(186, 144, 92, 0.25);
    border-radius: 10px;
    padding: 0 12px;
    transition: border-color 0.2s ease;
}

.meniu-search:focus-within {
    border-color: rgba(186, 144, 92, 0.7);
}

.meniu-search-icon {
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

.meniu-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-cream, #f4ecdc);
    font-size: 0.92rem;
    padding: 11px 8px;
    font-family: inherit;
}

.meniu-search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.meniu-search-clear {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.meniu-search-clear:hover {
    color: var(--text-cream, #f4ecdc);
    background: rgba(255, 255, 255, 0.06);
}

.meniu-tabs-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
    min-width: 0;
    max-width: 100%;
}

.meniu-tabs-arrow {
    flex-shrink: 0;
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid rgba(186, 144, 92, 0.3);
    color: rgba(255, 255, 255, 0.7);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
}

.meniu-tabs-arrow.visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.meniu-tabs-arrow-left.visible { transform: scale(1) translateX(0); }
.meniu-tabs-arrow-right.visible { transform: scale(1) translateX(0); }

.meniu-tabs-arrow:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.12);
}

.meniu-tabs {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px 2px 6px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
}

/* fade only on the side that's actually scrollable */
.meniu-tabs.fade-left {
    mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 100%);
}
.meniu-tabs.fade-right {
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 14px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 14px), transparent 100%);
}
.meniu-tabs.fade-left.fade-right {
    mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}

.meniu-tabs::-webkit-scrollbar { display: none; }

.meniu-tab {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(186, 144, 92, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: inherit;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
}

.meniu-tab:hover {
    border-color: rgba(201, 169, 97, 0.8);
    color: var(--text-cream);
    background: rgba(201, 169, 97, 0.06);
}

.meniu-tab-label {
    position: relative;
    z-index: 1;
}

.meniu-tab-pill {
    position: absolute;
    inset: -1px;
    background: linear-gradient(180deg, #c9a961 0%, #a07c54 100%);
    border-radius: 999px;
    z-index: 0;
}

.meniu-tab.active {
    color: #1a1a1a;
    border-color: transparent;
}

/* --- Sections & items --- */
.meniu-section {
    margin-bottom: 14px;
}

.meniu-section:last-child {
    margin-bottom: 0;
}

.meniu-section-header {
    color: rgba(186, 144, 92, 0.9);
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 10px 4px 6px;
    font-size: 0.72rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(186, 144, 92, 0.25);
    margin-bottom: 4px;
}

.meniu-items {
    padding: 0;
}

.meniu-item {
    padding: 9px 10px;
    border-radius: 6px;
    cursor: default;
    transition: background 0.2s ease;
}

.meniu-item:hover {
    background: rgba(186, 144, 92, 0.07);
}

.meniu-item-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--text-cream, #f4ecdc);
}

.meniu-item-name {
    font-size: 0.98rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meniu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    min-width: 20px;
}

.meniu-item-price {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(186, 144, 92, 0.95);
    white-space: nowrap;
}

.meniu-item-detail {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    line-height: 1.45;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.meniu-item:hover .meniu-item-detail {
    max-height: 200px;
    opacity: 1;
    margin-top: 6px;
}

.meniu-item-line {
    display: block;
}

.meniu-item-ingredients {
    color: rgba(245, 240, 230, 0.55);
}

.meniu-item-weight {
    display: block;
    margin-top: 4px;
    color: rgba(245, 240, 230, 0.45);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.meniu-item-allergens {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
    color: rgba(186, 144, 92, 0.85);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.meniu-item-allergen-num {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.18);
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 2px;
    cursor: default;
    transition: background 0.2s ease, transform 0.2s ease;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Snowflake indicator: "Provine din produse congelate" */
.meniu-item-frozen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    color: #6ba9da;
    font-size: 0.85rem;
    line-height: 1;
    user-select: none;
    cursor: help;
    text-shadow: 0 0 6px rgba(107, 169, 218, 0.3);
}

.meniu-item-allergen-num:hover {
    background: var(--accent-gold);
    color: #1a1a1a;
    transform: scale(1.18);
}

/* Floating allergen tooltip - rendered at document root via React,
   uses position: fixed so it escapes every overflow context */
.allergen-tooltip {
    position: fixed;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #f5ecd6 0%, #ead9a8 100%);
    border: 1px solid rgba(140, 100, 50, 0.55);
    color: #2a1f10;
    padding: 9px 13px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 280px;
    width: max-content;
    text-align: left;
    z-index: 2000;
    pointer-events: none;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 235, 200, 0.45) inset;
    letter-spacing: 0.01em;
    animation: allergen-tooltip-in 0.18s ease-out both;
}

.allergen-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(140, 100, 50, 0.55);
}

.allergen-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(1.5px);
    border: 6px solid transparent;
    border-bottom-color: #f5ecd6;
}

@keyframes allergen-tooltip-in {
    from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.meniu-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .meniu-layout {
        grid-template-columns: 1fr !important;
    }
    .meniu-panel {
        padding: 30px 20px;
    }
}
@media (max-width: 600px) {
    .meniu-panel {
        padding: 6px 14px 18px;
    }
}

@media (max-width: 768px) {
    .meniu-item-detail {
        max-height: 200px;
        opacity: 1;
        margin-top: 8px;
    }
    .meniu-item-name {
        font-size: 1.1rem;
        white-space: normal;
    }
}

.rezervare-panel-inner {
    width: 100%;
    max-width: 560px;
    border: 1px solid rgba(201, 169, 97, 0.42);
    border-radius: 16px;
    padding: 34px 32px 28px;
    position: relative;
    background:
        /* warm light bloom from top */
        radial-gradient(ellipse 70% 60% at 50% -10%, rgba(255, 220, 160, 0.14) 0%, transparent 60%),
        /* soft gold from top-left */
        radial-gradient(circle at 0% 0%, rgba(201, 169, 97, 0.10) 0%, transparent 40%),
        /* faint cream from bottom-right */
        radial-gradient(circle at 100% 100%, rgba(245, 220, 170, 0.06) 0%, transparent 45%),
        /* base subtle vertical wash */
        linear-gradient(180deg, rgba(255, 245, 220, 0.025) 0%, rgba(0, 0, 0, 0.12) 100%),
        #161310;
    box-shadow:
        0 0 0 1px rgba(201, 169, 97, 0.08) inset,
        0 1px 0 rgba(255, 230, 180, 0.12) inset,
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(201, 169, 97, 0.08);
}

@media (max-width: 768px) {
    .rezervare-panel-inner {
        padding: 22px 18px 20px;
        border-radius: 14px;
    }
}

.rezervare-header {
    text-align: center;
    margin-bottom: 40px;
}

.rezervare-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.ornament-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 97, 0.5));
}

.ornament-line:last-child {
    background: linear-gradient(to left, transparent, rgba(201, 169, 97, 0.5));
}

.ornament-diamond {
    color: var(--accent-gold);
    font-size: 0.6rem;
}

.rezervare-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--text-cream);
    margin-bottom: 15px;
    letter-spacing: 6px;
    font-weight: 400;
}

.rezervare-subtitle {
    color: rgba(245, 240, 230, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    font-family: var(--font-body);
}

/* Seating Option Cards */
.seating-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.seating-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.seating-card:hover {
    border-color: rgba(201, 169, 97, 0.4);
    background: rgba(201, 169, 97, 0.05);
}

.seating-card.active {
    border-color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.1);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.1);
}

.seating-icon {
    font-size: 1.6rem;
}

.seating-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-cream);
}

.seating-desc {
    font-size: 0.7rem;
    color: rgba(245, 240, 230, 0.4);
    letter-spacing: 0.5px;
}

.seating-card.active .seating-label {
    color: var(--accent-gold);
}

/* Form Fields */
.rezervare-fields {
    margin-bottom: 10px;
}

.rezervare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.rezervare-field {
    display: flex;
    flex-direction: column;
}

.rezervare-field label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(245, 240, 230, 0.5);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rezervare-field input,
.rezervare-field select,
.rezervare-field textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 14px;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.rezervare-field input:focus,
.rezervare-field select:focus,
.rezervare-field textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.05);
}

/* Required indicator */
.rezervare-required {
    color: #e85a5a;
    font-weight: 700;
    margin-left: 2px;
}

/* Error state: red border + faint red wash */
.rezervare-field.has-error input,
.rezervare-field.has-error select,
.rezervare-field.has-error textarea,
.rezervare-field.has-error .rezervare-date-wrap,
.rezervare-field.has-error .rezervare-stepper {
    border-color: #e85a5a !important;
    background: rgba(232, 90, 90, 0.06) !important;
    box-shadow: 0 0 0 3px rgba(232, 90, 90, 0.08);
    animation: rezervare-shake 0.35s ease-in-out;
}

.rezervare-field.has-error label {
    color: #f08585;
}

@keyframes rezervare-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

.rezervare-field textarea {
    resize: none;
}

.rezervare-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.rezervare-field select option {
    background: #1a1a1a;
    color: var(--text-cream);
    padding: 10px;
}

/* Hide native number spinners (we use a custom stepper) */
.rezervare-stepper-value::-webkit-outer-spin-button,
.rezervare-stepper-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.rezervare-stepper-value {
    -moz-appearance: textfield;
}

/* Custom Persoane stepper */
.rezervare-stepper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.rezervare-stepper:focus-within {
    border-color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.05);
}

.rezervare-stepper-btn {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    width: 42px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.rezervare-stepper-btn:hover {
    background: rgba(201, 169, 97, 0.15);
}

.rezervare-stepper-btn:active {
    background: rgba(201, 169, 97, 0.25);
}

.rezervare-stepper-value {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-cream);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 0;
    font-family: inherit;
}

/* Custom date display with hidden native picker */
.rezervare-date-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0 14px;
    height: 46px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.rezervare-date-wrap:hover,
.rezervare-date-wrap:focus-within {
    border-color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.05);
}

.rezervare-date-display {
    flex: 1;
    color: var(--text-cream);
    font-size: 0.95rem;
    pointer-events: none;
}

.rezervare-date-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
    pointer-events: none;
}

.rezervare-date-native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: transparent;
    color-scheme: dark;
    accent-color: var(--accent-gold);
}

.rezervare-date-native::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.rezervare-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-gold);
    color: var(--bg-charcoal);
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.rezervare-submit:hover {
    background: #d4b46a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.rezervare-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 900px) {
    .rezervare-layout {
        grid-template-columns: 1fr !important;
    }
    .rezervare-panel {
        padding: 30px 20px;
    }
    .seating-options {
        grid-template-columns: 1fr;
    }
    .rezervare-row {
        grid-template-columns: 1fr;
    }
    /* Keep Data + Ora paired even on mobile (per request). */
    .rezervare-row-datetime {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* ===== Compact reservation form (labels inside) + Call/WhatsApp actions ===== */
.rezervare-form-compact .rezervare-row {
    gap: 14px;
    margin-bottom: 14px;
    align-items: end;
}
.rezervare-field-persoane { display: flex; flex-direction: column; justify-content: flex-end; }
.rezervare-field select.is-placeholder { color: rgba(245, 240, 230, 0.5); }

/* Persoane stepper with inline caption */
.rezervare-stepper-labeled .rezervare-stepper-caption {
    flex: 1;
    padding-left: 16px;
    color: rgba(245, 240, 230, 0.55);
    font-size: 0.9rem;
    text-align: left;
    white-space: nowrap;
}
.rezervare-stepper-labeled .rezervare-stepper-value {
    flex: 0 0 42px;
    width: 42px;
}

/* Reservation choice step (Suna / WhatsApp + consent) */
.rezervare-choice {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rezervare-choice-prompt {
    margin: 0;
    text-align: center;
    color: var(--text-cream);
    font-size: 1rem;
    letter-spacing: 0.3px;
}
.rezervare-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(245, 240, 230, 0.75);
    cursor: pointer;
}
.rezervare-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #25d366;
}
.rezervare-terms-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
.rezervare-action-btn:disabled {
    background: #6b6b6b;
    color: #d8d8d8;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    filter: none;
}
.rezervare-back {
    align-self: center;
    background: none;
    border: none;
    color: rgba(245, 240, 230, 0.55);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 2px;
}
.rezervare-back:hover { color: var(--text-cream); }

.rezervare-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}
.rezervare-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, filter 0.25s ease;
}
.rezervare-action-call {
    flex: 0 0 auto;
    background: var(--accent-gold);
    color: var(--bg-charcoal);
}
.rezervare-action-call:hover {
    background: #d4b46a;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201, 169, 97, 0.3);
}
.rezervare-action-wa {
    flex: 1 1 auto;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}
.rezervare-action-wa:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* On narrow screens stack the two buttons full-width so the long
   "Trimite pe WhatsApp" label never wraps awkwardly beside "Sună". */
@media (max-width: 520px) {
    .rezervare-actions { flex-direction: column; }
    .rezervare-action-btn { width: 100%; flex: 1 1 auto; }
}

/* ========================= GALERIE VIEW ========================= */
.galerie-layout {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px 15px 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
}

/* Fixed parallax-like background image */
.galerie-bg {
    position: fixed;
    inset: 0;
    background-image: url("../img/ui/galerie.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.72) saturate(0.95);
    z-index: 0;
    pointer-events: none;
}

/* Fixed top zone: navbar + Galerie header pinned to the viewport top.
   Fully solid dark band that fades to transparent at the bottom — gallery
   tiles disappear when they scroll up underneath it. */
.galerie-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 15px 15px 60px;
    pointer-events: none;
    background: linear-gradient(180deg,
        #0d0d0d 0%,
        #0d0d0d 65%,
        rgba(13,13,13,0.9) 82%,
        rgba(13,13,13,0) 100%);
}

.galerie-sticky > * {
    pointer-events: auto;
}

/* Keep navbar identical to other views (margin & position come from .stirbey-navbar base rule) */
.galerie-navbar { position: relative; z-index: 2; }

.galerie-header {
    text-align: center;
    margin: 30px auto 0;
    max-width: 640px;
    color: var(--text-cream);
    position: relative;
    z-index: 2;
}

.galerie-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--accent-gold);
    margin-bottom: 14px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.galerie-line {
    width: 36px;
    height: 1px;
    background: rgba(201, 169, 97, 0.55);
}

.galerie-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    color: var(--text-cream);
}

.galerie-header p {
    color: rgba(245, 240, 230, 0.55);
    font-size: 0.95rem;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
    max-width: 1320px;
    margin: calc(10vh + 240px) auto 0;
    position: relative;
    z-index: 1;
}

/* Mosaic spans for visual interest */
.galerie-tile-0 { grid-column: span 6; grid-row: span 2; }
.galerie-tile-1 { grid-column: span 3; grid-row: span 2; }
.galerie-tile-2 { grid-column: span 3; grid-row: span 2; }
.galerie-tile-3 { grid-column: span 4; grid-row: span 2; }
.galerie-tile-4 { grid-column: span 4; grid-row: span 2; }
.galerie-tile-5 { grid-column: span 4; grid-row: span 2; }

.galerie-tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0d0d0d;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

.galerie-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
    filter: brightness(0.85) saturate(1.05);
}

.galerie-tile:hover img {
    transform: scale(1.08);
    filter: brightness(0.6) saturate(1.1);
}

.galerie-tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 18px;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.galerie-tile:hover .galerie-tile-overlay {
    opacity: 1;
}

.galerie-tile-caption {
    font-family: var(--font-heading);
    color: var(--text-cream);
    font-size: 1rem;
    letter-spacing: 0.02em;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}

.galerie-tile:hover .galerie-tile-caption {
    transform: translateY(0);
}

.galerie-tile-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.95);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}

.galerie-tile:hover .galerie-tile-icon {
    transform: translateY(0);
}

/* ========================= LIGHTBOX ========================= */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 70px;
}

.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

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

.lightbox-caption {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--text-cream);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.lightbox-count {
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-family: var(--font-body);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-cream);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.6);
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .galerie-layout { padding: 10px 10px 50px; }
    .galerie-header h1 { font-size: 2.2rem; }
    .galerie-header { margin: 70px auto 0; }
    .galerie-sticky { padding: 14px 14px 40px; }
    .galerie-grid { margin-top: calc(50px + 220px); }
    .galerie-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 110px;
        gap: 8px;
    }
    .galerie-tile-0 { grid-column: span 6; grid-row: span 2; }
    .galerie-tile-1 { grid-column: span 3; grid-row: span 2; }
    .galerie-tile-2 { grid-column: span 3; grid-row: span 2; }
    .galerie-tile-3 { grid-column: span 6; grid-row: span 2; }
    .galerie-tile-4 { grid-column: span 3; grid-row: span 2; }
    .galerie-tile-5 { grid-column: span 3; grid-row: span 2; }

    /* Always-show caption on touch */
    .galerie-tile-overlay { opacity: 1; }
    .galerie-tile-caption,
    .galerie-tile-icon { transform: translateY(0); }
    .galerie-tile img { filter: brightness(0.7) saturate(1.05); }

    .lightbox-overlay { padding: 40px 12px; }
    .lightbox-close { top: 16px; right: 16px; }
    .lightbox-prev  { left: 8px; }
    .lightbox-next  { right: 8px; }
    .lightbox-close, .lightbox-prev, .lightbox-next {
        width: 40px; height: 40px;
    }
    .lightbox-content img { max-height: 70vh; }
}

/* ========================= ALLERGENS ========================= */
.meniu-allergens-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.meniu-allergens-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: transparent;
    color: rgba(245, 240, 230, 0.7);
    border: 1px solid rgba(186, 144, 92, 0.3);
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.meniu-allergens-trigger:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.06);
}

.meniu-allergens-filter-btn.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.1);
}

.meniu-allergens-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 700;
}

/* --- Filter checkbox list --- */
.allergens-filter-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 14px;
}

.allergens-filter-item {
    display: grid;
    grid-template-columns: 18px 22px 1fr;
    align-items: start;
    column-gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s ease;
    border: 1px solid transparent;
}

.allergens-filter-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.allergens-filter-item.checked {
    background: rgba(201, 169, 97, 0.07);
    border-color: rgba(201, 169, 97, 0.4);
}

.allergens-filter-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(186, 144, 92, 0.5);
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    background: transparent;
    transition: all 0.18s ease;
    margin-top: 1px;
}

.allergens-filter-item input[type="checkbox"]:checked {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.allergens-filter-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #1a1a1a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.allergens-filter-num {
    color: var(--accent-gold);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    font-size: 0.85rem;
    text-align: right;
    line-height: 1.35;
    padding-top: 1px;
}

.allergens-filter-text {
    color: var(--text-cream);
    font-size: 0.82rem;
    line-height: 1.35;
    padding-top: 1px;
}

.allergens-filter-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.allergens-filter-clear,
.allergens-filter-apply {
    padding: 10px 20px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.allergens-filter-clear {
    background: transparent;
    color: rgba(245, 240, 230, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.allergens-filter-clear:hover:not(:disabled) {
    color: var(--text-cream);
    border-color: rgba(255, 255, 255, 0.25);
}

.allergens-filter-clear:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.allergens-filter-apply {
    background: linear-gradient(180deg, #c9a961 0%, #a07c54 100%);
    color: #1a1a1a;
    border: none;
    font-weight: 600;
}

.allergens-filter-apply:hover {
    filter: brightness(1.05);
}

@media (max-width: 600px) {
    .allergens-filter-list {
        grid-template-columns: 1fr;
    }
}

.allergens-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .allergens-overlay {
        align-items: flex-start;
        padding: 24px 12px 12px;
    }
}

.allergens-modal {
    position: relative;
    width: 100%;
    max-width: 820px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(186, 144, 92, 0.3);
    border-radius: 18px;
    padding: 30px 36px 24px;
    color: var(--text-cream);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    max-height: 94vh;
    overflow-y: auto;
}

.allergens-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 3;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.allergens-close:hover {
    color: var(--accent-gold);
    border-color: rgba(201, 169, 97, 0.5);
}

.allergens-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 8px 50px 12px;
    font-weight: 600;
}

.allergens-modal {
    padding-top: 22px;
}

.allergens-intro {
    text-align: center;
    color: rgba(245, 240, 230, 0.6);
    font-style: italic;
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 14px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.allergens-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.allergens-list li {
    display: flex;
    gap: 10px;
    padding: 5px 4px;
    align-items: flex-start;
    line-height: 1.35;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.allergens-list li:last-child {
    border-bottom: none;
}

.allergens-number {
    color: var(--accent-gold);
    font-weight: 700;
    min-width: 22px;
    font-variant-numeric: tabular-nums;
}

.allergens-text {
    color: var(--text-cream);
    font-size: 0.88rem;
}

.allergens-note {
    text-align: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    color: rgba(245, 240, 230, 0.55);
    font-size: 0.8rem;
    line-height: 1.45;
}

.allergens-frozen-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(96, 165, 220, 0.08);
    border: 1px solid rgba(96, 165, 220, 0.25);
    border-radius: 8px;
    color: #a8c8e8;
    font-size: 0.85rem;
    font-weight: 500;
}

.allergens-frozen-icon {
    font-size: 1rem;
    color: #6ba9da;
}

@media (max-width: 600px) {
    .allergens-modal {
        padding: 28px 22px 22px;
        border-radius: 14px;
    }
    .allergens-title { font-size: 1.35rem; }
    .allergens-text { font-size: 0.82rem; }
}

/* ========================= NAV OVERLAY ========================= */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.nav-overlay-close {
    position: absolute;
    /* Sit exactly over the hamburger box (measured): layout padding 15 + navbar
       margin 10vh + navbar border 1 + padding-top 8 + vertical-centering ~4.8.
       Horizontally: 15 + 40 + border 1 + padding-left 20 = 76. */
    top: calc(10vh + 29px);
    left: 76px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-cream);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-overlay-close:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.06);
}

.nav-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.nav-overlay-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-cream);
    opacity: 0.7;
}

.nav-overlay-line {
    width: 28px;
    height: 1px;
    background: rgba(245, 240, 230, 0.5);
}

.nav-overlay-diamond {
    font-size: 0.9rem;
    color: var(--text-cream);
}

.nav-overlay-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.nav-overlay-links a,
.nav-overlay-links button {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-cream);
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.15;
    font-family: 'Cormorant Garamond', Georgia, serif;
    transition: color 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
}

.nav-overlay-links a:hover,
.nav-overlay-links button:hover {
    color: var(--accent-gold);
    letter-spacing: 0.08em;
}

/* Current view highlighted in the menu. */
.nav-overlay-links button.is-active {
    color: var(--accent-gold);
}
.nav-overlay-links button.is-active::after {
    content: '';
    display: block;
    width: 38px;
    height: 1px;
    margin: 6px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.nav-overlay-footer {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(245, 240, 230, 0.45);
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    font-weight: 600;
}

.nav-overlay-year {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .nav-overlay-links a,
    .nav-overlay-links button {
        font-size: 2.2rem;
    }
    .nav-overlay-content {
        gap: 22px;
    }
    .nav-overlay-links {
        gap: 10px;
    }
}

/* ========================= MENIUL ZILEI MODAL ========================= */
/* Trigger pill shown above the menu toolbar */
.meniu-zilei-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #c9a961 0%, #b8956a 50%, #a07c54 100%);
    color: #2a1f10;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.meniu-zilei-trigger:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 10px 26px rgba(201, 169, 97, 0.28);
}

.meniu-zilei-trigger-badge {
    background: rgba(42, 31, 16, 0.85);
    color: #f0d8a0;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    padding: 4px 9px;
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 700;
}

.meniu-zilei-trigger-text {
    flex: 1;
    text-align: left;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* Modal */
.meniu-zilei-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 20, 10, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.meniu-zilei-modal {
    position: relative;
    width: 100%;
    max-width: 520px;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 230, 180, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(160, 124, 84, 0.4) 0%, transparent 55%),
        linear-gradient(160deg, #e8d3a8 0%, #d9bb84 45%, #b8956a 100%);
    border: 1px solid rgba(120, 88, 50, 0.35);
    border-radius: 18px;
    padding: 40px 44px 32px;
    color: #2a1f10;
    box-shadow: 0 30px 80px rgba(60, 40, 15, 0.45), 0 0 0 1px rgba(255, 240, 200, 0.25) inset;
    text-align: center;
    max-height: 92vh;
    overflow-y: auto;
}

.meniu-zilei-close {
    position: absolute;
    top: max(14px, env(safe-area-inset-top, 14px));
    right: max(14px, env(safe-area-inset-right, 14px));
    background: rgba(42, 31, 16, 0.08);
    border: 1px solid rgba(42, 31, 16, 0.15);
    color: rgba(42, 31, 16, 0.7);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.meniu-zilei-close:hover {
    color: #2a1f10;
    background: rgba(42, 31, 16, 0.15);
    border-color: rgba(42, 31, 16, 0.3);
}

.meniu-zilei-brand {
    text-align: center;
    margin-bottom: 22px;
}

.meniu-zilei-brand-name {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #2a1f10;
    padding-left: 0.28em;
}

.meniu-zilei-brand-year {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    color: rgba(42, 31, 16, 0.7);
    font-weight: 600;
}

.meniu-zilei-brand-line {
    width: 36px;
    height: 1px;
    background: rgba(42, 31, 16, 0.4);
}

.meniu-zilei-title {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 500;
    color: #2a1f10;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.meniu-zilei-price {
    color: #6b4a1a;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
}

.meniu-zilei-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 31, 16, 0.35), transparent);
    margin: 0 auto 24px;
}

.meniu-zilei-items {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.meniu-zilei-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(42, 31, 16, 0.92);
}

.meniu-zilei-items li strong {
    color: #2a1f10;
    font-weight: 700;
}

.meniu-zilei-marker {
    color: #6b4a1a;
    font-size: 0.7rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.meniu-zilei-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.meniu-zilei-cta {
    background: #2a1f10;
    color: #f0d8a0;
    border: none;
    padding: 14px 38px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
}

.meniu-zilei-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(42, 31, 16, 0.4);
    filter: brightness(1.1);
}

/* ===== Meniul Zilei order flow (choice + whatsapp form) ===== */
.meniu-order-choice,
.meniu-order-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.meniu-order-prompt {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #3a2916;
}
.meniu-order-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.meniu-order-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1 1 0;
    min-width: 140px;
    max-width: 200px;
    padding: 16px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.meniu-order-btn small {
    font-weight: 400;
    font-size: 0.72rem;
    opacity: 0.85;
}
.meniu-order-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.meniu-order-btn:disabled {
    background: #b9b9b9;
    color: #f1f1f1;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    filter: none;
}
.meniu-order-btn-call {
    background: #2a1f10;
    color: #f0d8a0;
}
.meniu-order-btn-wa {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}
.meniu-order-send {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    max-width: none;
    width: 100%;
}
.meniu-order-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    text-align: left;
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(42, 31, 16, 0.8);
    cursor: pointer;
}
.meniu-order-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #25d366;
    width: 16px;
    height: 16px;
}
.meniu-order-terms-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: #1a7a3a;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}
.meniu-order-terms-link:hover { color: #25d366; }

.meniu-order-back {
    background: transparent;
    border: none;
    color: rgba(42, 31, 16, 0.6);
    font-family: var(--font-body);
    font-size: 0.82rem;
    cursor: pointer;
    padding: 4px;
}
.meniu-order-back:hover { color: #3a2916; }

.meniu-order-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}
.meniu-order-fields input {
    background: rgba(58, 41, 22, 0.08);
    border: 1px solid rgba(58, 41, 22, 0.25);
    border-radius: 8px;
    padding: 11px 13px;
    font: inherit;
    font-size: 0.9rem;
    color: #2a1f10;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.meniu-order-fields input::placeholder { color: rgba(58, 41, 22, 0.5); }
.meniu-order-fields input:focus { border-color: #25d366; background: rgba(58, 41, 22, 0.04); }
.meniu-order-location { grid-column: 1 / -1; }
.meniu-order-portions {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #3a2916;
    background: rgba(58, 41, 22, 0.08);
    border: 1px solid rgba(58, 41, 22, 0.25);
    border-radius: 8px;
    padding: 4px 6px 4px 13px;
}
.meniu-order-portions > span { flex-shrink: 0; font-weight: 600; }
.meniu-portions-stepper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(58, 41, 22, 0.2);
    border-radius: 7px;
    overflow: hidden;
}
.meniu-portions-stepper button {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #3a2916;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.meniu-portions-stepper button:hover { background: rgba(58, 41, 22, 0.12); }
.meniu-portions-stepper button:active { background: rgba(58, 41, 22, 0.2); }
.meniu-portions-stepper input {
    width: 46px;
    border: none;
    border-left: 1px solid rgba(58, 41, 22, 0.18);
    border-right: 1px solid rgba(58, 41, 22, 0.18);
    background: transparent;
    text-align: center;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2a1f10;
    padding: 8px 0;
    outline: none;
    -moz-appearance: textfield;
}
.meniu-portions-stepper input::-webkit-outer-spin-button,
.meniu-portions-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 540px) {
    .meniu-order-fields { grid-template-columns: 1fr; }
    .meniu-order-portions { grid-column: 1 / -1; }
}

.meniu-zilei-link {
    background: transparent;
    border: none;
    color: rgba(42, 31, 16, 0.7);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.82rem;
    padding: 4px 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(42, 31, 16, 0.35);
    transition: color 0.2s ease;
}

.meniu-zilei-link:hover {
    color: #2a1f10;
}

.meniu-zilei-footer {
    border-top: 1px dashed rgba(42, 31, 16, 0.25);
    padding-top: 18px;
    font-size: 0.82rem;
    color: rgba(42, 31, 16, 0.65);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .meniu-zilei-modal {
        padding: 32px 24px 24px;
        border-radius: 14px;
    }
    .meniu-zilei-title {
        font-size: 1.55rem;
    }
}

/* Short viewports (landscape phones / small devices): compress so the
   WhatsApp order form fits without heavy scrolling. */
@media (max-height: 760px) {
    .meniu-zilei-modal {
        padding: 20px 24px 18px;
        max-height: 94vh;
        max-height: 94dvh;
    }
    .meniu-zilei-brand { margin-bottom: 8px; }
    .meniu-zilei-title { font-size: 1.35rem; margin: 4px 0 2px; }
    .meniu-zilei-price { margin: 2px 0; }
    .meniu-zilei-divider { margin: 8px auto; }
    .meniu-zilei-items { gap: 7px; margin-bottom: 12px; }
    .meniu-order-choice,
    .meniu-order-form { gap: 10px; margin-bottom: 10px; }
    .meniu-order-fields { gap: 8px; }
    .meniu-order-fields input,
    .meniu-order-portions { padding-top: 9px; padding-bottom: 9px; }
    .meniu-order-consent { font-size: 0.74rem; }
}

/* Very short: also drop the decorative brand mark to reclaim space. */
@media (max-height: 620px) {
    .meniu-zilei-brand { display: none; }
    .meniu-zilei-modal { padding-top: 16px; }
    .meniu-zilei-divider { display: none; }
}

/* ===================================================================
   GLOBAL MOBILE OPTIMIZATIONS
   =================================================================== */

@media (max-width: 768px) {
    /* Layout: stack columns, allow page scroll */
    .stirbey-layout {
        grid-template-columns: 1fr !important;
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding: 10px;
        gap: 10px;
    }

    .stirbey-main {
        /* Hero fills the visible screen on landing */
        min-height: 100vh;
        min-height: 100svh;
        border-radius: 0;
        margin: -10px -10px 0;
        width: calc(100% + 20px);
        position: relative;
        overflow: hidden;
    }

    /* Darken the photo so the title reads cleanly */
    .stirbey-main-bg {
        filter: brightness(0.38) saturate(1.05);
    }

    /* Home hero only - centered title, full-screen overlay
       (sub-views like .meniu-layout / .rezervare-layout / .restaurant-layout keep
       their compact bottom-aligned title) */
    .stirbey-layout:not(.meniu-layout):not(.rezervare-layout):not(.restaurant-layout):not(.galerie-layout) .stirbey-hero-bottom {
        position: absolute;
        inset: 0;
        flex: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 24px 0;
        background: linear-gradient(
            to top,
            #000 0%,
            rgba(0,0,0,0.95) 25%,
            rgba(0,0,0,0.7) 50%,
            rgba(0,0,0,0.35) 75%,
            rgba(0,0,0,0) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    .stirbey-layout:not(.meniu-layout):not(.rezervare-layout):not(.restaurant-layout):not(.galerie-layout) .stirbey-hero-bottom > * {
        pointer-events: auto;
    }

    /* Swap which title is visible on mobile */
    .stirbey-hero-title-desktop { display: none; }
    .stirbey-hero-title-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: none;
        animation: hero-reveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .stirbey-hero-pretitle {
        font-family: var(--font-heading);
        font-style: italic;
        font-size: 0.85rem;
        letter-spacing: 0.18em;
        color: var(--accent-gold);
        opacity: 0.85;
        margin-bottom: 18px;
    }

    .stirbey-hero-title-mobile h2 {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-weight: 300;
        font-size: clamp(2.8rem, 12vw, 3.6rem);
        line-height: 0.95;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #f0e6d3;
        animation: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .stirbey-hero-year {
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 0.78rem;
        letter-spacing: 0.6em;
        color: var(--accent-gold);
        text-indent: 0.6em;
        margin-top: 2px;
    }

    .stirbey-hero-subtitle {
        margin-top: 22px;
        font-size: 0.78rem;
        font-style: italic;
        letter-spacing: 0.04em;
        color: rgba(245, 240, 230, 0.72);
        max-width: 280px;
        line-height: 1.5;
    }

    .stirbey-hero-title-mobile h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 1px;
        margin: 18px auto 0;
        background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        animation: hero-line-grow 1.2s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
        transform-origin: center;
    }

    /* Socials pinned to bottom-right corner of the hero (HOME view only) */
    .stirbey-layout:not(.meniu-layout):not(.rezervare-layout):not(.restaurant-layout):not(.galerie-layout) .stirbey-social-bar {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 24px;
        z-index: 3;
        animation: hero-reveal 1.4s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
        transition: opacity 0.4s ease;
    }
    /* Fade the landing social bar away on scroll, like the scroll hint, so it
       doesn't linger above the cards section. */
    .stirbey-layout:not(.meniu-layout):not(.rezervare-layout):not(.restaurant-layout):not(.galerie-layout) .stirbey-social-bar.is-scrolled {
        opacity: 0 !important; /* beat the lingering hero-reveal animation fill */
        pointer-events: none;
    }

    /* Mobile landing as two snap sections: hero (section 1) + cards (section 2).
       The hero — and the social bar it contains — scrolls fully out of view as
       one block, so nothing from the landing lingers above the cards. */
    .stirbey-layout:not(.meniu-layout):not(.rezervare-layout):not(.restaurant-layout):not(.galerie-layout) {
        height: 100svh;
        min-height: 100svh;
        padding: 0;            /* no padding/gap so the two panels tile exactly */
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
    }
    /* Section 1 — hero: exactly one screen, no negative-margin bleed (panels must tile). */
    .stirbey-layout:not(.meniu-layout):not(.rezervare-layout):not(.restaurant-layout):not(.galerie-layout) > .stirbey-main {
        height: 100svh;
        min-height: 100svh;
        margin: 0;
        width: 100%;
        border-radius: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    /* Section 2 — cards: exactly one screen, 3 cards stretch to fill it. */
    .stirbey-layout:not(.meniu-layout):not(.rezervare-layout):not(.restaurant-layout):not(.galerie-layout) > .stirbey-sidebar {
        height: 100svh;
        min-height: 100svh;
        margin: 0;
        width: 100%;
        padding: 10px;
        gap: 10px;
        grid-template-rows: repeat(3, 1fr);
        box-sizing: border-box;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    /* Mobile landing: socials grouped left, phone pushed to the right edge. */
    .stirbey-layout:not(.meniu-layout):not(.rezervare-layout):not(.restaurant-layout):not(.galerie-layout) .stirbey-social-bar .social-divider {
        display: none;
    }
    .stirbey-layout:not(.meniu-layout):not(.rezervare-layout):not(.restaurant-layout):not(.galerie-layout) .stirbey-social-bar .social-icon[aria-label="Telefon"] {
        margin-left: auto;
    }
}

@keyframes hero-reveal {
    0%   { opacity: 0; transform: translateY(24px); filter: blur(8px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes hero-line-grow {
    0%   { transform: scaleX(0); opacity: 0; }
    100% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 768px) {
    /* On mobile sub-views we drop the decorative photo strip entirely so the
       navbar floats on the page background and the content starts immediately
       below it. We switch the layout to flex column so stirbey-main can truly
       collapse to its content height (the grid was forcing min-row-heights). */
    .meniu-layout,
    .rezervare-layout,
    .restaurant-layout {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
        gap: 0 !important;
    }
    .meniu-layout .stirbey-main,
    .rezervare-layout .stirbey-main,
    .restaurant-layout .stirbey-main {
        min-height: 0 !important;
        max-height: none !important;
        height: auto !important;
        flex: 0 0 auto !important;
        padding: 0 !important;
        /* Bleed full-width past the layout's 10px padding (top + sides) so the
           navbar — and the burger/X — has the exact same size and position as
           on the landing view. */
        margin: -10px -10px 0 !important;
        width: calc(100% + 20px) !important;
        background: transparent !important;
    }
    .meniu-layout .stirbey-main-bg,
    .rezervare-layout .stirbey-main-bg,
    .restaurant-layout .stirbey-main-bg,
    .meniu-layout .rezervare-blur-overlay,
    .rezervare-layout .rezervare-blur-overlay,
    .restaurant-layout .rezervare-blur-overlay {
        display: none;
    }
    .meniu-layout .stirbey-hero-bottom,
    .rezervare-layout .stirbey-hero-bottom,
    .restaurant-layout .stirbey-hero-bottom {
        display: none;
    }
    /* Stop the scroll-down chevron hint from inflating the strip */
    .meniu-layout .stirbey-scroll-hint,
    .rezervare-layout .stirbey-scroll-hint,
    .restaurant-layout .stirbey-scroll-hint {
        display: none;
    }

    /* Navbar: tighter, allow wrapping */
    .stirbey-navbar {
        margin: 14px 14px 0;
        padding: 6px 6px 6px 14px;
        gap: 14px;
        flex-wrap: nowrap;
        width: calc(100% - 28px);
    }

    .stirbey-nav-icon-box {
        width: 36px;
        height: 36px;
    }

    /* Close button aligned exactly over the mobile hamburger box. */
    .nav-overlay-close {
        top: calc(14px + 6px);   /* navbar margin-top + padding-top */
        left: calc(14px + 14px); /* navbar margin-left + padding-left */
        width: 36px;
        height: 36px;
    }

    .stirbey-logo {
        height: 26px !important;
    }

    .stirbey-nav-links {
        display: none;
    }

    .stirbey-book-btn {
        padding: 9px 14px;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        margin-left: auto;
    }

    /* Hero title smaller */
    .stirbey-hero-title h1,
    .stirbey-hero-title h2 {
        font-size: 2.6rem;
        line-height: 1.05;
    }

    .stirbey-social-bar {
        gap: 6px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    /* Sidebar cards: shorter, full width */
    .stirbey-sidebar {
        grid-template-rows: auto;
        gap: 10px;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .stirbey-card {
        min-height: 130px;
    }

    .stirbey-card-title {
        font-size: 1rem;
    }

    .stirbey-card-cutout {
        padding: 12px 12px 0 16px;
    }

    /* Main image area never grows beyond the viewport on phones */
    .stirbey-main {
        max-height: 100vh;
    }

    /* Rezervare panel */
    .rezervare-panel {
        padding: 24px 18px;
        border-radius: 16px;
        overflow-y: visible;
    }

    .meniu-panel, .restaurant-panel {
        overflow-y: visible;
    }

    .rezervare-heading {
        font-size: 1.5rem !important;
    }

    .rezervare-subtitle {
        font-size: 0.85rem !important;
    }

    .rezervare-row {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }
    /* Keep Data + Ora paired on mobile (per request). */
    .rezervare-row-datetime {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
    }

    .rezervare-field input,
    .rezervare-field select,
    .rezervare-field textarea,
    .rezervare-date-wrap {
        font-size: 16px; /* prevent iOS zoom on focus */
    }

    .rezervare-stepper-btn {
        width: 46px;
        height: 46px;
    }

    .rezervare-submit {
        padding: 14px;
        font-size: 1rem;
    }

    /* ===== Meniu panel - mobile-first refinement ===== */
    .meniu-panel {
        padding: 14px 12px 28px;
        border-radius: 14px;
        overflow-y: visible;
        overflow-x: hidden;
        max-width: 100%;
        box-sizing: border-box;
    }

    .meniu-panel-inner {
        max-width: 100%;
        min-width: 0;
    }

    /* Meniul Zilei + Alergeni stack tightly */
    .meniu-zilei-trigger {
        padding: 11px 13px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .meniu-allergens-row {
        gap: 6px;
        margin-bottom: 10px;
    }

    .meniu-allergens-trigger {
        flex: 1;
        justify-content: center;
        padding: 8px 10px;
        font-size: 0.72rem;
    }

    /* Sticky toolbar pinned to the very top edge */
    .meniu-toolbar {
        position: sticky;
        top: 0;
        margin: 0 -12px 10px;
        padding: 10px 12px 10px;
        background: linear-gradient(180deg, #0d0d0d 0%, #0d0d0d 85%, rgba(13,13,13,0.92) 100%);
        z-index: 20;
        box-shadow: 0 1px 0 rgba(186, 144, 92, 0.12);
    }

    /* Group switch (Mâncare/Băuturi) — compact */
    .meniu-group-switch {
        margin-bottom: 8px;
        padding: 3px;
    }

    .meniu-group-btn {
        padding: 8px 10px;
        font-size: 0.74rem;
        letter-spacing: 0.06em;
    }

    .meniu-search {
        padding: 0 12px;
        border-radius: 12px;
    }

    .meniu-search-input {
        font-size: 16px;
        padding: 10px 8px;
    }

    /* Hide arrows on touch — swipe is the gesture */
    .meniu-tabs-wrap {
        gap: 0;
        margin-top: 8px;
    }

    .meniu-tabs-arrow {
        display: none;
    }

    /* Horizontal scroll snap for tabs */
    .meniu-tabs {
        margin-top: 0;
        gap: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 2px 0 4px;
    }

    .meniu-tab {
        padding: 7px 13px;
        font-size: 0.7rem;
        scroll-snap-align: start;
    }

    /* Section headers more visible on small screens */
    .meniu-section {
        margin-bottom: 8px;
    }

    .meniu-section-header {
        font-size: 0.66rem;
        padding: 7px 6px 4px;
        position: sticky;
        top: 138px;
        background: #0d0d0d;
        z-index: 10;
        margin: 0 -2px 4px;
    }

    /* Items: bigger touch area, cleaner spacing */
    .meniu-item {
        padding: 11px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 0;
        min-width: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .meniu-item:last-child {
        border-bottom: none;
    }

    .meniu-item:hover,
    .meniu-item:active {
        background: rgba(186, 144, 92, 0.05);
    }

    /* Name/price layout — name on its own line if it wraps, price hugs right */
    .meniu-item-row {
        gap: 6px;
        align-items: baseline;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .meniu-item-name {
        font-size: 0.95rem;
        line-height: 1.25;
        white-space: normal;
        font-weight: 500;
        min-width: 0;
        flex: 1 1 auto;
    }

    .meniu-item-dots {
        flex: 1;
        min-width: 14px;
        transform: translateY(-2px);
    }

    .meniu-item-price {
        font-size: 0.86rem;
        font-weight: 700;
        white-space: nowrap;
    }

    /* Description always visible on touch */
    .meniu-item-detail {
        max-height: none;
        opacity: 1;
        margin-top: 4px;
        font-size: 0.77rem;
        line-height: 1.45;
        color: rgba(245, 240, 230, 0.55);
    }

    .meniu-item-weight,
    .meniu-item-allergens {
        font-size: 0.66rem;
        margin-top: 3px;
    }

    .meniu-item-allergen-num {
        width: 16px;
        height: 16px;
        font-size: 0.64rem;
    }

    /* No-results message */
    .meniu-empty {
        padding: 30px 16px;
        font-size: 0.88rem;
    }

    /* Meniul zilei trigger */
    .meniu-zilei-trigger {
        padding: 12px 14px;
        gap: 10px;
    }

    .meniu-zilei-trigger-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .meniu-zilei-trigger-text {
        font-size: 0.85rem;
    }

    /* Restaurant panel */
    .restaurant-panel {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .restaurant-top-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .restaurant-story {
        padding: 18px 16px;
    }

    .restaurant-story-title {
        font-size: 1.05rem;
    }

    .restaurant-story-subtitle {
        font-size: 0.92rem;
    }

    .restaurant-story,
    .restaurant-story p {
        font-size: 0.82rem;
    }

    .restaurant-galerie {
        min-height: 180px;
    }

    .restaurant-event {
        padding: 16px;
        gap: 14px;
    }

    .restaurant-event-date {
        width: 56px;
        height: 56px;
    }

    .restaurant-event-day {
        font-size: 1.35rem;
    }

    .restaurant-event-body h3 {
        font-size: 1rem;
    }

    .restaurant-event-body p {
        font-size: 0.78rem;
    }

    .restaurant-contact-card {
        padding: 18px 16px;
    }

    .restaurant-contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Modals */
    .meniu-zilei-overlay {
        padding: 12px;
        align-items: center;
    }

    .meniu-zilei-items li {
        font-size: 0.88rem;
    }

    /* Native date picker pop on mobile is OS-controlled */
}

@media (max-width: 420px) {
    .stirbey-hero-title h1,
    .stirbey-hero-title h2 {
        font-size: 2.4rem;
    }

    .stirbey-navbar {
        gap: 10px;
        margin: 10px 10px 0;
        width: calc(100% - 20px);
    }

    /* Keep the close button exactly over the hamburger at this breakpoint. */
    .nav-overlay-close {
        top: calc(10px + 6px);   /* navbar margin-top + padding-top */
        left: calc(10px + 14px); /* navbar margin-left + padding-left */
    }

    .stirbey-book-btn {
        padding: 8px 11px;
        font-size: 0.65rem;
    }

    .meniu-zilei-brand-name {
        font-size: 1.4rem;
    }

    .meniu-zilei-title {
        font-size: 1.35rem;
    }

    .meniu-zilei-price {
        font-size: 1.15rem;
    }

    .meniu-zilei-cta {
        padding: 12px 24px;
        font-size: 0.78rem;
    }

    .restaurant-event {
        flex-wrap: wrap;
    }

    .restaurant-event-arrow {
        display: none;
    }

    /* Meniu - very small screens */
    .meniu-panel {
        padding: 12px 10px 24px;
    }

    .meniu-toolbar {
        margin: 0 -10px 8px;
        padding: 8px 10px 8px;
    }

    .meniu-allergens-trigger {
        padding: 7px 8px;
        font-size: 0.68rem;
        gap: 5px;
    }

    .meniu-allergens-trigger svg {
        width: 12px;
        height: 12px;
    }

    .meniu-zilei-trigger {
        padding: 10px 11px;
        margin-bottom: 8px;
    }

    .meniu-zilei-trigger-text {
        font-size: 0.8rem;
    }

    .meniu-group-btn {
        padding: 7px 8px;
        font-size: 0.7rem;
    }

    .meniu-item {
        padding: 10px 6px;
    }

    .meniu-item-name {
        font-size: 0.92rem;
    }

    .meniu-item-price {
        font-size: 0.82rem;
    }

    .meniu-item-detail {
        font-size: 0.74rem;
    }

    .meniu-section-header {
        top: 132px;
        font-size: 0.64rem;
    }

    .meniu-tab {
        padding: 6px 11px;
        font-size: 0.66rem;
    }
}

/* =================== MENIU CHOOSER (inside .meniu-panel) =================== */
.meniu-landing-head {
    margin-bottom: 28px;
    text-align: center;
}
.meniu-landing-eyebrow {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}
.meniu-landing-head h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.7rem, 3.4vw, 2.2rem);
    font-weight: 400;
    margin: 0 0 10px;
    line-height: 1.15;
    color: var(--text-cream);
}
.meniu-landing-head p {
    color: rgba(245, 240, 230, 0.7);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 460px;
}

.meniu-landing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
/* When a group is hidden, center the remaining 1 or 2 cards without
   changing the proven 3-card layout. */
.meniu-landing-cards[data-count="2"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.meniu-landing-cards[data-count="1"] {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 900px) {
    .meniu-landing-cards,
    .meniu-landing-cards[data-count="2"],
    .meniu-landing-cards[data-count="1"] { grid-template-columns: 1fr; }
}
.meniu-landing-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 20px 20px;
    background: rgba(15, 10, 5, 0.55);
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-cream);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    height: 100%;
}
.meniu-landing-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
    background: rgba(30, 20, 10, 0.75);
}
.meniu-landing-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.22) 0%, rgba(160, 124, 84, 0.1) 100%);
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.meniu-landing-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-cream);
}
.meniu-landing-card p {
    color: rgba(245, 240, 230, 0.62);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.meniu-landing-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    white-space: nowrap;
    margin-top: auto;
    transition: gap 0.25s ease;
}
.meniu-landing-card:hover .meniu-landing-card-cta { gap: 10px; }

/* Chooser layout — header sticks to top, cards centered, footer at bottom,
   regardless of screen size. */
.meniu-chooser-layout .meniu-panel {
    display: flex;
    flex-direction: column;
}
.meniu-chooser-layout .meniu-panel-inner {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 100%;
}
.meniu-chooser-layout .meniu-landing-cards {
    margin-top: auto;
    margin-bottom: auto;
}

/* Taller cards on desktop for a richer feel. */
@media (min-width: 601px) {
    .meniu-chooser-layout .meniu-landing-card {
        min-height: 360px;
        padding: 32px 26px 28px;
        gap: 16px;
    }
    .meniu-chooser-layout .meniu-landing-card-icon {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }
    .meniu-chooser-layout .meniu-landing-card h3 {
        font-size: 1.55rem;
    }
    .meniu-chooser-layout .meniu-landing-card p {
        font-size: 0.94rem;
        line-height: 1.55;
    }
}

/* Desktop spotlight hover — the other two cards blur + dim while one is hovered */
@media (hover: hover) and (min-width: 601px) {
    .meniu-chooser-layout .meniu-landing-card {
        transition:
            transform   0.35s ease,
            filter      0.35s ease,
            opacity     0.35s ease,
            border-color 0.25s ease,
            background  0.25s ease;
    }
    .meniu-chooser-layout .meniu-landing-cards:hover .meniu-landing-card {
        filter: blur(1.2px);
        opacity: 0.65;
        transform: scale(0.985);
    }
    .meniu-chooser-layout .meniu-landing-cards:hover .meniu-landing-card:hover {
        filter: blur(0);
        opacity: 1;
        transform: translateY(-4px) scale(1.02);
        border-color: var(--accent-gold);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
        z-index: 1;
    }
}

.meniu-landing-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 169, 97, 0.18);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    color: rgba(245, 240, 230, 0.65);
}
.meniu-landing-footer-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
}
.meniu-landing-footer-row svg { color: var(--accent-gold); flex-shrink: 0; }
.meniu-landing-footer-row a {
    color: rgba(245, 240, 230, 0.85);
    text-decoration: none;
}
.meniu-landing-footer-row a:hover { color: var(--accent-gold); }

/* Catering / Pomeni — card grid */
.events-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin: 6px 0 28px;
}
.events-card {
    background: rgba(15, 10, 5, 0.78);
    border: 1px solid rgba(201, 169, 97, 0.42);
    border-radius: 16px;
    padding: 28px 26px 24px;
    color: var(--text-cream);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
}
.events-card-eyebrow {
    color: var(--accent-gold);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}
.events-card-title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-cream);
    margin: 0 0 14px;
    line-height: 1.2;
}
.events-card-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.55) 0%, rgba(201, 169, 97, 0.05) 100%);
    margin: 0 0 18px;
}
.events-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.events-card-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(245, 240, 230, 0.85);
    font-size: 0.92rem;
    line-height: 1.55;
}
.events-card-bullet {
    color: var(--accent-gold);
    font-size: 0.85rem;
    line-height: 1.55;
}
.events-card-list strong {
    color: var(--text-cream);
    font-weight: 600;
}
.events-card-include {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed rgba(201, 169, 97, 0.3);
    color: rgba(245, 240, 230, 0.55);
    font-style: italic;
    font-size: 0.86rem;
    line-height: 1.5;
}
.events-card-include + .events-card-include {
    margin-top: 8px;
    padding-top: 0;
    border-top: 0;
}

@media (max-width: 700px) {
    .events-cards { grid-template-columns: 1fr; gap: 16px; }
    .events-card { padding: 24px 20px 20px; }
    .events-card-title { font-size: 1.3rem; }
}

/* Catering / Pomeni inside the a-la-carte template */
.meniu-events-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(245, 240, 230, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 18px;
    transition: color 0.2s ease;
}
.meniu-events-back:hover { color: var(--accent-gold); }

.meniu-events-section {
    margin-bottom: 28px;
}
.meniu-events-section .meniu-items { padding: 4px 0 0; }

.meniu-item-events .meniu-item-name {
    color: var(--accent-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
/* Events/Pomeni items always show their description — no hover required */
.meniu-item-events .meniu-item-detail {
    padding-left: 0;
    margin-top: 6px;
    max-height: none;
    opacity: 1;
    overflow: visible;
}
.meniu-item-events .meniu-item-ingredients {
    color: rgba(245, 240, 230, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
    font-style: normal;
}

.meniu-events-footer {
    margin-top: 12px;
    padding: 10px 14px;
    border-left: 2px solid rgba(201, 169, 97, 0.45);
    color: rgba(245, 240, 230, 0.6);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.5;
}

.meniu-events-cta-block {
    margin-top: 26px;
    padding: 22px 22px 24px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
}
.meniu-events-cta-block p {
    color: rgba(245, 240, 230, 0.72);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0 0 16px;
}
.meniu-events-cta-block a:not(.meniu-sub-cta) {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px dashed rgba(201, 169, 97, 0.4);
}
.meniu-events-cta-block a:not(.meniu-sub-cta):hover {
    border-bottom-color: var(--accent-gold);
}

/* Sub-pages (Catering / Pomeni) */
.meniu-sub-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    color: var(--text-cream);
}
.meniu-sub-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(245, 240, 230, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 26px;
    transition: color 0.2s ease;
}
.meniu-sub-back:hover { color: var(--accent-gold); }
.meniu-sub-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 400;
    margin: 8px 0 18px;
    line-height: 1.12;
}
.meniu-sub-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(245, 240, 230, 0.85);
    margin: 0 0 22px;
}
.meniu-sub-body {
    color: rgba(245, 240, 230, 0.65);
    line-height: 1.6;
    margin: 0 0 32px;
    font-size: 0.95rem;
}
.meniu-sub-body a { color: var(--accent-gold); text-decoration: none; }
.meniu-sub-body a:hover { text-decoration: underline; }
.meniu-sub-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid rgba(201, 169, 97, 0.5);
    border-radius: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.meniu-sub-cta:hover {
    background: rgba(201, 169, 97, 0.12);
    border-color: var(--accent-gold);
}

/* =================== SUBSCRIBE BANNER (slides up bottom) =================== */
.subscribe-overlay {
    position: fixed;
    inset: 0;
    z-index: 1099;
    background: rgba(10, 6, 2, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    cursor: pointer;
}
.subscribe-banner {
    position: fixed;
    left: 50%;
    top: 50%;
    /* Centering on both axes is handled by framer-motion via x/y -50%,
       so its scale/opacity transitions don't wipe out our centering transform. */
    z-index: 1100;
    width: min(480px, calc(100vw - 24px));
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(135deg, rgba(28, 20, 10, 0.96) 0%, rgba(50, 32, 16, 0.96) 100%);
    border: 1px solid rgba(201, 169, 97, 0.45);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 28px 24px 22px;
    color: #f5efe3;
    font-family: var(--font-body, Georgia, serif);
    text-align: center;
}
.subscribe-banner-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 169, 97, 0.25);
    color: rgba(245, 240, 230, 0.7);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    z-index: 2;
}
.subscribe-banner-close:hover {
    background: rgba(201, 169, 97, 0.18);
    border-color: rgba(201, 169, 97, 0.55);
    color: #f5efe3;
}

/* Stacked layout: head on top, form below */
.subscribe-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 4px; /* room for the absolute X */
}
.subscribe-banner-head { text-align: center; }
.subscribe-banner-eyebrow {
    color: var(--accent-gold, #c9a961);
    font-size: 0.66rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: Arial, Helvetica, sans-serif;
}
.subscribe-banner-head h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
    margin: 0 0 6px;
    color: #f5efe3;
    line-height: 1.18;
}
.subscribe-banner-head p {
    margin: 0;
    color: rgba(245, 240, 230, 0.62);
    font-size: 0.88rem;
    line-height: 1.5;
}

.subscribe-banner-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.subscribe-banner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.subscribe-banner-row.subscribe-banner-row-single {
    grid-template-columns: 1fr;
}
.subscribe-banner-form input[type="text"],
.subscribe-banner-form input[type="email"],
.subscribe-banner-form input[type="tel"] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 169, 97, 0.30);
    border-radius: 8px;
    padding: 11px 14px;
    color: #f5efe3;
    font: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
    width: 100%;
}
.subscribe-banner-form input::placeholder { color: rgba(245, 240, 230, 0.45); }
.subscribe-banner-form input:focus {
    border-color: var(--accent-gold, #c9a961);
    background: rgba(255, 255, 255, 0.10);
}
.subscribe-banner-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none;
}
.subscribe-banner-btn {
    background: linear-gradient(180deg, #c9a961 0%, #a07c54 100%);
    color: #2a1f10;
    border: 0;
    border-radius: 8px;
    padding: 13px 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.18s, transform 0.18s;
}
.subscribe-banner-btn:hover:not(:disabled) { filter: brightness(1.10); }
.subscribe-banner-btn:disabled { opacity: 0.5; cursor: default; }

.subscribe-banner-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(245, 240, 230, 0.72);
    font-size: 0.78rem;
    line-height: 1.55;
    cursor: pointer;
    font-family: Georgia, serif;
    padding: 4px 0 2px;
    text-align: left;
}
.subscribe-banner-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 15px;
    height: 15px;
    accent-color: var(--accent-gold, #c9a961);
    flex-shrink: 0;
    cursor: pointer;
}
.subscribe-banner-consent strong { color: var(--accent-gold, #c9a961); font-weight: 600; }
.subscribe-banner-terms-link {
    color: var(--accent-gold, #c9a961);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.18s;
}
.subscribe-banner-terms-link:hover { color: #e0c989; }

/* Terms & conditions modal */
.subscribe-terms-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 6, 2, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.subscribe-terms-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(28, 20, 10, 0.98) 0%, rgba(50, 32, 16, 0.98) 100%);
    border: 1px solid rgba(201, 169, 97, 0.45);
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    padding: 30px 28px 22px;
    color: #f5efe3;
    font-family: Georgia, serif;
}
.subscribe-terms-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 169, 97, 0.25);
    color: rgba(245, 240, 230, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.subscribe-terms-close:hover {
    background: rgba(201, 169, 97, 0.18);
    border-color: rgba(201, 169, 97, 0.55);
    color: #f5efe3;
}
.subscribe-terms-eyebrow {
    color: var(--accent-gold, #c9a961);
    font-size: 0.66rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 6px;
}
.subscribe-terms-modal h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 0 14px;
    color: #f5efe3;
}
.subscribe-terms-body p {
    color: rgba(245, 240, 230, 0.78);
    line-height: 1.6;
    font-size: 0.92rem;
    margin: 0 0 12px;
}
.subscribe-terms-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.subscribe-terms-body li {
    position: relative;
    padding-left: 22px;
    color: rgba(245, 240, 230, 0.78);
    line-height: 1.55;
    font-size: 0.92rem;
    margin-bottom: 8px;
}
.subscribe-terms-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold, #c9a961);
    font-weight: bold;
}
.subscribe-terms-body strong { color: #f5efe3; }
.subscribe-terms-foot {
    font-size: 0.82rem !important;
    color: rgba(245, 240, 230, 0.55) !important;
    font-style: italic;
    border-top: 1px solid rgba(201, 169, 97, 0.18);
    padding-top: 12px;
    margin-top: 4px !important;
}
.subscribe-terms-ok {
    width: 100%;
    margin-top: 6px;
}

.subscribe-banner-result {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 4px;
}
.subscribe-banner-result svg { flex-shrink: 0; }
.subscribe-banner-result.is-ok  svg { color: #6fcc89; }
.subscribe-banner-result.is-err svg { color: #e09060; }
.subscribe-banner-result strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: #f5efe3;
    margin-bottom: 2px;
}
.subscribe-banner-result p {
    margin: 0;
    color: rgba(245, 240, 230, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile compactness for the /meniu chooser — head text + 3 cards in one viewport */
@media (max-width: 600px) {
    /* Lock the chooser page to a single viewport height, no scroll. */
    .meniu-chooser-layout {
        height: 100dvh !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }
    .meniu-chooser-layout .meniu-panel {
        overflow: hidden !important;
        flex: 1 1 auto;
        min-height: 0;
    }
    .meniu-chooser-layout .meniu-landing-footer {
        margin-top: 0;
        padding-top: 14px;
        gap: 6px;
    }
    .meniu-chooser-layout .meniu-landing-footer-row {
        font-size: 0.8rem;
    }

    .meniu-landing-head {
        margin-bottom: 12px;
    }
    .meniu-landing-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.22em;
        margin-bottom: 4px;
    }
    .meniu-landing-head h2 {
        font-size: 1.4rem;
        margin: 0 0 6px;
        line-height: 1.15;
    }
    .meniu-landing-head p {
        font-size: 0.82rem;
        line-height: 1.4;
        max-width: 100%;
    }

    .meniu-landing-cards {
        gap: 10px;
    }
    .meniu-landing-card {
        display: grid;
        grid-template-columns: 42px 1fr auto;
        grid-template-rows: auto auto;
        align-items: start;
        gap: 4px 12px;
        padding: 12px 14px;
    }
    .meniu-landing-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        grid-row: 1 / 3;
        align-self: center;
    }
    .meniu-landing-card h3 {
        grid-column: 2;
        font-size: 1.05rem;
        margin: 0;
        line-height: 1.15;
    }
    .meniu-landing-card p {
        grid-column: 2;
        display: block;
        font-size: 0.78rem;
        line-height: 1.4;
        margin: 0;
    }
    .meniu-landing-card-cta {
        grid-column: 3;
        grid-row: 1 / 3;
        align-self: center;
        margin-top: 0;
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 600px) {
    .subscribe-banner {
        padding: 22px 18px 16px;
        border-radius: 14px;
        width: calc(100vw - 16px);
    }
    .subscribe-banner-close {
        top: 8px;
        right: 8px;
        width: 36px;        /* bigger tap target on touch */
        height: 36px;
    }
    .subscribe-banner-inner {
        padding-top: 8px;
        gap: 14px;
    }
    .subscribe-banner-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 0.22em;
    }
    .subscribe-banner-head h3 {
        font-size: 1.2rem;
        line-height: 1.25;
    }
    .subscribe-banner-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .subscribe-banner-form input[type="text"],
    .subscribe-banner-form input[type="email"],
    .subscribe-banner-form input[type="tel"] {
        font-size: 16px;       /* prevents iOS auto-zoom on focus */
        padding: 12px 14px;
    }
    .subscribe-banner-consent {
        font-size: 0.78rem;
        line-height: 1.5;
        gap: 8px;
    }
    .subscribe-banner-consent input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }
    .subscribe-banner-btn {
        padding: 14px 16px;
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }
    .subscribe-banner-result {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-right: 30px;
    }
    .subscribe-banner-result strong { font-size: 1.15rem; }
}

/* Terms modal – mobile tweaks */
@media (max-width: 600px) {
    .subscribe-terms-overlay { padding: 12px; align-items: center; }
    .subscribe-terms-modal {
        max-width: 100%;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 24px 22px 18px;
        border-radius: 14px;
    }
    .subscribe-terms-close { top: 10px; right: 10px; width: 36px; height: 36px; }
    .subscribe-terms-modal h3 { font-size: 1.3rem; padding-right: 36px; }
    .subscribe-terms-body p, .subscribe-terms-body li { font-size: 0.88rem; }
}

/* ========================= COOKIE CONSENT ========================= */
.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 4000;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 880px;
    margin: 0 auto;
    padding: 16px 20px;
    background: rgba(13, 13, 13, 0.96);
    border: 1px solid #2a1f10;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    animation: cookie-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cookie-rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cookie-consent-text {
    margin: 0;
    flex: 1;
    color: #f5efe3;
    font-size: 0.84rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}
.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}
.cookie-btn-primary {
    background: #c9a961;
    color: #0d0d0d;
}
.cookie-btn-primary:hover { background: #d8bd7f; }
.cookie-btn-ghost {
    background: transparent;
    color: #c9a961;
    border-color: #a07c54;
}
.cookie-btn-ghost:hover { background: rgba(201, 169, 97, 0.12); }
.cookie-link {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #c9a961;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}
.cookie-link:hover { color: #d8bd7f; }

/* Privacy/cookies modal subheadings (reuses .subscribe-terms-* modal) */
.subscribe-terms-body .privacy-heading {
    margin: 18px 0 6px;
    color: #c9a961;
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-weight: 600;
}
.subscribe-terms-body .privacy-heading:first-child { margin-top: 0; }

/* "Confidențialitate" link in the nav overlay footer */
.nav-overlay-footer .nav-overlay-brand { display: flex; align-items: center; gap: 8px; }
.nav-overlay-privacy {
    background: none;
    border: none;
    padding: 0;
    color: #a07c54;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease;
}
.nav-overlay-privacy:hover { color: #c9a961; }

/* Privacy/cookies modal: sit ABOVE the cookie banner (z-index 4000), wider on
   desktop, with a scrollable body so long text is never cut off. */
.privacy-overlay { z-index: 4500; }
.privacy-modal { max-width: 720px; }
.privacy-modal .subscribe-terms-body {
    max-height: 58vh;
    overflow-y: auto;
    padding-right: 8px;
}
@media (max-width: 640px) {
    .privacy-modal .subscribe-terms-body { max-height: 64vh; }
}

@media (max-width: 640px) {
    .cookie-consent {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px 16px;
    }
    .cookie-consent-actions { justify-content: flex-end; }
}
