﻿/* ==========================================
   Theme Tokens
   ========================================== */
:root {
    --primary: #8c6a45;
    --primary-dark: #3f2a1d;
    --accent: #b89a68;
    --accent-soft: #f4ead9;
    --header-height: 72px;
    --surface: #fbf6ee;
    --surface-muted: #f1e7d8;
    --border-soft: #cdb492;
    --shadow-soft: 0 12px 28px rgba(36, 24, 16, 0.08);
    --shadow-medium: 0 18px 40px rgba(36, 24, 16, 0.12);
    --gray-100: #f7f7f7;
    --gray-200: #e5e5e5;
    --gray-600: #6e5a45;
    --gray-900: #24170f;
    --success: #059669;
    --danger: #dc2626;
    --warning: #d97706;
    --font-sans: "Source Sans 3", system-ui, sans-serif;
    --font-display: "Playfair Display", "Times New Roman", serif;
    --bg-tint: #f3eadc;
    --sepia-ink: #4a3121;
    --sepia-muted: #876847;
    --sepia-line: rgba(101, 73, 47, 0.18);
    --sepia-glow: rgba(139, 106, 69, 0.18);
    --cream-panel: rgba(251, 246, 238, 0.94);
    --gold-highlight: #f8f0de;
    --gold-wash: rgba(184, 154, 104, 0.16);
    --premium-shadow: 0 18px 38px rgba(74, 49, 33, 0.16);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-tint);
    color: #1f2937;
    line-height: 1.6;
    padding-top: var(--header-height);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, .logo h1 {
    font-family: var(--font-display);
    letter-spacing: 0.2px;
}

/* Layout Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================
   Header
   ========================================== */
.site-header {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.logo a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    display: inline-flex;
    align-items: center;
}

.logo img {
    display: block;
    width: auto;
    height: 54px;
    max-width: min(320px, 56vw);
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 8px 18px rgba(36, 24, 16, 0.14));
}

.topnav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.topnav-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 248, 236, 0.28);
    background: rgba(34, 24, 20, 0.12);
    color: #fff9f0;
    border-radius: 10px;
    padding: 0;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(36, 24, 16, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-toggle-icon {
    width: 1rem;
    height: 1rem;
    position: relative;
    display: inline-block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle-icon::before {
    top: 3px;
}

.nav-toggle-icon::after {
    top: 9px;
}

.topnav.open .nav-toggle-icon::before {
    top: 6px;
    transform: rotate(45deg);
}

.topnav.open .nav-toggle-icon::after {
    top: 6px;
    transform: rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.nav-backdrop[hidden] {
    display: none !important;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(28, 20, 16, 0.12);
    padding: 4px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(74, 49, 33, 0.1);
    border: 1px solid rgba(255, 247, 235, 0.14);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 246, 235, 0.72);
    background: transparent;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid transparent;
    text-shadow: 0 1px 10px rgba(15, 10, 7, 0.34);
}

.lang-btn img {
    width: 18px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.lang-btn:hover {
    color: #fffaf3;
    background: rgba(255, 250, 244, 0.14);
    border-color: rgba(255, 247, 235, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lang-btn:hover img,
.lang-btn:focus-visible img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-1px);
}

.lang-btn:focus-visible {
    outline: none;
    color: #fffaf3;
    border-color: rgba(255, 247, 235, 0.24);
    box-shadow: 0 0 0 4px rgba(255, 243, 222, 0.12);
}

.lang-btn.active {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(242, 231, 212, 0.94));
    color: var(--primary-dark);
    border-color: rgba(255, 247, 235, 0.28);
    box-shadow: 0 10px 20px rgba(74, 49, 33, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    text-shadow: none;
}

.lang-btn.active img {
    filter: grayscale(0%);
    opacity: 1;
}

.main-menu {
    display: flex;
    gap: 1.15rem;
    align-items: center;
    padding: 0.18rem;
    border-radius: 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.main-menu a {
    text-decoration: none;
    color: #fff8ef;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.62rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 247, 235, 0.12);
    background: rgba(34, 24, 20, 0.08);
    text-shadow: 0 1px 10px rgba(15, 10, 7, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    transform: translateY(0);
    transition: color 0.34s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1), transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--primary-dark);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(241, 230, 212, 0.95));
    border-color: rgba(255, 246, 231, 0.34);
    box-shadow: 0 12px 24px rgba(20, 14, 10, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    text-shadow: none;
    transform: translateY(-1px);
}

.main-menu a:focus-visible {
    outline: none;
    background: rgba(255, 249, 241, 0.92);
    border-color: rgba(255, 246, 231, 0.36);
    box-shadow: 0 0 0 4px rgba(255, 243, 222, 0.14), 0 12px 24px rgba(20, 14, 10, 0.16);
    text-shadow: none;
}

.cart-fab-count.pulse {
    animation: cartPulse 0.75s ease 2;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.28); }
    100% { transform: scale(1); }
}

.cart-fab {
    position: fixed;
    right: 1rem;
    bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px));
    border: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #f4e8d7 0%, #ead8bf 55%, #dcc4a5 100%);
    color: #4a3121;
    padding: 0.62rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    z-index: 1700;
    box-shadow: 0 16px 30px rgba(74, 49, 33, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.36);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-fab.is-hidden {
    display: none;
}

.cart-fab:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #f8efe2 0%, #efdfc8 55%, #e3ccaf 100%);
    box-shadow: 0 20px 34px rgba(74, 49, 33, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.cart-fab:active {
    transform: translateY(0) scale(0.98);
}

.cart-fab:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(111, 74, 49, 0.16), 0 20px 36px rgba(74, 49, 33, 0.28);
}

.cart-fab-label {
    font-size: 0.88rem;
    font-weight: 700;
}

.cart-fab-count {
    min-width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0 0.26rem;
}

.cart-fab-count.is-hidden {
    display: none;
}

.cart-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.5);
    z-index: 2300;
}

.cart-modal-backdrop[hidden] {
    display: none !important;
}

.cart-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(640px, calc(100vw - 2rem));
    max-height: min(82vh, 760px);
    background: var(--surface);
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    z-index: 2350;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    box-shadow: 0 24px 52px rgba(36, 24, 16, 0.18);
}

.cart-modal[hidden] {
    display: none !important;
}

.cart-modal-header,
.cart-modal-footer {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(194, 65, 12, 0.08);
}

.cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.cart-modal-footer {
    border-bottom: 0;
    border-top: 1px solid rgba(194, 65, 12, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.cart-modal-body {
    overflow-y: auto;
    min-height: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1.1rem;
}

.cart-modal-close {
    border: 1px solid rgba(194, 65, 12, 0.12);
    background: rgba(255, 255, 255, 0.82);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    color: #334155;
    margin-left: auto;
}

.cart-modal-close:hover {
    background: #fff;
    border-color: rgba(194, 65, 12, 0.18);
}

.cart-modal-close:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.12);
}

.cart-modal-item + .cart-modal-item {
    margin-top: 0.62rem;
}

.cart-modal-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.65rem;
    background: #fff;
}

.cart-modal-item img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-modal-item-main h3 {
    font-size: 0.95rem;
    margin-bottom: 0.18rem;
    line-height: 1.25;
}

.cart-modal-item-main p {
    font-size: 0.82rem;
    color: #64748b;
}

.cart-modal-item-main {
    min-width: 0;
}

.cart-modal-item-controls {
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.cart-modal-qty-btn {
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid #d7c9bd;
    border-radius: 10px;
    background: #fffdf9;
    cursor: pointer;
    font-weight: 700;
}

.cart-modal-qty-btn:hover {
    border-color: rgba(194, 65, 12, 0.2);
    background: #fff;
}

.cart-modal-qty-btn:active {
    transform: scale(0.97);
}

.cart-modal-qty-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.12);
}

.cart-modal-remove {
    border: 1px solid #f2c9c9;
    border-radius: 10px;
    background: #fff7f7;
    color: #991b1b;
    padding: 0.34rem 0.58rem;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
}

.cart-modal-remove:hover {
    background: #fff1f1;
    border-color: #eaa9a9;
}

.cart-modal-remove:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}

.cart-modal-item-subtotal {
    color: #0f172a;
    font-size: 0.84rem;
    text-align: right;
}

.cart-modal-total {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
}

.btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

