/* =========================================
   مذاق البلد - Palestinian Restaurant
   Full Landing Page Styles (RTL)
   ========================================= */

:root {
    --gold: #D4A574;
    --gold-light: #E8C89A;
    --gold-dark: #B8894F;
    --gold-shine: #F4D08D;

    --brown: #5D4037;
    --brown-dark: #3E2723;
    --brown-light: #8D6E63;
    --brown-deep: #2C1810;

    --cream: #FAF3E7;
    --cream-dark: #F1E4CE;
    --off-white: #FFFCF5;

    --accent-red: #A0522D;
    --accent-green: #556B2F;
    --whatsapp: #25D366;

    --font-primary: 'Tajawal', 'Arial', sans-serif;
    --font-heading: 'Tajawal', 'Amiri', serif;
    --font-decor: 'Amiri', serif;

    --container: 1240px;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 2px 8px rgba(93, 64, 55, 0.08);
    --shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
    --shadow-lg: 0 20px 50px rgba(93, 64, 55, 0.18);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--brown-dark);
    background: var(--off-white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(184, 137, 79, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 137, 79, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-3px);
}

.btn-large { padding: 18px 40px; font-size: 1.1rem; }
.btn-nav { padding: 12px 28px; font-size: 0.95rem; }
.btn-small { padding: 10px 22px; font-size: 0.9rem; }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(62, 39, 35, 0.95);
    backdrop-filter: blur(15px);
    padding: 14px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(46, 24, 16, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo { display: flex; align-items: center; gap: 12px; color: white; }
.logo-icon { display: flex; filter: drop-shadow(0 2px 8px rgba(212, 165, 116, 0.4)); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-size: 1.5rem; font-weight: 900; color: var(--gold-light); letter-spacing: 0.5px; }
.logo-sub { font-size: 0.75rem; color: var(--cream); font-weight: 400; letter-spacing: 1px; }

.nav-menu { display: flex; gap: 8px; align-items: center; }

.nav-link {
    color: var(--cream);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
    background: rgba(212, 165, 116, 0.15);
}

.mobile-toggle {
    display: none;
    background: transparent;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 120px 0 60px;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(46, 24, 16, 0.85) 0%, rgba(62, 39, 35, 0.75) 50%, rgba(93, 64, 55, 0.85) 100%),
        url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(46, 24, 16, 0.6) 100%);
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.1) 0%, transparent 40%);
    z-index: -1;
    animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title-main {
    background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    letter-spacing: 2px;
}

.hero-title-decor {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    margin-top: 10px;
    opacity: 0.7;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--cream);
    margin-bottom: 16px;
    font-weight: 500;
    font-family: var(--font-decor);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(250, 243, 231, 0.9);
    margin-bottom: 40px;
    max-width: 720px;
    margin-inline: auto;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(15px); }
}

/* ---------- Heritage Banner (middle) ---------- */
.heritage-banner {
    position: relative;
    padding: 100px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.heritage-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(46, 24, 16, 0.9) 0%, rgba(93, 64, 55, 0.85) 100%),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.heritage-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.heritage-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.heritage-star {
    color: var(--gold);
    font-size: 1.4rem;
    animation: twinkle 3s ease-in-out infinite;
}

.heritage-star:nth-child(5) {
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

.heritage-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.heritage-diamond {
    color: var(--gold);
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(212, 165, 116, 0.5));
}

.heritage-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
    letter-spacing: 2px;
}

.heritage-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(250, 243, 231, 0.9);
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 700px;
    margin-inline: auto;
}

.heritage-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 36px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    position: absolute;
    top: -4px;
    left: -18px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--cream);
    font-weight: 500;
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* ---------- Section Common ---------- */
section { padding: 90px 0; position: relative; }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--brown-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.divider-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
}

.divider-icon { color: var(--gold); font-size: 1.5rem; }

.section-description {
    color: var(--brown-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ---------- Loader ---------- */
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 165, 116, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.menu-loader, .slider-loader {
    text-align: center;
    padding: 60px 20px;
    color: var(--brown-light);
}

.slider-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

/* ---------- Menu Section ---------- */
.menu-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 8px;
}

.menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--brown);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.menu-tab .tab-icon {
    font-size: 1.2rem;
}

.menu-tab:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-color: var(--gold-dark);
    box-shadow: 0 6px 20px rgba(184, 137, 79, 0.4);
}

.menu-category {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-category.active {
    display: block;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dish-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 165, 116, 0.15);
    cursor: pointer;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 165, 116, 0.4);
}

.dish-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.dish-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 24, 16, 0.3) 0%, transparent 50%);
}

.dish-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(184, 137, 79, 0.4);
    z-index: 1;
}

.dish-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dish-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brown-dark);
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.dish-title:hover { color: var(--gold-dark); }

.dish-title-icon {
    color: var(--gold);
    font-size: 0.85em;
    opacity: 0.7;
    transition: transform 0.2s;
}

.dish-title:hover .dish-title-icon {
    transform: rotate(45deg);
    opacity: 1;
}

.dish-description {
    color: var(--brown-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px dashed rgba(212, 165, 116, 0.3);
}

.dish-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-dark);
    font-family: var(--font-heading);
}

.currency {
    font-size: 1rem;
    color: var(--brown-light);
    margin-right: 4px;
}

.dish-order {
    background: transparent;
    color: var(--gold-dark);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dish-order:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* ---------- Dish Modal ---------- */
.dish-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dish-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 24, 16, 0.85);
    backdrop-filter: blur(6px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brown-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.modal-close:hover {
    background: var(--brown-dark);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    overflow-y: auto;
    flex: 1;
}

.modal-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 24, 16, 0.8) 0%, transparent 60%);
}

.modal-info {
    padding: 28px 32px;
}

.modal-category {
    display: inline-block;
    background: rgba(212, 165, 116, 0.15);
    color: var(--gold-dark);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.modal-description {
    color: var(--brown-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-section {
    padding: 20px 32px;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.modal-section-title {
    font-weight: 800;
    color: var(--brown-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

.modal-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ingredient-tag {
    background: var(--cream);
    color: var(--brown);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--off-white);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.addon-item:hover { border-color: var(--gold); background: white; }

.addon-item input {
    accent-color: var(--gold-dark);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.addon-item.checked {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--gold);
}

.addon-name { flex-grow: 1; font-size: 0.92rem; font-weight: 500; }

.addon-price {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.9rem;
}

.modal-notes {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(212, 165, 116, 0.25);
    border-radius: var(--radius);
    background: var(--off-white);
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.modal-notes:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
}

.modal-footer {
    padding: 20px 32px;
    background: var(--cream);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.modal-quantity {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.quantity-btn {
    background: transparent;
    color: var(--gold-dark);
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition);
}

.quantity-btn:hover { background: var(--gold); color: white; }

.quantity-value {
    font-weight: 800;
    padding: 0 16px;
    color: var(--brown-dark);
    min-width: 40px;
    text-align: center;
}

.modal-total {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.total-label { font-size: 0.85rem; color: var(--brown-light); }
.total-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-dark);
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 12px 26px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(184, 137, 79, 0.4);
}

.btn-add-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184, 137, 79, 0.5); }

/* ---------- Why Us ---------- */
.why-us {
    background: var(--brown-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.08) 0%, transparent 40%);
}

.why-us .section-title { color: white; }
.why-us .section-subtitle { color: var(--gold); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: var(--gold);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(184, 137, 79, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    border: 2px solid rgba(212, 165, 116, 0.3);
    transition: var(--transition);
}

.feature-icon svg { width: 32px; height: 32px; }

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.feature-text {
    color: rgba(250, 243, 231, 0.85);
    line-height: 1.8;
    font-size: 0.98rem;
}

/* ---------- Gallery Slider ---------- */
.gallery { background: var(--cream); }

.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--brown-dark);
}

.slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(46, 24, 16, 0.95) 0%, transparent 100%);
    color: white;
}

.slide-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brown-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.slider-arrow:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { right: 20px; }
.slider-next { left: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* ---------- Order Section ---------- */
.order-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.order-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.order-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: white;
    color: var(--brown);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: var(--radius-xl);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.order-tab:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.order-tab.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-color: var(--gold-dark);
    box-shadow: 0 8px 25px rgba(184, 137, 79, 0.4);
}

.order-forms {
    max-width: 900px;
    margin: 0 auto;
}

.order-form {
    display: none;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.order-form.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed rgba(212, 165, 116, 0.3);
}

.form-section:last-of-type { border-bottom: none; padding-bottom: 0; }

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brown-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-num {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

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

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    margin-bottom: 16px;
}

.form-row .form-group { margin-bottom: 0; }

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.required { color: var(--accent-red); }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(212, 165, 116, 0.25);
    border-radius: var(--radius);
    background: var(--off-white);
    color: var(--brown-dark);
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.95rem;
    direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
}

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