body.cart-modal-open {
    overflow: hidden;
}
/* ==========================================
   Hero
   ========================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    height: 100svh;
    margin-top: calc(var(--header-height) * -1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.18), transparent 34%),
        radial-gradient(circle at 78% 24%, rgba(251, 191, 36, 0.16), transparent 24%),
        linear-gradient(145deg, rgba(21, 27, 37, 0.72), rgba(73, 37, 24, 0.66));
}

.hero-bg-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1s ease, transform 5.5s ease;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.28), rgba(15, 23, 42, 0.62)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 46%);
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 1rem 4rem;
    background: transparent;
    
    border-radius: 28px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.56);
    cursor: pointer;
    padding: 0;
}

.hero-dot.active {
    background: #fff;
}

.hero-title {
    font-size: clamp(3.2rem, 6vw, 5rem);
    margin-bottom: 1.1rem;
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-shadow: 0 8px 28px rgba(0,0,0,0.34);
}

.hero-subtitle {
    font-size: 1.12rem;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    opacity: 0.92;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.92rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.15;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(180deg, #f5eadb 0%, #ecdcc5 54%, #dfc7a9 100%);
    color: #4a3121;
    border-color: rgba(140, 106, 69, 0.3);
    box-shadow: 0 14px 26px rgba(74, 49, 33, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #faf1e6 0%, #f0e2cf 54%, #e5cfb5 100%);
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(74, 49, 33, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.btn-primary:active {
    transform: translateY(0) scale(0.99);
}

.btn-hero-primary {
    background: rgba(255, 251, 245, 0.1);
    color: #fffaf2;
    border-color: rgba(248, 236, 218, 0.58);
    box-shadow: 0 16px 30px rgba(20, 14, 10, 0.16), inset 0 1px 0 rgba(255, 248, 236, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero-primary:hover {
    background: linear-gradient(180deg, rgba(248, 239, 225, 0.22), rgba(226, 204, 172, 0.28));
    border-color: rgba(245, 232, 214, 0.74);
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(20, 14, 10, 0.2), inset 0 1px 0 rgba(255, 250, 242, 0.16);
}

.btn-hero-primary:active {
    transform: translateY(0) scale(0.99);
}

.btn-outline {
    background: linear-gradient(180deg, rgba(252, 247, 239, 0.96), rgba(241, 231, 214, 0.88));
    border: 1px solid rgba(101, 73, 47, 0.22);
    color: var(--sepia-ink);
    box-shadow: 0 12px 22px rgba(74, 49, 33, 0.1);
}

.btn-outline:hover {
    background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(245, 235, 217, 0.92));
    color: var(--primary-dark);
    border-color: rgba(111, 74, 49, 0.3);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(111, 74, 49, 0.12);
}
/* ==========================================
   About / Features
   ========================================== */
.features {
    padding: 6rem 0;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 24%),
        linear-gradient(180deg, #fff8f0 0%, #fdf7f1 100%);
}

.features h2 {
    text-align: center;
    font-size: clamp(2.3rem, 4vw, 3.3rem);
    margin-bottom: 2.2rem;
    letter-spacing: -0.03em;
    color: #221814;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.4rem;
    align-items: start;
    margin-bottom: 2rem;
}

.about-copy {
    min-width: 0;
    max-width: 100%;
    background: rgba(255, 252, 248, 0.88);
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid rgba(194, 65, 12, 0.08);
    box-shadow: var(--shadow-soft);
    font-size: 1.05rem;
    color: #43322b;
    overflow: hidden;
}

.about-copy,
.about-copy * {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
}

.about-copy * {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.about-copy p {
    margin: 0;
    white-space: normal;
}

.about-copy p + p,
.about-copy ul + p,
.about-copy ol + p,
.about-copy blockquote + p {
    margin-top: 0.9rem;
}

.about-copy h3,
.about-copy h4,
.about-copy div,
.about-copy li,
.about-copy ul,
.about-copy ol,
.about-copy blockquote,
.about-copy font,
.about-copy strong,
.about-copy em,
.about-copy u,
.about-copy span {
    white-space: normal;
}

.about-copy ul,
.about-copy ol {
    margin: 0.8rem 0;
    padding-left: 1.2rem;
}

.about-copy li + li {
    margin-top: 0.35rem;
}

.about-copy blockquote {
    margin: 0.8rem 0;
    padding-left: 1rem;
    border-left: 3px solid rgba(194, 65, 12, 0.25);
    color: #4b5563;
}

.about-copy img,
.about-copy svg,
.about-copy iframe,
.about-copy video {
    display: block;
    height: auto;
}

.about-photo {
    min-width: 0;
    width: 100%;
    align-self: start;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    min-height: 260px;
    max-height: 520px;
    aspect-ratio: 5 / 4;
    background: linear-gradient(145deg, #e8d4b3 0%, #f9f2e7 48%, #ede1ce 100%);
    position: relative;
    border: 1px solid rgba(111, 74, 49, 0.14);
    padding: 0;
}

.about-photo-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-photo-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.about-photo-slide.active {
    opacity: 1;
}

.about-photo-slider:not(.has-slider) .about-photo-slide {
    position: relative;
    opacity: 1;
    height: 100%;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    border-radius: 0;
}

.about-photo-dots {
    position: absolute;
    left: 50%;
    bottom: 0.8rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(91, 57, 35, 0.34);
    backdrop-filter: blur(8px);
}

.about-photo-dot {
    width: 0.68rem;
    height: 0.68rem;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 249, 243, 0.56);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.about-photo-dot.active {
    background: #fffaf4;
    transform: scale(1.15);
}

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

.about-cards {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}

.about-cards .feature-item {
    padding: 1.3rem 1rem;
}

.about-cards .feature-icon {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
}

.about-cards .feature-icon-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(194, 65, 12, 0.08));
    box-shadow: inset 0 0 0 1px rgba(194, 65, 12, 0.08);
}

.about-cards .feature-icon-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-cards .feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
}

.about-cards .feature-item p {
    font-size: 0.92rem;
}

.about-reviews {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 252, 248, 0.96), rgba(255, 247, 237, 0.92)),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 28%);
    border: 1px solid rgba(194, 65, 12, 0.1);
    box-shadow: var(--shadow-soft);
}

.about-reviews-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b45309;
}

.about-reviews-copy h3 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.15;
    color: #221814;
}

.about-reviews-copy p {
    margin: 0.55rem 0 0;
    max-width: 44rem;
    color: #5f4a3f;
}

.about-reviews-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.1rem;
    width: 100%;
}

.about-reviews-link {
    white-space: nowrap;
    display: flex;
    width: fit-content;
    margin: 1.25rem auto 0;
}

.about-reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(194, 65, 12, 0.08);
    justify-content: center;
}

.about-reviews-score {
    font-size: 2rem;
    font-weight: 700;
    color: #7c2d12;
    line-height: 1;
}

.about-reviews-meta p {
    margin: 0.18rem 0 0;
    color: #6b4f3f;
    font-size: 0.95rem;
}

.about-reviews-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.about-reviews-stars,
.review-card-stars {
    color: #d97706;
    letter-spacing: 0.12em;
}

.about-reviews-status {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.62);
    color: #6b4f3f;
    border: 1px dashed rgba(194, 65, 12, 0.16);
    text-align: center;
}

.about-reviews-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
}

.about-reviews-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(420px, calc(50% - 0.6rem));
    align-items: start;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0.2rem;
}

.about-reviews-grid::-webkit-scrollbar {
    display: none;
}

.about-reviews-nav {
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(194, 65, 12, 0.14);
    border-radius: 999px;
    background: rgba(255, 251, 245, 0.96);
    color: #b45309;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(74, 49, 33, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-reviews-nav:hover,
.about-reviews-nav:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(180, 83, 9, 0.26);
    box-shadow: 0 14px 26px rgba(74, 49, 33, 0.14);
}

.about-reviews-nav:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.review-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem 1.2rem;
    align-items: start;
    padding: 1.15rem 0.9rem 1.15rem 1.15rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 245, 0.9));
    border: 1px solid rgba(194, 65, 12, 0.1);
    box-shadow: 0 14px 32px rgba(36, 24, 16, 0.07);
    scroll-snap-align: start;
}

.review-card-main {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 0;
    min-height: 0;
    padding-right: 0.15rem;
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.review-card-author,
.review-card-author a {
    font-weight: 700;
    color: #2f211b;
    text-decoration: none;
}

.review-card-author a:hover {
    color: #9a3412;
}

.review-card-body {
    flex: 1 1 auto;
    min-height: 0;
}

.review-card-text {
    margin: 0;
    color: #4a382f;
    line-height: 1.7;
}

.review-card-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.9rem;
    min-width: 112px;
    align-self: start;
    padding-top: 0.05rem;
}

.review-source-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.95));
    border: 1px solid rgba(194, 65, 12, 0.12);
    color: #5f4a3f;
    width: 2.2rem;
    height: 2.2rem;
}