/* Cart */
.cart-container {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px dashed rgba(212, 165, 116, 0.4);
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--brown-light);
}

.cart-empty svg {
    color: var(--gold);
    opacity: 0.4;
    margin: 0 auto 16px;
    display: block;
}

.cart-empty p { margin-bottom: 20px; }

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cart-item {
    background: white;
    padding: 16px;
    border-radius: var(--radius);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.cart-item-info { flex-grow: 1; }

.cart-item-title {
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 4px;
}

.cart-item-addons {
    font-size: 0.85rem;
    color: var(--brown-light);
    margin-bottom: 4px;
}

.cart-item-notes {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-style: italic;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.cart-item-price {
    font-weight: 800;
    color: var(--gold-dark);
    font-family: var(--font-heading);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 4px 8px;
}

.cart-item-qty button {
    width: 24px;
    height: 24px;
    background: transparent;
    color: var(--brown);
    border-radius: 50%;
    font-weight: 700;
    transition: var(--transition);
}

.cart-item-qty button:hover { background: var(--gold); color: white; }

.cart-item-qty span {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    background: rgba(160, 82, 45, 0.1);
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.cart-item-remove:hover { background: var(--accent-red); color: white; }

.cart-summary {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--brown);
    font-weight: 500;
}

.summary-total {
    border-top: 2px dashed rgba(212, 165, 116, 0.3);
    padding-top: 16px;
    margin-top: 8px;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--brown-dark);
}

.summary-total span:last-child {
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    margin-top: 10px;
}

.btn-submit:hover {
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

/* ---------- Location ---------- */
.location-section {
    background: var(--off-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 165, 116, 0.4);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(184, 137, 79, 0.3);
}

.info-icon svg { width: 24px; height: 24px; }

.info-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.info-text {
    color: var(--brown-light);
    line-height: 1.7;
}

.info-link {
    color: var(--brown-light);
    transition: var(--transition);
    font-weight: 500;
}

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

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--brown-light);
    padding: 6px 0;
    border-bottom: 1px dashed rgba(212, 165, 116, 0.2);
}

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

.hours-time { font-weight: 600; color: var(--brown); }

.hours-special { color: var(--accent-red) !important; font-weight: 600; }
.hours-special .hours-time { color: var(--accent-red); }

.map-container {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid white;
}