.review-source-badge-full {
    gap: 0.45rem;
    width: auto;
    height: auto;
    padding: 0.45rem 0.75rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.review-card-source-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.review-card-date {
    margin: 0;
    font-size: 0.92rem;
    color: #8b6b59;
    text-align: right;
}

.feature-item {
    background: rgba(255, 252, 248, 0.92);
    padding: 2.1rem 1.7rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(194, 65, 12, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(194, 65, 12, 0.16);
    box-shadow: var(--shadow-medium);
}

.feature-item:focus-within {
    border-color: rgba(194, 65, 12, 0.16);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    filter: saturate(0.92);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ==========================================
   Gallery
   ========================================== */
.gallery {
    padding: 6rem 0;
    background:
        linear-gradient(180deg, rgba(255, 248, 241, 0.66), rgba(255, 252, 248, 0.92));
}

.gallery h2 {
    text-align: center;
    font-size: clamp(2.3rem, 4vw, 3.3rem);
    margin-bottom: 2.4rem;
    letter-spacing: -0.03em;
    color: #221814;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(194, 65, 12, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    aspect-ratio: 4 / 3;
    background: #fffdf9;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(194, 65, 12, 0.16);
    box-shadow: var(--shadow-medium);
}

.gallery-item:focus-within {
    border-color: rgba(194, 65, 12, 0.16);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 0.45s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: saturate(1.03);
}

.gallery-item figcaption {
    padding: 0.72rem 0.9rem;
    font-size: 0.9rem;
    color: #43322b;
    border-top: 1px solid rgba(194, 65, 12, 0.08);
    background: rgba(255, 252, 248, 0.96);
}

.contacts-section {
    padding: 5.5rem 0;
    background:
        radial-gradient(circle at top right, rgba(184, 154, 104, 0.14), transparent 24%),
        linear-gradient(180deg, #fdfaf4 0%, #f5ecdf 100%);
}

.contacts-section h2 {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: #221814;
}

.contacts-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
    gap: 1rem;
}

.contacts-info-card,
.contacts-map-card {
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(244, 234, 217, 0.92));
    border: 1px solid rgba(101, 73, 47, 0.14);
    border-radius: 20px;
    box-shadow: var(--premium-shadow);
}

.contacts-info-card {
    padding: 1.2rem;
}

.contact-row + .contact-row {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(111, 74, 49, 0.1);
}

.contact-row h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: #352116;
    font-weight: 700;
}

.contact-row p {
    color: #b45309;
}

.contact-row p a {
    font-weight: 600;
    color: #b45309;
}

.contact-temp-closed {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border: 1px solid #f5b2b2;
    background: #ffd9d9;
    color: #8f1111;
    border-radius: 12px;
    padding: 0.28rem 0.62rem;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 0.45rem;
    box-shadow: 0 8px 18px rgba(185, 28, 28, 0.08);
}

.contact-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 100%;
    align-items: flex-start;
}

.contact-hours-list li {
    display: inline-grid;
    grid-template-columns: 2.4rem max-content;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    border: 1px solid rgba(111, 74, 49, 0.12);
    background: linear-gradient(180deg, rgba(255, 252, 247, 1), rgba(246, 237, 221, 0.9));
    border-radius: 10px;
    padding: 0.34rem 0.5rem;
    width: fit-content;
    max-width: 100%;
}

.contact-hours-list .day {
    color: #352116;
    font-weight: 600;
    width: 2.4rem;
}

.contact-hours-list .hours {
    color: #b45309;
    text-align: left;
    flex: 0 0 auto;
    white-space: nowrap;
}

.contact-row a {
    color: #b45309;
    text-decoration: none;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    border: 1px solid rgba(111, 74, 49, 0.14);
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(244, 234, 217, 0.92));
    border-radius: 12px;
    padding: 0.38rem 0.68rem;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--sepia-ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(111, 74, 49, 0.24);
    background: linear-gradient(180deg, rgba(255, 251, 244, 1), rgba(238, 223, 196, 0.94));
    box-shadow: 0 14px 26px rgba(74, 49, 33, 0.14);
    color: var(--primary-dark);
}

.social-link:hover .social-icon,
.social-link:focus-visible .social-icon {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.social-facebook .social-icon {
    background: #1877f2;
}

.social-instagram .social-icon {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 78%, #515bd4 100%);
}

.social-tiktok .social-icon {
    background: #000000;
}

.contacts-map-card iframe {
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 340px;
    border-radius: 14px;
}

.contact-message-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(111, 74, 49, 0.18);
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(244, 234, 217, 0.92));
    color: var(--primary-dark);
    border-radius: 12px;
    padding: 0.62rem 0.9rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    margin-top: 0.65rem;
}

.contact-message-trigger:hover,
.contact-message-trigger:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(111, 74, 49, 0.28);
    background: linear-gradient(180deg, rgba(255, 251, 244, 1), rgba(239, 226, 203, 0.94));
    box-shadow: 0 16px 30px rgba(74, 49, 33, 0.16);
}

.contact-message-icon {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(180, 83, 9, 0.12);
    color: #b45309;
}

.contact-email-note {
    margin: 0;
    font-size: 0.88rem;
    color: #5f4b3d;
}

.contact-form-success-banner {
    margin: 0 auto 1.1rem;
    max-width: 42rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #166534;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(22, 101, 52, 0.08);
}

.contact-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-modal-backdrop[hidden] {
    display: none;
}

.contact-modal {
    position: relative;
    width: min(100%, 680px);
    max-height: min(88vh, 860px);
    overflow-y: auto;
    background: rgba(255, 252, 248, 0.96);
    border: 1px solid rgba(194, 65, 12, 0.1);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
    padding: 1.35rem;
}

.contact-modal-header {
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.contact-modal-header h3 {
    margin: 0;
    font-size: 1.45rem;
    color: #111827;
}

.contact-modal-header p {
    margin: 0.35rem 0 0;
    color: #6b7280;
}

.contact-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 2.3rem;
    height: 2.3rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #374151;
    font-size: 1.45rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
    background: rgba(15, 23, 42, 0.12);
    transform: rotate(90deg);
}

.contact-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.contact-modal-form .form-group {
    margin-bottom: 0.9rem;
}

.contact-modal-form input,
.contact-modal-form textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #fff;
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
    font: inherit;
    color: #0f172a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-modal-form textarea {
    resize: vertical;
    min-height: 10rem;
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
    outline: none;
    border-color: rgba(194, 65, 12, 0.28);
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.12);
}

.contact-modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.1rem;
}

.form-legal-note {
    font-size: 0.92rem;
    color: var(--gray-600);
}