.map-link {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(62, 39, 35, 0.95);
    color: var(--gold-light);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.map-link:hover { background: var(--gold-dark); color: white; }

/* ---------- Footer ---------- */
.footer {
    background: var(--brown-deep);
    color: var(--cream);
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to left, var(--gold-light), var(--gold), var(--gold-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }

.footer-logo h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 2px;
}

.footer-logo p { color: var(--cream); font-size: 0.85rem; opacity: 0.7; }

.footer-about {
    color: rgba(250, 243, 231, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: rgba(250, 243, 231, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links li a:hover { color: var(--gold-light); transform: translateX(-4px); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(250, 243, 231, 0.7);
    font-size: 0.95rem;
}

.footer-contact svg { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
    font-size: 0.9rem;
    color: rgba(250, 243, 231, 0.5);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-tagline { color: var(--gold); }

/* Developer credit */
.developer-credit {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(212, 165, 116, 0.2);
}

.credit-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0.03) 100%);
    padding: 14px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 165, 116, 0.15);
    max-width: fit-content;
    margin: 0 auto;
}

.credit-text {
    color: rgba(250, 243, 231, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.credit-name {
    color: var(--gold-light);
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.credit-separator {
    color: rgba(212, 165, 116, 0.4);
    font-size: 1rem;
}

.credit-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--whatsapp);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.credit-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.credit-whatsapp svg { flex-shrink: 0; }

/* ---------- Reservation Card ---------- */
.reservation-card {
    text-align: center;
}

.reservation-hero {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

.reservation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(184, 137, 79, 0.1) 100%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.reservation-hero h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.reservation-hero p {
    color: var(--brown-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.reservation-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.rf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brown);
    font-weight: 600;
    font-size: 0.95rem;
}

.rf-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ---------- Reservation Modal Wizard ---------- */
.reservation-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reservation-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

.reservation-modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 92vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.wizard-header {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
    padding: 30px 24px 24px;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    height: 2px;
    background: rgba(212, 165, 116, 0.3);
    z-index: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.wizard-step .step-num {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.wizard-step .step-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.wizard-step.active .step-num {
    background: var(--gold);
    color: var(--brown-dark);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.25);
    transform: scale(1.05);
}

.wizard-step.active .step-label {
    color: var(--gold-light);
}

.wizard-step.completed .step-num {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
}

.wizard-step.completed .step-label {
    color: rgba(255, 255, 255, 0.7);
}

.wizard-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px 32px;
}

.wizard-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-panel.active {
    display: block;
}

.wizard-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brown-dark);
    text-align: center;
    margin-bottom: 8px;
}

.wizard-subtitle {
    text-align: center;
    color: var(--brown-light);
    margin-bottom: 26px;
    font-size: 0.95rem;
}

/* Dates carousel */
.dates-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.dates-nav {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--brown-dark);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.dates-nav:hover:not(:disabled) {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.dates-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.dates-carousel {
    flex: 1;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 4px;
    scrollbar-width: none;
}

.dates-carousel::-webkit-scrollbar { display: none; }

.date-item {
    flex: 0 0 90px;
    padding: 14px 8px;
    background: white;
    border: 2px solid rgba(212, 165, 116, 0.25);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-item:hover:not(.disabled) {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.date-item.selected {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-color: var(--gold-dark);
    box-shadow: 0 8px 20px rgba(184, 137, 79, 0.4);
    transform: translateY(-3px);
}

.date-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.date-day-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown-light);
}

.date-item.selected .date-day-name {
    color: rgba(255, 255, 255, 0.85);
}

.date-day-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--brown-dark);
    line-height: 1;
}

.date-item.selected .date-day-num {
    color: white;
}

.date-month {
    font-size: 0.75rem;
    color: var(--brown-light);
    font-weight: 500;
}

.date-item.selected .date-month {
    color: rgba(255, 255, 255, 0.85);
}

.date-badge {
    font-size: 0.7rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-top: 2px;
}

.date-item.selected .date-badge {
    color: rgba(255, 255, 255, 0.9);
}

/* Guests grid */
.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.guest-btn {
    padding: 20px 12px;
    background: white;
    border: 2px solid rgba(212, 165, 116, 0.25);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.guest-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.guest-btn.selected {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-color: var(--gold-dark);
    box-shadow: 0 8px 20px rgba(184, 137, 79, 0.4);
}

.guest-icon {
    font-size: 1.4rem;
}

.guest-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--brown-dark);
    line-height: 1;
}

.guest-btn.selected .guest-num { color: white; }

.guest-label {
    font-size: 0.75rem;
    color: var(--brown-light);
    font-weight: 500;
}

.guest-btn.selected .guest-label { color: rgba(255, 255, 255, 0.85); }

.custom-guests {
    background: var(--cream);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px dashed rgba(212, 165, 116, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.custom-guests label {
    color: var(--brown);
    font-weight: 600;
    font-size: 0.95rem;
}

.custom-guests input {
    flex: 1;
    min-width: 140px;
    padding: 10px 14px;
    border: 2px solid rgba(212, 165, 116, 0.25);
    border-radius: var(--radius);
    font-size: 1rem;
    text-align: center;
    background: white;
}

.custom-guests input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Times grid */
.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 14px;
    background: white;
    border: 2px solid rgba(212, 165, 116, 0.25);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 600;
    color: var(--brown);
    font-size: 0.95rem;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-color: var(--gold-dark);
    box-shadow: 0 6px 15px rgba(184, 137, 79, 0.4);
}

.time-slot.disabled {
    background: var(--cream);
    color: var(--brown-light);
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Reservation summary */
.reservation-summary {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0.03) 100%);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    text-align: center;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-label {
    font-size: 0.8rem;
    color: var(--brown-light);
    font-weight: 500;
}

.summary-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brown-dark);
}

/* Wizard footer buttons */
.wizard-footer {
    background: var(--cream);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.wizard-footer.hidden {
    display: none;
}

.btn-wizard {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-wizard-back {
    background: white;
    color: var(--brown);
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.btn-wizard-back:hover:not(:disabled) {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.btn-wizard-back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    visibility: hidden;
}

.btn-wizard-next {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 137, 79, 0.4);
}

.btn-wizard-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(184, 137, 79, 0.5);
}

.btn-wizard-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

/* Success panel */
.wizard-panel-success {
    text-align: center;
    padding: 30px 20px;
}

.success-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.success-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawCircle 0.7s ease forwards;
}

.success-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.5s ease 0.5s forwards;
}

@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.success-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--brown-dark);
    margin-bottom: 12px;
    animation: fadeInUp 0.5s ease 0.5s both;
}

.success-message {
    font-size: 1.15rem;
    color: var(--brown);
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease 0.6s both;
}

.success-details {
    background: var(--cream);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    max-width: 400px;
    border: 1px solid rgba(212, 165, 116, 0.25);
    animation: fadeInUp 0.5s ease 0.7s both;
}

.success-details-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(212, 165, 116, 0.3);
}

.success-details-row:last-child { border-bottom: none; }

.success-details-label {
    color: var(--brown-light);
    font-weight: 500;
}

.success-details-value {
    color: var(--brown-dark);
    font-weight: 700;
}

.success-note {
    color: var(--brown-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease 0.8s both;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s ease 0.9s both;
}

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--brown-dark);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-weight: 600;
    max-width: 90%;
    text-align: center;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast.success { background: linear-gradient(135deg, var(--accent-green), #3d5220); }
.toast.error { background: linear-gradient(135deg, var(--accent-red), #7a3d20); }

/* ---------- Floating buttons ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 998;
    animation: pulse 2s ease-in-out infinite;
    transition: var(--transition);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float:hover { transform: scale(1.1); }

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(184, 137, 79, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.visible { opacity: 1; visibility: visible; }

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(184, 137, 79, 0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .heritage-bg { background-attachment: scroll; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .heritage-banner { padding: 70px 0; }
    .container { padding: 0 20px; }

    .wizard-steps { max-width: 100%; }
    .wizard-step .step-label { font-size: 0.7rem; }
    .wizard-step .step-num { width: 34px; height: 34px; font-size: 0.85rem; }
    .wizard-body { padding: 24px 20px; }
    .reservation-summary { grid-template-columns: 1fr; text-align: right; }
    .summary-item { flex-direction: row; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed rgba(212, 165, 116, 0.2); }
    .summary-item:last-child { border-bottom: none; }
    .times-grid { grid-template-columns: repeat(3, 1fr); }
    .guests-grid { grid-template-columns: repeat(4, 1fr); }
    .date-item { flex: 0 0 78px; padding: 12px 6px; }
    .date-day-num { font-size: 1.4rem; }

    .nav-menu {
        position: fixed;
        top: 68px;
        right: 0;
        left: 0;
        background: rgba(46, 24, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 6px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-top: 1px solid rgba(212, 165, 116, 0.2);
    }

    .nav-menu.active { transform: translateY(0); }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .btn-nav { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 100px 0 50px; min-height: auto; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .hero-buttons .btn { width: 100%; }

    .heritage-stats { flex-direction: column; gap: 20px; padding: 24px; }
    .stat-divider {
        width: 60%;
        height: 1px;
        background: linear-gradient(to left, transparent, var(--gold), transparent);
    }
    .stat-number { font-size: 2.2rem; }

    .menu-grid { grid-template-columns: 1fr; gap: 24px; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }

    .slider { height: 400px; }
    .slide-caption { padding: 30px 20px 20px; }
    .slide-caption h4 { font-size: 1.3rem; }
    .slider-arrow { width: 42px; height: 42px; }
    .slider-prev { right: 12px; }
    .slider-next { left: 12px; }

    .order-form { padding: 24px 20px; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }

    .modal-content { max-height: 95vh; }
    .modal-info { padding: 20px 22px; }
    .modal-section { padding: 16px 22px; }
    .modal-footer { padding: 16px 22px; }
    .modal-title { font-size: 1.5rem; }
    .addons-grid { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-title::after { right: 50%; transform: translateX(50%); }
    .footer-contact li { justify-content: center; }
    .footer-bottom { justify-content: center; text-align: center; }

    .credit-inner { padding: 12px 16px; gap: 8px; font-size: 0.85rem; }

    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; left: 20px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .scroll-top { width: 44px; height: 44px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .slider { height: 300px; }
    .heritage-title { font-size: 2rem; }
    .stat-number { font-size: 1.8rem; }
    .btn { padding: 12px 24px; font-size: 0.95rem; }
    .btn-large { padding: 14px 30px; font-size: 1rem; }

    .menu-tab { padding: 10px 16px; font-size: 0.88rem; }
    .order-tab { padding: 14px 24px; font-size: 0.95rem; }

    .modal-image { height: 220px; }
    .modal-footer { flex-direction: column; align-items: stretch; }
    .modal-quantity { align-self: center; }
    .btn-add-cart { width: 100%; justify-content: center; }
}

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