.form-legal-note a {
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-form-errors {
    margin-bottom: 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.contact-form-errors p {
    margin: 0;
}

.contact-form-errors p + p {
    margin-top: 0.4rem;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body.contact-modal-open {
    overflow: hidden;
}

@media (max-width: 720px) {
    .contact-modal {
        padding: 1.05rem;
        border-radius: 18px;
    }

    .contact-modal-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 3000;
}

.lightbox-backdrop[hidden] {
    display: none;
}

.lightbox-backdrop img {
    max-width: min(1200px, 96vw);
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 12px 44px rgba(0,0,0,0.35);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-nav.is-hidden {
    display: none;
}

.lightbox-close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
}

body.lightbox-open {
    overflow: hidden;
}

.scroll-top-btn {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 3.15rem;
    height: 3.15rem;
    border: 1px solid rgba(140, 106, 69, 0.24);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(247, 238, 226, 0.98), rgba(234, 219, 197, 0.96));
    color: #4a3121;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    z-index: 1600;
    box-shadow: 0 18px 32px rgba(74, 49, 33, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scroll-top-btn:hover {
    background: linear-gradient(180deg, rgba(251, 244, 235, 1), rgba(240, 227, 207, 0.98));
    color: #3f2a1d;
    border-color: rgba(140, 106, 69, 0.3);
    box-shadow: 0 22px 38px rgba(74, 49, 33, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.scroll-top-btn:active {
    transform: translateY(0) scale(0.96);
}

.scroll-top-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(239, 227, 212, 0.32), 0 20px 34px rgba(91, 57, 35, 0.16);
}

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

body.nav-open .scroll-top-btn,
body.lightbox-open .scroll-top-btn,
body.cart-modal-open .scroll-top-btn {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================
   Page Intro
   ========================================== */
.page-header {
    text-align: center;
    margin-bottom: 2.6rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.7rem;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #221814;
}

.page-subtitle {
    color: #6c564b;
    font-size: 1.03rem;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}


.menu-ordering-note {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-top: 0.7rem;
    padding: 0.44rem 0.82rem;
    border: 1px solid rgba(194, 65, 12, 0.18);
    border-radius: 12px;
    background: #ffe9d1;
    color: #8c3414;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 8px 18px rgba(194, 65, 12, 0.1);
}

.empty-state,
.empty-cart {
    background: rgba(255, 252, 248, 0.94);
    border: 1px solid rgba(194, 65, 12, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.empty-state h3,
.empty-cart p {
    margin-bottom: 0.9rem;
}

/* ==========================================
   Menu Page
   Cards, Categories, Cart Modal
   ========================================== */
.menu-page {
    padding: 4.4rem 0 6rem;
    padding-inline: 0.5rem;
    background: linear-gradient(180deg, #fdfaf5 0%, #f6eee2 100%);
}

.page-title {
    text-align: center;
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    margin-bottom: 3rem;
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: #221814;
}

.menu-category {
    margin-bottom: 5rem;
}

.menu-category-head,
.reserve-dishes-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.menu-category-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.65rem;
    margin: 0 auto 2.2rem;
    max-width: 980px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(194, 65, 12, 0.35) transparent;
    -webkit-overflow-scrolling: touch;
}

.menu-category-nav::-webkit-scrollbar {
    height: 8px;
}

.menu-category-nav::-webkit-scrollbar-thumb {
    background: rgba(194, 65, 12, 0.28);
    border-radius: 999px;
}

.menu-category-nav::-webkit-scrollbar-track {
    background: transparent;
}

.menu-category-chip,
.menu-category-toggle,
.reserve-category-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.52rem 0.82rem;
    border: 1px solid rgba(111, 74, 49, 0.16);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(243, 233, 215, 0.92));
    color: #b45309;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 10px 18px rgba(74, 49, 33, 0.1);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    flex: 0 0 auto;
}

.menu-category-chip:hover,
.menu-category-toggle:hover,
.reserve-category-toggle:hover {
    background: linear-gradient(180deg, rgba(255, 251, 244, 1), rgba(236, 220, 193, 0.94));
    border-color: rgba(111, 74, 49, 0.24);
    color: var(--primary-dark);
    box-shadow: 0 12px 24px rgba(74, 49, 33, 0.12);
    transform: translateY(-1px);
}

.menu-category-chip:focus-visible,
.menu-category-toggle:focus-visible,
.reserve-category-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(111, 74, 49, 0.12), 0 12px 22px rgba(91, 57, 35, 0.1);
}

.category-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 2rem;
    color: #b45309;
    position: relative;
    display: block;
    text-align: center;
}

.category-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #b45309;
}

.menu-category-head .category-title,
.reserve-dishes-category-head .reserve-dishes-category-title {
    margin-bottom: 0;
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    padding-inline: 0.45rem;
}

.menu-card {
    background: #fffdfa;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(111, 74, 49, 0.22);
    box-shadow: var(--shadow-medium);
}

.menu-card:focus-within {
    border-color: rgba(111, 74, 49, 0.22);
    box-shadow: var(--shadow-medium);
}

.menu-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f9f2e8;
}

.menu-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.08);
}

.menu-card-content {
    padding: 1.25rem 1.1rem 1.05rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dish-name {
    font-size: 1.26rem;
    margin-bottom: 0.58rem;
    color: #24170f;
}

.dish-description {
    color: #4b382d;
    margin-bottom: 0.7rem;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.45;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.18rem;
    font-weight: 700;
    color: #b45309;
}

.btn-add {
    background: linear-gradient(180deg, #f5eadb 0%, #ecdcc5 54%, #dfc7a9 100%);
    color: #4a3121;
    border: none;
    padding: 0.72rem 1.04rem;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.9rem;
    box-shadow: 0 14px 24px rgba(74, 49, 33, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-add:hover {
    background: linear-gradient(180deg, #faf1e6 0%, #f0e2cf 54%, #e5cfb5 100%);
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(74, 49, 33, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.btn-add:active {
    transform: translateY(0) scale(0.99);
}

.flash-success {
    background: rgba(16, 185, 129, 0.22);
    border-color: rgba(16, 185, 129, 0.72);
    color: #065f46;
}

.flash-modal {
    position: fixed;
    top: calc(var(--header-height) + 0.6rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2200;
    width: min(94vw, 460px);
    pointer-events: none;
}

.flash-modal-card {
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.22);
    border: 1px solid transparent;
    text-align: center;
    font-weight: 700;
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
}

.flash-modal.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.in-cart-badge {
    margin-bottom: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    border-radius: 12px;
    border: 1px solid #53d78a;
    background: linear-gradient(135deg, #d9ffe8, #baf7cf);
    color: #064e3b;
    padding: 0.34rem 0.7rem;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 20px rgba(6, 95, 70, 0.12);
}
.in-cart-badge::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #16a34a;
    box-shadow: 0 0 0 2px #93f5b2;
}

.menu-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.is-hidden {
    display: none !important;
}

.menu-qty-panel {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.qty-mini-btn {
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid #d8c2af;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 1), rgba(245, 236, 220, 0.92));
    font-weight: 700;
    cursor: pointer;
}

.qty-mini-btn:hover,
.qty-btn:hover {
    background: linear-gradient(180deg, rgba(255, 251, 245, 1), rgba(237, 224, 199, 0.92));
    border-color: rgba(111, 74, 49, 0.24);
}

.qty-mini-btn:active,
.qty-btn:active {
    transform: scale(0.97);
}

.qty-mini-btn:focus-visible,
.qty-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(111, 74, 49, 0.12);
}

.qty-mini-value {
    min-width: 1.7rem;
    text-align: center;
    font-weight: 700;
}

.btn-go-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(111, 74, 49, 0.24);
    border-radius: 14px;
    padding: 0.62rem 0.9rem;
    background: linear-gradient(180deg, rgba(255, 252, 248, 1), rgba(248, 240, 228, 0.97));
    color: #745437;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(74, 49, 33, 0.1);
}

.btn-go-order:hover {
    background: linear-gradient(180deg, rgba(255, 253, 249, 1), rgba(243, 232, 214, 1));
    border-color: rgba(140, 106, 69, 0.24);
    color: var(--primary-dark);
    box-shadow: 0 12px 24px rgba(74, 49, 33, 0.14);
}

.btn-go-order:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(111, 74, 49, 0.12), 0 12px 22px rgba(91, 57, 35, 0.1);
}


.cart-page {
    padding: 2.4rem 0 3.8rem;
    max-width: 1160px;
    margin: 0 auto;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.35fr);
    grid-template-areas: "summary items";
    gap: 1rem;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.cart-items {
    grid-area: items;
    min-width: 0;
}

.cart-table-wrap {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead th {
    text-align: left;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #64748b;
    padding: 0.82rem 0.9rem;
    background: #fbf6ef;
    border-bottom: 1px solid rgba(194, 65, 12, 0.08);
}

.cart-table tbody td {
    padding: 0.78rem 0.9rem;
    border-bottom: 1px solid rgba(194, 65, 12, 0.05);
    vertical-align: middle;
}

.cart-table tbody tr:last-child td {
    border-bottom: 0;
}

.cart-item-cell {
    display: flex;
    align-items: center;
    gap: 0.58rem;
    min-width: 190px;
}

.cart-item-image {
    width: 72px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-info h3 {
    font-size: 0.92rem;
    line-height: 1.25;
    margin: 0;
}

.price-per-unit {
    font-size: 0.84rem;
    color: #475569;
    white-space: nowrap;
}

.qty-form {
    display: inline-flex;
    align-items: center;
    gap: 0.26rem;
}

.qty-btn {
    width: 1.95rem;
    height: 1.95rem;
    border: 1px solid #dccfc4;
    border-radius: 9px;
    background: #fffdf9;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.88rem;
}

.qty-display {
    min-width: 1.35rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
}

.cart-item-subtotal {
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    font-size: 0.9rem;
}

.remove-form {
    margin: 0;
}

.btn-remove {
    border: 1px solid #f2c9c9;
    background: #fff7f7;
    color: #b91c1c;
    border-radius: 12px;
    padding: 0.42rem 0.68rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-remove:hover {
    background: #fff1f1;
    border-color: #eaa9a9;
}

.btn-remove:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}

.cart-summary {
    grid-area: summary;
    margin-top: 0;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 1.35rem;
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    max-height: none;
    display: block;
}

.summary-head {
    margin-bottom: 1rem;
}

.summary-head h2 {
    font-size: 1.55rem;
    line-height: 1.05;
}

.summary-kicker {
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9a3412;
}

.summary-card {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #fff8f1);
    border: 1px solid rgba(194, 65, 12, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    margin-bottom: 0.95rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.is-muted {
    opacity: 0.68;
}

.summary-row.is-hidden {
    display: none;
}

.summary-row-total {
    padding-top: 0.8rem;
    margin-top: 0.1rem;
    border-top: 1px solid rgba(194, 65, 12, 0.12);
    font-size: 1.1rem;
}

.summary-note {
    margin-top: 0.9rem;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    background: rgba(194, 65, 12, 0.08);
    color: #7c2d12;
    font-size: 0.9rem;
}

.summary-note.is-hidden {
    display: none;
}

.summary-rules {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.summary-rule-chip {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem 0.9rem;
    border-radius: 15px;
    background: rgba(255, 251, 247, 0.92);
    border: 1px solid rgba(194, 65, 12, 0.08);
    font-size: 0.9rem;
}


.order-form {
    display: grid;
    gap: 0.75rem;
}

.order-form-scroll {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
    overflow: visible;
    padding-right: 0;
}

.order-submit-row {
    position: static;
    background: transparent;
    border-top: 0;
    margin-top: 0.2rem;
    padding-top: 0;
}

.form-group-half {
    grid-column: span 1;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group-compact input {
    max-width: 300px;
}

.delivery-address-field {
    min-height: 52px;
    max-height: 96px;
}

.reserve-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    display: grid;
    gap: 0.9rem;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 24%),
        linear-gradient(145deg, #191f2a, #2b1e19 72%, #3a271f);
    color: white;
    padding: 4.8rem 0 2.4rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.4rem 2rem;
}

.footer-link-button {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: #f1ddca;
    font: inherit;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links {
    display: flex;
    gap: 1.4rem;
    padding-right: 4rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f1ddca;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
    color: #fff8ef;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
    color: #fff8ef;
}

.cookie-consent-banner {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.7rem;
    z-index: 1300;
    pointer-events: none;
}

.cookie-consent-card {
    width: fit-content;
    max-width: calc(100vw - 1.5rem);
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    padding: 0.46rem 0.58rem;
    border-radius: 12px;
    background: rgba(24, 19, 15, 0.42);
    color: #fff9f1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(16, 12, 8, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: auto;
}

.cookie-consent-copy {
    flex: 0 1 auto;
    min-width: 0;
    max-width: none;
}

.cookie-consent-copy p {
    margin-top: 0;
    font-size: 0.8rem;
    line-height: 1.2;
    color: rgba(255, 249, 241, 0.84);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cookie-consent-actions,
.cookie-modal-actions,
.consent-embed-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.32rem;
}

.cookie-consent-actions {
    flex: 0 0 auto;
    align-items: center;
    white-space: nowrap;
}

.cookie-consent-actions .btn,
.cookie-consent-actions .btn-ghost {
    min-height: 28px;
    padding: 0.34rem 0.56rem;
    font-size: 0.72rem;
    line-height: 1;
    border-radius: 10px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.5rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff8ef;
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-decoration: none;
    cursor: pointer;
}

.cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1350;
    background: rgba(18, 13, 9, 0.58);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-backdrop[hidden] {
    display: none !important;
}

.cookie-modal {
    position: relative;
    width: min(760px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(248, 240, 228, 0.98));
    border: 1px solid rgba(101, 73, 47, 0.18);
    box-shadow: 0 30px 80px rgba(37, 24, 14, 0.24);
    padding: 1.6rem;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 0;
    background: rgba(111, 74, 49, 0.08);
    color: var(--primary-dark);
    font-size: 1.4rem;
    cursor: pointer;
}

.cookie-modal-header p {
    margin-top: 0.65rem;
    color: var(--gray-600);
}

.cookie-modal-groups {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.cookie-modal-actions {
    margin-top: 1.35rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.cookie-modal-actions .btn {
    min-height: 44px;
    padding: 0.78rem 1rem;
    border-radius: 12px;
}

.cookie-modal-accept-all {
    position: relative;
    overflow: hidden;
    padding-inline: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, #fff3d9 0%, #efd3a1 52%, #d9b27a 100%);
    color: #3f2a1d;
    border-color: rgba(140, 106, 69, 0.34);
    box-shadow: 0 18px 34px rgba(140, 106, 69, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.cookie-modal-accept-all::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 58%);
    pointer-events: none;
}

.cookie-modal-accept-all:hover {
    background: linear-gradient(180deg, #fff7e6 0%, #f3dbb2 52%, #e1bc87 100%);
    color: #2f1e14;
    border-color: rgba(140, 106, 69, 0.42);
    box-shadow: 0 22px 40px rgba(140, 106, 69, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.cookie-modal-accept-all:focus-visible {
    box-shadow: 0 0 0 4px rgba(255, 225, 168, 0.3), 0 22px 40px rgba(140, 106, 69, 0.24);
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(101, 73, 47, 0.12);
}

.cookie-option-copy {
    max-width: 560px;
}

.cookie-option-copy h3 {
    margin-bottom: 0.3rem;
}

.cookie-option-copy p {
    color: var(--gray-600);
}

.cookie-option-toggle {
    white-space: nowrap;
    font-weight: 700;
    color: var(--primary-dark);
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-switch-ui {
    width: 56px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(231, 216, 196, 0.9), rgba(217, 198, 171, 0.92));
    box-shadow: inset 0 0 0 1px rgba(140, 106, 69, 0.14);
    transition: background 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.cookie-switch-ui::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fffdfa, #f7f0e5);
    box-shadow: 0 4px 12px rgba(74, 49, 33, 0.16);
    transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch-ui {
    background: linear-gradient(135deg, #f4dfb8, #ddb476);
    box-shadow: inset 0 0 0 1px rgba(140, 106, 69, 0.22), 0 6px 16px rgba(191, 145, 75, 0.18);
}

.cookie-switch input:checked + .cookie-switch-ui::after {
    transform: translateX(24px);
}

.cookie-switch input:focus-visible + .cookie-switch-ui {
    box-shadow: 0 0 0 4px rgba(255, 225, 168, 0.22);
}

body.cookie-modal-open {
    overflow: hidden;
}

.consent-embed {
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(250, 242, 229, 0.92), rgba(239, 223, 198, 0.94));
    border: 1px solid rgba(101, 73, 47, 0.16);
}

.consent-embed-frame,
.consent-embed-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

.consent-embed-placeholder {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 2rem;
    color: var(--primary-dark);
}

.consent-embed-placeholder h3 {
    font-size: 1.9rem;
}

.privacy-page {
    padding: 3rem 0 1rem;
}

.privacy-hero {
    max-width: 840px;
    margin-bottom: 1.6rem;
}

.privacy-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    margin: 0.45rem 0 0.8rem;
    color: var(--primary-dark);
}

.privacy-lead,
.privacy-updated {
    color: var(--gray-600);
}

.privacy-alert {
    margin-bottom: 1.8rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255, 250, 238, 0.92);
    border: 1px solid rgba(217, 119, 6, 0.2);
    color: #7c4a03;
}

.privacy-alert p {
    margin-top: 0.35rem;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.privacy-toc {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    display: grid;
    gap: 0.7rem;
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.82);
    border: 1px solid rgba(101, 73, 47, 0.12);
    box-shadow: var(--shadow-soft);
}

.privacy-toc h2 {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.privacy-toc a {
    color: var(--sepia-ink);
    text-decoration: none;
}

.privacy-content {
    display: grid;
    gap: 1.2rem;
}

.privacy-section {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 251, 245, 0.84);
    border: 1px solid rgba(101, 73, 47, 0.12);
    box-shadow: var(--shadow-soft);
}

.privacy-section h2 {
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.privacy-section p + p,
.privacy-section ul + p {
    margin-top: 0.85rem;
}

.privacy-section ul {
    padding-left: 1.1rem;
    display: grid;
    gap: 0.55rem;
}

.privacy-table {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    border: 1px solid rgba(101, 73, 47, 0.14);
    border-radius: 18px;
    overflow: hidden;
}

.privacy-table > div {
    padding: 0.95rem;
    background: rgba(255, 255, 255, 0.72);
    border-right: 1px solid rgba(101, 73, 47, 0.1);
    border-bottom: 1px solid rgba(101, 73, 47, 0.1);
}

.privacy-table > div:nth-child(3n) {
    border-right: 0;
}

.privacy-table > div:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.inline-link-button {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--primary-dark);
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
    .hero {
        min-height: 88svh;
        height: 88svh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }

    .cart-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "summary"
            "items";
        max-width: 860px;
    }

    .cart-summary {
        position: static;
        max-width: 680px;
        margin: 0 auto;
        max-height: none;
    }

    .order-form-scroll {
        grid-template-columns: 1fr;
        overflow: visible;
        padding-right: 0;
    }

    .form-group-half,
    .form-group-full {
        grid-column: 1 / -1;
    }

    .form-group-compact input {
        max-width: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .container {
        padding: 0 1.05rem;
    }

    .header-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.55rem;
        padding: 0.62rem 0;
    }

    .logo {
        padding: 0;
    }

    .logo img {
        height: 42px;
        max-width: min(240px, 58vw);
    }
    
    .topnav {
        display: flex;
        justify-content: flex-end;
        width: auto;
        flex: 1;
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        width: 2.45rem;
        height: 2.45rem;
        border-radius: 12px;
        border-color: rgba(255, 248, 236, 0.26);
        background: rgba(34, 24, 20, 0.14);
        color: #fff8ef;
        box-shadow: 0 12px 24px rgba(36, 24, 16, 0.12);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .topnav.open .nav-toggle {
        background: rgba(255, 250, 244, 0.16);
        border-color: rgba(255, 248, 236, 0.3);
        box-shadow: 0 14px 24px rgba(15, 23, 42, 0.14);
    }

    .topnav-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-top: 0;
        gap: 0.95rem;
        padding: 1rem 1.05rem 1.15rem;
        background: rgba(23, 17, 13, 0.18);
        border: 1px solid rgba(255, 248, 236, 0.14);
        border-radius: 0;
        box-shadow: 0 18px 36px rgba(36, 24, 16, 0.12);
        backdrop-filter: blur(18px) saturate(135%);
        -webkit-backdrop-filter: blur(18px) saturate(135%);
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        max-height: calc(100dvh - var(--header-height));
        overflow-y: auto;
        z-index: 1200;
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .topnav.open .topnav-content {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-toggle {
        position: relative;
        z-index: 1250;
    }

    body.nav-open .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(2, 6, 23, 0.32);
        z-index: 950;
    }

    body.nav-open {
        overflow: hidden;
    }
    
    .main-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .lang-switcher {
        justify-content: center;
        gap: 0.45rem;
        padding: 0.28rem;
        padding-bottom: 0.9rem;
        border-bottom: 1px solid rgba(255, 248, 236, 0.16);
        transform: none;
        transform-origin: top center;
        border-radius: 14px;
        background: transparent;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .lang-btn {
        flex: 1;
        justify-content: center;
        padding: 0.5rem 0.65rem;
        font-size: 0.8rem;
        color: rgba(255, 246, 235, 0.82);
        background: rgba(255, 250, 244, 0.08);
        border-color: rgba(255, 248, 236, 0.14);
        text-shadow: 0 1px 10px rgba(15, 10, 7, 0.36);
    }

    .lang-btn:hover,
    .lang-btn:active {
        color: #fffaf3;
        background: rgba(255, 250, 244, 0.16);
        border-color: rgba(255, 248, 236, 0.22);
    }

    .lang-btn.active {
        background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(242, 231, 212, 0.96));
        color: var(--primary-dark);
        border-color: rgba(255, 248, 236, 0.28);
        text-shadow: none;
    }

    .main-menu a {
        display: block;
        width: 100%;
        border: 1px solid rgba(255, 248, 236, 0.18);
        border-radius: 12px;
        background: rgba(255, 250, 244, 0.12);
        padding: 0.86rem 0.95rem;
        font-weight: 700;
        color: #fff8ef;
        text-align: center;
        text-shadow: 0 1px 10px rgba(15, 10, 7, 0.4);
        box-shadow: 0 10px 20px rgba(36, 24, 16, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        font-size: 0.96rem;
        line-height: 1.2;
    }

    .main-menu a:hover,
    .main-menu a:active {
        background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(242, 231, 212, 0.96));
        border-color: rgba(255, 248, 236, 0.28);
        color: var(--primary-dark);
        text-shadow: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn,
    .success-actions .btn,
    .cart-page .empty-cart > .btn,
    .reserve-form > .btn {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-reviews {
        padding: 1.15rem;
    }

    .about-reviews-head,
    .review-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-reviews-head {
        align-items: center;
        text-align: center;
    }

    .about-reviews-carousel {
        grid-template-columns: 1fr;
    }

    .about-reviews-grid {
        grid-auto-columns: minmax(82%, 82%);
    }

    .review-card {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1rem 0.75rem 1rem 1rem;
    }

    .review-card-side {
        position: static;
        min-width: 0;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        padding-top: 0;
        background: transparent;
    }

    .review-card-date {
        text-align: left;
    }

    .about-reviews-nav {
        display: none;
    }

    .reservation-time-fields {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .reservation-date-field,
    .reservation-slot-field {
        width: 100%;
    }

    .reservation-date-field input,
    .reservation-time-select {
        width: 100%;
        min-width: 0;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        line-height: 1.7;
    }

    .hero-slider-dots {
        bottom: 1rem;
    }

    .hero-content {
        padding: 4.2rem 1rem 2.7rem;
        border-radius: 22px;
        max-width: calc(100vw - 2rem);
    }

    .features h2,
    .gallery h2,
    .contacts-section h2,
    .page-title,
    .page-header h1,
    .success-title {
        letter-spacing: -0.045em;
    }

    .about-copy,
    .feature-item,
    .contacts-info-card,
    .contacts-map-card,
    .reserve-form,
    .success-container {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .about-copy,
    .page-subtitle,
    .success-info,
    .success-message,
    .dish-description,
    .contact-row p {
        font-size: 0.97rem;
        line-height: 1.72;
    }

    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .contacts-map-card iframe {
        min-height: 280px;
    }

    .features-grid,
    .gallery-grid,
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features,
    .gallery,
    .contacts-section,
    .success-page {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }

    .feature-item,
    .gallery-item,
    .contacts-info-card,
    .contacts-map-card,
    .success-container {
        border-radius: 18px;
    }

    .menu-page {
        padding: 2.8rem 0 3.4rem;
        padding-inline: 0;
    }

    .menu-category-nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-bottom: 1.8rem;
        padding-bottom: 0.2rem;
    }

    .menu-category-chip {
        white-space: nowrap;
    }

    .page-title {
        margin-bottom: 2.25rem;
    }

    .page-header {
        margin-bottom: 2rem;
    }

    .category-title {
        margin-bottom: 1.5rem;
        font-size: clamp(1.8rem, 8vw, 2.3rem);
    }

    .menu-category-head,
    .reserve-dishes-category-head {
        align-items: flex-start;
        gap: 0.7rem;
        margin-bottom: 1rem;
    }

    .cart-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "summary"
            "items";
        gap: 0.9rem;
    }

    .cart-page {
        padding: 2rem 0 2.9rem;
    }

    .menu-card-image {
        aspect-ratio: 16 / 10;
    }

    .menu-card-content {
        padding: 0.95rem 0.92rem 0.92rem;
        gap: 0.15rem;
    }

    .dish-name {
        font-size: 1.12rem;
        line-height: 1.15;
    }

    .price {
        font-size: 1.08rem;
    }

    .cart-table-wrap {
        overflow: visible;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tbody tr {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "item subtotal"
            "price price"
            "qty action";
        gap: 0.55rem 0.65rem;
        border: 1px solid rgba(194, 65, 12, 0.08);
        border-radius: 18px;
        background: rgba(255, 252, 248, 0.94);
        box-shadow: 0 14px 28px rgba(36, 24, 16, 0.08);
        margin-bottom: 0.85rem;
        padding: 0.82rem;
    }

    .cart-table tbody td {
        padding: 0;
        border: 0;
    }

    .cart-table tbody td::before {
        display: none;
    }

    .cart-table tbody td:nth-child(1) {
        grid-area: item;
    }

    .cart-table tbody td:nth-child(2) {
        grid-area: price;
    }

    .cart-table tbody td:nth-child(3) {
        grid-area: qty;
    }

    .cart-table tbody td:nth-child(4) {
        grid-area: subtotal;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .cart-table tbody td:nth-child(5) {
        grid-area: action;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .cart-item-cell {
        width: 100%;
        min-width: 0;
        gap: 0.5rem;
    }

    .cart-item-image {
        width: 64px;
        height: 48px;
        border-radius: 10px;
    }

    .cart-item-info h3 {
        font-size: 0.94rem;
        line-height: 1.2;
    }

    .price-per-unit,
    .cart-item-subtotal {
        font-size: 0.86rem;
    }

    .qty-form {
        gap: 0.22rem;
    }

    .qty-btn {
        width: 2rem;
        height: 2rem;
    }

    .qty-display {
        min-width: 1.2rem;
        font-size: 0.84rem;
    }

    .btn-remove {
        padding: 0.36rem 0.58rem;
        font-size: 0.76rem;
    }

    .cart-summary {
        position: static;
        padding: 1rem;
        max-height: none;
        border-radius: 18px;
    }

    .summary-row {
        font-size: 1rem;
    }

    .order-form-scroll {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        overflow: visible;
        padding-right: 0;
    }

    .form-group-half,
    .form-group-full {
        grid-column: 1 / -1;
    }

    .dish-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .menu-card {
        border-radius: 18px;
    }

    .menu-card-content {
        padding: 1rem 0.95rem 0.95rem;
    }

    .menu-card-actions {
        width: 100%;
    }

    .btn-go-order {
        width: 100%;
        min-height: 44px;
        font-size: 0.9rem;
    }

    .menu-qty-panel {
        width: 100%;
    }

    .qty-mini-btn {
        min-height: 44px;
        width: 46px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.15rem;
    }

    .footer-links {
        gap: 0.9rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }

    .site-footer {
        padding: 4rem 0 2rem;
    }

    .success-container {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    .scroll-top-btn {
        right: 0.85rem;
        bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
        width: 3rem;
        height: 3rem;
        border-radius: 14px;
    }
}

@media (max-width: 1024px) {
    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-toc {
        position: static;
    }

    .privacy-table {
        grid-template-columns: 1fr;
    }

    .privacy-table > div {
        border-right: 0;
    }
}

@media (max-width: 768px) {
    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent-card {
        padding: 0.42rem 0.5rem;
        gap: 0.42rem;
    }

    .cookie-consent-actions {
        flex-shrink: 0;
    }

    .cookie-modal {
        padding: 1.2rem;
    }

    .consent-embed-placeholder {
        min-height: 320px;
        padding: 1.4rem;
    }

    .consent-embed-placeholder h3 {
        font-size: 1.45rem;
    }
}


/* Success Page */
.success-page {
    padding: 6.4rem 0;
    text-align: center;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 252, 248, 0.94);
    padding: 3.2rem 2.2rem;
    border-radius: 24px;
    border: 1px solid rgba(194, 65, 12, 0.08);
    box-shadow: var(--shadow-medium);
}

.success-title {
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    margin-bottom: 1.5rem;
    color: #221814;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.success-message {
    font-size: 1.22rem;
    margin-bottom: 1.5rem;
    color: #43322b;
}

.success-info {
    font-size: 1.05rem;
    color: #6c564b;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================
   Reservation Form
   ========================================== */
.reserve-gallery {
    margin: 0 auto 3rem;
}

.reserve-gallery-slider {
    --reserve-gallery-height: 520px;
    position: relative;
    min-height: var(--reserve-gallery-height);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(34, 24, 20, 0.28), rgba(34, 24, 20, 0.08)),
        #2b211c;
    box-shadow: 0 26px 60px rgba(36, 24, 16, 0.18);
    isolation: isolate;
}

.reserve-gallery-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 232, 213, 0.32), transparent 34%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.38));
    z-index: 1;
    pointer-events: none;
}

.reserve-gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.55s ease, transform 6s ease;
}

.reserve-gallery-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.reserve-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reserve-gallery-slide figcaption {
    position: absolute;
    right: 1.4rem;
    bottom: 1.35rem;
    max-width: min(420px, calc(100% - 2.8rem));
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.88);
    color: #4a342b;
    font-size: 0.92rem;
    line-height: 1.35;
    box-shadow: 0 12px 30px rgba(36, 24, 16, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2;
}

.reserve-gallery-card {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: min(440px, calc(100% - 4rem));
    max-height: min(calc(100% - 2.4rem), 78vh);
    padding: 1.6rem 1.7rem;
    border-radius: 24px;
    color: #fff8f1;
    background: linear-gradient(180deg, rgba(34, 24, 20, 0.82), rgba(34, 24, 20, 0.68));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(18, 12, 9, 0.28);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    transform: translate(-50%, -50%);
    text-align: center;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 239, 225, 0.42) transparent;
}

.reserve-gallery-card::-webkit-scrollbar {
    width: 8px;
}

.reserve-gallery-card::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 239, 225, 0.32);
}

.reserve-gallery-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    justify-content: center;
}

.reserve-gallery-card-kicker img {
    display: block;
    width: auto;
    max-width: min(220px, 100%);
    height: 34px;
    object-fit: contain;
}

.reserve-gallery-card-kicker::before,
.reserve-gallery-card-kicker::after {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.reserve-gallery-card strong {
    display: block;
    margin-bottom: 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #fffdf9;
}

.reserve-gallery-card-text {
    max-width: 34ch;
    margin-inline: auto;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 244, 235, 0.9);
}

.reserve-gallery-card-text > *:first-child {
    margin-top: 0;
}

.reserve-gallery-card-text > *:last-child {
    margin-bottom: 0;
}

.reserve-gallery-card-text p,
.reserve-gallery-card-text ul {
    margin: 0 0 0.7rem;
}

.reserve-gallery-card-text ul {
    padding-left: 1.15rem;
    text-align: left;
}

.reserve-gallery-card-text li + li {
    margin-top: 0.3rem;
}

.reserve-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(188, 102, 26, 0.55);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(36, 24, 16, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-50%);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.reserve-gallery-prev {
    left: 1.3rem;
}

.reserve-gallery-next {
    right: 1.3rem;
}

.reserve-gallery-nav:hover,
.reserve-gallery-nav:focus-visible {
    background: rgba(188, 102, 26, 0.16);
    color: var(--primary-dark);
    border-color: rgba(188, 102, 26, 0.88);
    transform: translateY(-50%) scale(1.04);
    outline: none;
}

.reserve-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 1.3rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(34, 24, 20, 0.36);
    box-shadow: 0 16px 34px rgba(36, 24, 16, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(-50%);
}

.reserve-gallery-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 247, 240, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.reserve-gallery-dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

.reserve-gallery-dot:hover,
.reserve-gallery-dot:focus-visible {
    background: rgba(255, 255, 255, 0.9);
    outline: none;
}

.reserve-page {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fdfaf5 0%, #f6eee2 100%);
}

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

.form-group label {
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: #45342c;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #dacdc2;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    background: #fffefd;
}

.reservation-time-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
}

.reservation-date-field,
.reservation-slot-field {
    position: relative;
    width: fit-content;
    max-width: 100%;
}

.reservation-date-field::before,
.reservation-slot-field::before {
    display: none;
}

.reservation-date-field input,
.reservation-time-select {
    width: auto;
    min-width: 180px;
    max-width: 100%;
    padding-left: 3rem;
    padding-right: 1rem;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.2;
    text-align: left;
    font-variant-numeric: tabular-nums;
    color: #2f241f;
    box-shadow: 0 10px 24px rgba(36, 24, 16, 0.05);
}

.reservation-time-select {
    padding-left: 3.15rem;
    text-indent: 0;
}

.reservation-date-field input {
    min-height: 52px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Crect x='2.25' y='3.25' width='13.5' height='12' rx='2.25' stroke='%238c3414' stroke-width='1.5'/%3E%3Cpath d='M5.25 1.75V4.5M12.75 1.75V4.5M2.25 6.5H15.75' stroke='%238c3414' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 18px 18px;
}

.reservation-date-field input::-webkit-datetime-edit-fields-wrapper,
.reservation-date-field input::-webkit-datetime-edit,
.reservation-date-field input::-webkit-date-and-time-value {
    padding: 0;
    line-height: 1.2;
}

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

.reservation-date-field input::-webkit-datetime-edit,
.reservation-date-field input::-webkit-date-and-time-value {
    text-align: left;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.phone-input-wrap {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 0.5rem;
    align-items: center;
}

.phone-code-field {
    position: relative;
}

.phone-code-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.phone-code-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 1rem 0.7rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fff;
    text-align: left;
    cursor: pointer;
    color: #111827;
}

.phone-code-toggle::after {
    content: "";
    margin-left: auto;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #64748b;
}

.phone-code-toggle:focus,
.phone-code-toggle:hover {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.phone-code-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    max-height: 230px;
    overflow: auto;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    z-index: 40;
}

.phone-code-option {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 0.62rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-align: left;
    color: #111827;
}

.phone-code-option:hover,
.phone-code-option:focus {
    background: #f8fafc;
    outline: none;
}

.phone-input-wrap input {
    width: 100%;
    min-width: 0;
}

.form-group.is-disabled {
    opacity: 0.6;
}

.form-group.is-hidden {
    display: none !important;
}

.form-group.is-disabled textarea {
    background: #f8fafc;
}

.reserve-dishes-group {
    margin-top: 0.3rem;
}

.reserve-dishes-scroll {
    max-height: 460px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #e7dccf;
    border-radius: 14px;
    padding: 0.7rem;
    background: #fffaf4;
}

.reserve-dishes-scroll::-webkit-scrollbar {
    width: 8px;
}

.reserve-dishes-scroll::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.65);
    border-radius: 999px;
}

.reserve-dishes-category + .reserve-dishes-category {
    margin-top: 0.8rem;
}

.reserve-dishes-category-title {
    margin: 0 0 0.45rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
}

.reserve-dishes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.reserve-dish-card {
    border: 1px solid #e7dccf;
    border-radius: 14px;
    background: #fff;
    padding: 0.6rem;
    display: grid;
    gap: 0.55rem;
    min-height: 118px;
}

.reserve-dish-body {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
}

.reserve-dish-media {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: #f6ede3;
    box-shadow: 0 8px 18px rgba(36, 24, 16, 0.08);
}

.reserve-dish-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reserve-dish-content {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.reserve-dish-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.reserve-dish-head strong {
    font-size: 0.92rem;
    line-height: 1.2;
}

.reserve-dish-head span {
    font-size: 0.82rem;
    color: #9a3412;
    font-weight: 700;
    white-space: nowrap;
}

.reserve-dish-card small {
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.3;
}

.reserve-dish-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
}

.reserve-dish-qty span {
    font-size: 0.82rem;
    color: #334155;
    font-weight: 600;
}

.reserve-dish-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
}

.reserve-dish-qty input {
    width: 3rem;
    min-width: 3rem;
    padding: 0.4rem 0.35rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    -moz-appearance: textfield;
}

.reserve-dish-qty input::-webkit-outer-spin-button,
.reserve-dish-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.reserve-qty-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid #dccfc4;
    border-radius: 10px;
    background: #fffdf9;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.reserve-qty-btn:hover {
    background: #fff;
    border-color: rgba(194, 65, 12, 0.22);
    box-shadow: 0 8px 16px rgba(36, 24, 16, 0.08);
}

.reserve-qty-btn:active {
    transform: scale(0.97);
}

.reserve-qty-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.12);
}

@media (max-width: 900px) {
    .reserve-gallery-card {
        top: 50%;
        left: 50%;
        width: min(400px, calc(100% - 2.7rem));
        max-height: min(calc(100% - 2rem), 72vh);
        padding: 1.3rem 1.35rem;
    }

    .reserve-gallery-card strong {
        font-size: clamp(1.75rem, 6vw, 2.45rem);
    }

    .reserve-gallery-card-text {
        font-size: 0.98rem;
        line-height: 1.6;
    }
}

@media (max-width: 640px) {
    .reserve-gallery {
        margin-bottom: 2.2rem;
    }

    .reserve-gallery-slider {
        min-height: var(--reserve-gallery-height, 420px);
    }

    .reserve-gallery-card {
        top: 50%;
        left: 50%;
        width: calc(100% - 2rem);
        max-height: calc(100% - 1.5rem);
        padding: 1.1rem 1rem;
        border-radius: 18px;
    }

    .reserve-gallery-card-kicker {
        margin-bottom: 0.65rem;
    }

    .reserve-gallery-card-kicker img {
        max-width: min(180px, 100%);
        height: 28px;
    }

    .reserve-gallery-card strong {
        margin-bottom: 0.65rem;
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .reserve-gallery-card-text {
        max-width: none;
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .reserve-gallery-slide figcaption {
        right: 0.9rem;
        bottom: 0.9rem;
        max-width: calc(100% - 1.8rem);
        padding: 0.58rem 0.82rem;
        border-radius: 16px;
        font-size: 0.82rem;
    }

    .reserve-gallery-nav {
        top: auto;
        bottom: 4.25rem;
        width: 44px;
        height: 44px;
        font-size: 1.7rem;
        transform: none;
    }

    .reserve-gallery-prev {
        left: 0.9rem;
    }

    .reserve-gallery-next {
        right: 0.9rem;
    }

    .reserve-gallery-nav:hover,
    .reserve-gallery-nav:focus-visible {
        transform: scale(1.04);
    }

    .reserve-gallery-dots {
        bottom: 0.9rem;
        gap: 0.5rem;
        padding: 0.58rem 0.8rem;
    }

    .reserve-gallery-dot {
        width: 10px;
        height: 10px;
    }

    .phone-input-wrap {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 0.4rem;
    }

    .reserve-dishes-scroll {
        max-height: 390px;
        padding: 0.55rem;
    }

    .reserve-dishes-grid {
        grid-template-columns: 1fr;
    }

    .reserve-dish-card {
        min-height: 108px;
    }

    .reserve-dish-body {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 0.6rem;
    }

    .reserve-dish-media {
        width: 56px;
        height: 56px;
        border-radius: 10px;
    }
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.option-grid-single {
    grid-template-columns: 1fr;
}

.option-card {
    position: relative;
    display: block;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-card > span {
    display: block;
    border: 0;
    border-radius: 12px;
    background: #fff;
    padding: 0.62rem 0.72rem;
    font-weight: 600;
    color: #1f2937;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 0 0 1px #eadfd4;
}

.option-card:hover > span {
    box-shadow: inset 0 0 0 1px rgba(194, 65, 12, 0.18), 0 8px 18px rgba(36, 24, 16, 0.06);
}

.option-card input:focus-visible + span {
    outline: none;
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.12);
}

.option-card-ui {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    text-align: center;
}

.option-title {
    display: block;
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: balance;
    line-height: 1.25;
}

.option-card:hover > span {
    background: #fff;
}

.option-card input:checked + span,
.option-card.is-active {
    color: #111827;
}

.option-card input:checked + span,
.option-card.is-active {
    font-weight: 700;
    background: #fff7ed;
    color: #9a3412;
    animation: none;
}

.option-card-static {
    cursor: default;
}

.order-choice-summary {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-top: 0.1rem;
}

.choice-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border-radius: 12px;
    padding: 0.34rem 0.72rem;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid transparent;
    box-shadow: 0 8px 18px rgba(36, 24, 16, 0.06);
}

.choice-delivery {
    color: #8c3414;
    background: #ffe3bf;
    border-color: #f4b067;
}

.choice-payment {
    color: #166534;
    background: #c8f9d8;
    border-color: #58d68d;
}

.choice-pickup {
    color: #1d4ed8;
    background: #d4e7ff;
    border-color: #78adff;
}

.pickup-time-select {
    width: auto;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 52px;
    border: 1px solid #dacdc2;
    border-radius: 12px;
    background-color: #fff;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='6.75' stroke='%238c3414' stroke-width='1.5'/%3E%3Cpath d='M9 5.25V9L11.5 10.5' stroke='%238c3414' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 7L9 11.5L13.5 7' stroke='%239a3412' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center, right 0.9rem center;
    background-size: 18px 18px, 18px 18px;
    padding: 0.88rem 2.8rem 0.88rem 3.15rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 8px 18px rgba(36, 24, 16, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.pickup-time-select:hover {
    border-color: #fdba74;
}

.pickup-time-select:focus {
    outline: none;
    border-color: #fb923c;
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.16);
}

.pickup-time-select:active {
    transform: translateY(1px);
}

.pickup-time-empty {
    border-radius: 12px;
    border: 1px dashed #e79622;
    background: #fff0c8;
    color: #8c3414;
    padding: 0.85rem 0.95rem;
    font-weight: 600;
}


.btn.btn-primary.large {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Form Feedback */
.error-box {
    background: #fee2e2;
    color: #991b1b;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.error-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.error-box li {
    margin-bottom: 0.5rem;
}

/* Mobile Form Tweaks */
@media (max-width: 768px) {
    .option-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cart-fab {
        right: 0.75rem;
        bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }

    .cart-modal {
        width: min(92vw, 430px);
        max-height: min(86vh, 760px);
        border-radius: 16px;
    }

    .cart-modal-item {
        grid-template-columns: 56px minmax(0, 1fr);
        grid-template-areas:
            "image main"
            "subtotal subtotal";
        gap: 0.45rem 0.55rem;
        align-items: start;
        padding: 0.6rem;
    }

    .cart-modal-item img {
        grid-area: image;
        width: 56px;
        height: 56px;
        border-radius: 9px;
    }

    .cart-modal-item-main {
        grid-area: main;
        display: grid;
        gap: 0.28rem;
    }

    .cart-modal-item-main h3 {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .cart-modal-item-main p {
        font-size: 0.78rem;
    }

    .cart-modal-item-subtotal {
        grid-area: subtotal;
        text-align: left;
        font-size: 0.8rem;
        padding-top: 0.1rem;
        border-top: 1px dashed #cbd5e1;
    }

    .cart-modal-item-controls {
        gap: 0.3rem;
    }

    .cart-modal-qty-btn {
        width: 1.9rem;
        height: 1.9rem;
    }

    .cart-modal-remove {
        margin-left: auto;
    }
}
