:root {
    --restaurant-gold: #C4A262;
    --restaurant-gold-dark: #a78645;
    --restaurant-dark: #2c2c2c;
    --restaurant-gray: #666;
    --restaurant-light: #f8f8f8;
    --restaurant-border: #e7dfcf;
    --restaurant-white: #ffffff;
    --restaurant-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.restaurant-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.restaurant-section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.restaurant-section-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--restaurant-dark);
    margin: 0 0 12px;
}

.restaurant-section-heading p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--restaurant-gray);
}

/* HERO */
.restaurant-hero {
    position: relative;
    height: 84vh;
    min-height: 520px;
    overflow: hidden;
}

.restaurant-hero-carousel {
    position: absolute;
    inset: 0;
}

.restaurant-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.restaurant-hero-slide.active {
    opacity: 1;
}

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

.restaurant-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.48));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.restaurant-hero-title {
    font-size: clamp(42px, 6vw, 72px);
    margin: 0 0 18px;
    color: #fff;
}

.restaurant-hero-subtitle {
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 26px;
}

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

.restaurant-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid var(--restaurant-gold);
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
}

.restaurant-btn-gold {
    background: var(--restaurant-gold);
    color: #fff;
}

.restaurant-btn-gold:hover {
    background: var(--restaurant-gold-dark);
    border-color: var(--restaurant-gold-dark);
}

.restaurant-btn-outline {
    background: transparent;
    color: #fff;
}

.restaurant-btn-outline:hover {
    background: var(--restaurant-gold);
    color: #fff;
}

.restaurant-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
}

.restaurant-carousel-arrow:hover {
    background: rgba(196, 162, 98, 0.95);
}

.restaurant-carousel-arrow-prev {
    left: 24px;
}

.restaurant-carousel-arrow-next {
    right: 24px;
}

.restaurant-carousel-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.restaurant-carousel-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.restaurant-carousel-dot.active {
    background: var(--restaurant-gold);
}

/* DESCRIPTION */
.restaurant-description-section {
    padding: 80px 0;
}

.restaurant-description-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.restaurant-description-text p {
    font-size: 18px;
    line-height: 2;
    color: var(--restaurant-gray);
    margin: 0;
}

.restaurant-description-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.restaurant-description-image,
.restaurant-description-image-large {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--restaurant-shadow);
}

.restaurant-description-image img,
.restaurant-description-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.restaurant-description-image-large img {
    height: 320px;
}

.restaurant-description-image img {
    height: 190px;
}

/* HOURS */
.restaurant-hours-section {
    padding: 80px 0;
    background: var(--restaurant-light);
}

.restaurant-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.restaurant-hours-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--restaurant-shadow);
    border: 1px solid rgba(196, 162, 98, 0.15);
}

.restaurant-hours-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(196, 162, 98, 0.12);
    color: var(--restaurant-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.restaurant-hours-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.restaurant-hours-card p {
    margin: 0;
    color: var(--restaurant-gray);
    font-size: 16px;
}

/* MENUS */
.restaurant-menu-section,
.restaurant-signature-section,
.restaurant-cocktail-section,
.restaurant-allergy-section,
.restaurant-faq-section {
    padding: 80px 0;
}

.restaurant-section-alt {
    background: var(--restaurant-light);
}

.restaurant-menu-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--restaurant-shadow);
    border: 1px solid rgba(196, 162, 98, 0.18);
}

.restaurant-page-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.restaurant-page-tab {
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--restaurant-gold);
    background: transparent;
    color: var(--restaurant-gold-dark);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.25s ease;
}

.restaurant-page-tab.active,
.restaurant-page-tab:hover {
    background: var(--restaurant-gold);
    color: #fff;
}

.restaurant-menu-page {
    display: none;
}

.restaurant-menu-page.active {
    display: block;
}

.restaurant-menu-category + .restaurant-menu-category {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #eee;
}

.restaurant-menu-category-title {
    font-size: 24px;
    margin: 0 0 18px;
    color: var(--restaurant-gold-dark);
}

.restaurant-menu-subcategory {
    margin-top: 18px;
}

.restaurant-menu-subcategory-title {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--restaurant-dark);
}

.restaurant-menu-item {
    padding: 10px 0;
    border-bottom: 1px dashed #e6e1d3;
}

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

.restaurant-menu-item-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.restaurant-menu-item-name {
    font-size: 16px;
    line-height: 1.8;
    color: var(--restaurant-dark);
}

.restaurant-menu-item-price {
    white-space: nowrap;
    font-weight: 700;
    color: var(--restaurant-gold-dark);
}

.restaurant-menu-item-note {
    margin-top: 6px;
    font-size: 13px;
    color: var(--restaurant-gray);
    font-style: italic;
}

.restaurant-bar-card {
    margin-top: 26px;
}

/* SIGNATURE */
.restaurant-signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.restaurant-signature-image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--restaurant-shadow);
}

.restaurant-signature-image img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
}

/* COCKTAILS */
.restaurant-cocktail-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}

.restaurant-cocktail-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.35s ease;
}

.restaurant-cocktail-slide {
    min-width: calc(33.333% - 14px);
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--restaurant-shadow);
}

.restaurant-cocktail-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.restaurant-cocktail-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(44,44,44,0.65);
    color: #fff;
    cursor: pointer;
}

.restaurant-cocktail-arrow-prev {
    left: 8px;
}

.restaurant-cocktail-arrow-next {
    right: 8px;
}

/* ALLERGIES */
.restaurant-allergy-box {
    background: linear-gradient(135deg, #2d2d2d, #3b3b3b);
    color: #fff;
    border-radius: 24px;
    padding: 42px 28px;
    text-align: center;
    box-shadow: var(--restaurant-shadow);
}

.restaurant-allergy-box h2 {
    color: var(--restaurant-gold);
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
}

.restaurant-allergy-box p {
    margin: 0 auto;
    max-width: 850px;
    line-height: 1.9;
    font-size: 16px;
}

/* FAQ */
.restaurant-faq-list {
    max-width: 920px;
    margin: 0 auto;
}

.restaurant-faq-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--restaurant-shadow);
    overflow: hidden;
    border: 1px solid rgba(196, 162, 98, 0.15);
}

.restaurant-faq-item + .restaurant-faq-item {
    margin-top: 16px;
}

.restaurant-faq-question {
    width: 100%;
    border: none;
    background: #fff;
    text-align: left;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--restaurant-dark);
}

.restaurant-faq-icon {
    font-size: 24px;
    color: var(--restaurant-gold-dark);
    line-height: 1;
}

.restaurant-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.restaurant-faq-answer.open {
    max-height: 500px;
}

.restaurant-faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--restaurant-gray);
    line-height: 1.9;
}

/* PLACEHOLDER MODAL */
.restaurant-placeholder-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,0.55);
}

.restaurant-placeholder-modal.active {
    display: flex;
}

.restaurant-placeholder-modal-content {
    position: relative;
    width: min(520px, 100%);
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--restaurant-shadow);
    text-align: center;
}

.restaurant-placeholder-modal-content h3 {
    margin: 0 0 12px;
    color: var(--restaurant-dark);
}

.restaurant-placeholder-modal-content p {
    margin: 0;
    color: var(--restaurant-gray);
    line-height: 1.8;
}

.restaurant-placeholder-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: var(--restaurant-gold-dark);
}

.restaurant-book-cta-section {
    padding: 30px 0 10px;
}

.restaurant-book-cta-box {
    text-align: center;
}

.restaurant-btn-large {
    min-width: 220px;
    font-size: 16px;
    padding: 14px 34px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .restaurant-description-grid,
    .restaurant-hours-grid,
    .restaurant-signature-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-cocktail-slide {
        min-width: calc(50% - 10px);
    }

    .restaurant-hero {
        min-height: 460px;
    }
}

@media (max-width: 768px) {
    .restaurant-hero {
        height: 72vh;
        min-height: 420px;
    }

    .restaurant-hero-title {
        font-size: 42px;
    }

    .restaurant-hero-subtitle {
        font-size: 16px;
    }

    .restaurant-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .restaurant-carousel-arrow-prev {
        left: 14px;
    }

    .restaurant-carousel-arrow-next {
        right: 14px;
    }

    .restaurant-description-image-large img {
        height: 240px;
    }

    .restaurant-description-image img,
    .restaurant-signature-image img,
    .restaurant-cocktail-slide img {
        height: 220px;
    }

    .restaurant-cocktail-slide {
        min-width: 100%;
    }

    .restaurant-menu-card {
        padding: 18px;
    }

    .restaurant-menu-item-main {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .restaurant-container {
        width: min(1200px, calc(100% - 20px));
    }

    .restaurant-menu-section,
    .restaurant-signature-section,
    .restaurant-cocktail-section,
    .restaurant-allergy-section,
    .restaurant-faq-section,
    .restaurant-description-section,
    .restaurant-hours-section {
        padding: 60px 0;
    }

    .restaurant-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .restaurant-btn {
        width: 100%;
        max-width: 280px;
    }

    .restaurant-description-image-row {
        grid-template-columns: 1fr;
    }

    .restaurant-hours-card {
        padding: 24px 18px;
    }

    .restaurant-page-tab {
        width: 100%;
    }
}


/* =========================================
   RESTAURANT RESERVATION MODAL STEPS
========================================= */
.restaurant-reservation-modal-content {
    position: relative;
    width: min(760px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--restaurant-shadow);
}

.restaurant-reservation-header {
    margin-bottom: 22px;
    text-align: center;
}

.restaurant-reservation-header h3 {
    margin: 0 0 18px;
    color: var(--restaurant-dark);
    font-size: 30px;
}

.restaurant-reservation-steps-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.restaurant-step-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--restaurant-gold);
    color: var(--restaurant-gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: #fff;
}

.restaurant-step-badge.active {
    background: var(--restaurant-gold);
    color: #fff;
}

.restaurant-step-badge.done {
    background: rgba(196, 162, 98, 0.18);
    color: var(--restaurant-gold-dark);
}

.restaurant-reservation-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.restaurant-reservation-alert.error {
    background: #fff2f2;
    color: #b42318;
    border: 1px solid #f3c1c1;
}

.restaurant-reservation-alert.success {
    background: #eefaf1;
    color: #117a38;
    border: 1px solid #bfe5c7;
}

.restaurant-step-panel {
    display: none;
}

.restaurant-step-panel.active {
    display: block;
}

.restaurant-step-title {
    margin: 0 0 18px;
    color: var(--restaurant-dark);
    font-size: 24px;
}

.restaurant-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.restaurant-people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

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

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

.restaurant-form-control {
    width: 100%;
    min-height: 48px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--restaurant-dark);
    background: #fff;
}

textarea.restaurant-form-control {
    min-height: 110px;
    resize: vertical;
}

.restaurant-checkbox-label {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    font-weight: 500 !important;
}

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

.restaurant-choice-card {
    min-height: 64px;
    border: 1px solid var(--restaurant-gold);
    background: #fff;
    color: var(--restaurant-gold-dark);
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 14px 18px;
}

.restaurant-choice-card:hover,
.restaurant-choice-card.active {
    background: var(--restaurant-gold);
    color: #fff;
}

.restaurant-choice-card.disabled,
.restaurant-choice-card:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f3f3;
    color: #999;
    border-color: #ddd;
}

.restaurant-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.restaurant-btn-secondary {
    background: #f2f2f2;
    color: var(--restaurant-dark);
    border-color: #ddd;
}

.restaurant-btn-secondary:hover {
    background: #e7e7e7;
}

.restaurant-step-summary {
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 14px;
    background: #faf7f1;
    border: 1px solid var(--restaurant-border);
    color: var(--restaurant-dark);
    line-height: 1.8;
}

.restaurant-time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.restaurant-time-slot {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid var(--restaurant-gold);
    background: #fff;
    color: var(--restaurant-gold-dark);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 10px 14px;
}

.restaurant-time-slot:hover,
.restaurant-time-slot.active {
    background: var(--restaurant-gold);
    color: #fff;
}

.restaurant-no-slots {
    padding: 16px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px dashed #ddd;
    color: var(--restaurant-gray);
}

.restaurant-phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.restaurant-phone-row select {
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 0 10px;
    background: #fff;
    font-weight: 600;
}
.restaurant-country-code {
    min-height: 48px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #f7f7f7;
    white-space: nowrap;
    font-weight: 600;
    color: var(--restaurant-dark);
}

.restaurant-hotel-check-result {
    padding: 14px 16px;
    border-radius: 12px;
    line-height: 1.8;
    font-size: 14px;
}

.restaurant-hotel-check-result.success {
    background: #eefaf1;
    color: #117a38;
    border: 1px solid #bfe5c7;
}

.restaurant-hotel-check-result.warning {
    background: #fff8ea;
    color: #9a6700;
    border: 1px solid #f1d28a;
}

.restaurant-hotel-confirm-box {
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 14px;
    background: #faf7f1;
    border: 1px solid var(--restaurant-border);
}

.restaurant-hotel-confirm-line + .restaurant-hotel-confirm-line {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .restaurant-reservation-modal-content {
        padding: 20px 16px;
    }

    .restaurant-form-grid,
    .restaurant-people-grid,
    .restaurant-client-type-grid,
    .restaurant-time-slots {
        grid-template-columns: 1fr;
    }

    .restaurant-step-actions {
        flex-direction: column;
    }

    .restaurant-step-actions .restaurant-btn {
        width: 100%;
    }

    .restaurant-checkbox-label {
        margin-top: 8px;
    }

    .restaurant-phone-row {
        flex-direction: column;
        align-items: stretch;
    }
}

.restaurant-hotel-confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .restaurant-hotel-confirm-actions {
        flex-direction: column;
    }

    .restaurant-hotel-confirm-actions .restaurant-btn {
        width: 100%;
    }
}

.restaurant-success-box {
    text-align: center;
    padding: 24px 18px;
    border: 1px solid #d8eadc;
    background: #f3fbf5;
    border-radius: 18px;
}

.restaurant-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #1f9d55;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
}

.restaurant-success-box h5 {
    margin: 0 0 10px;
    font-size: 24px;
    color: var(--restaurant-dark);
}

.restaurant-success-box p {
    margin: 0 0 18px;
    color: var(--restaurant-gray);
    line-height: 1.8;
}


.restaurant-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.restaurant-btn .btn-loader {
    margin-left: 8px;
    font-size: 14px;
}

/* =========================================
   RESTAURANT MODAL MOBILE FIXES
========================================= */
@media (max-width: 768px) {
    .restaurant-step-actions {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .restaurant-step-actions .restaurant-btn {
        width: auto !important;
        min-width: 130px;
        max-width: 48%;
        flex: 0 1 auto;
    }

    .restaurant-reservation-steps-top {
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .restaurant-reservation-steps-top::-webkit-scrollbar {
        display: none;
    }

    .restaurant-step-badge {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
        border-radius: 50%;
        padding: 0;
        font-size: 0;
        line-height: 0;
        border-width: 1px;
    }

    .restaurant-step-badge.active {
        background: var(--restaurant-gold);
        border-color: var(--restaurant-gold);
    }

    .restaurant-step-badge.done {
        background: rgba(196, 162, 98, 0.30);
        border-color: var(--restaurant-gold);
    }
}

@media (max-width: 480px) {
    .restaurant-step-actions {
        justify-content: center;
        gap: 8px;
    }

    .restaurant-step-actions .restaurant-btn {
        min-width: 120px;
        max-width: 47%;
        padding: 11px 16px;
        font-size: 14px;
    }

    .restaurant-reservation-header h3 {
        font-size: 24px;
    }

    .restaurant-step-title {
        font-size: 20px;
        text-align: center;
    }

    .restaurant-phone-row {
        flex-direction: column;
        align-items: stretch;
    }

    .restaurant-country-code {
        justify-content: center;
        width: 100%;
    }
}

/* =========================================
   HOTEL CONFIRM BUTTONS (Oui / Non)
========================================= */
.restaurant-hotel-confirm-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.restaurant-hotel-confirm-actions .restaurant-btn {
    min-width: 200px;
    padding: 12px 18px;
    font-size: 15px;
}

/* زر Oui (primary) */
.restaurant-hotel-confirm-actions .restaurant-btn-gold {
    background: var(--restaurant-gold);
    color: #fff;
    border-color: var(--restaurant-gold);
}

.restaurant-hotel-confirm-actions .restaurant-btn-gold:hover {
    background: var(--restaurant-gold-dark);
}

/* زر Non */
.restaurant-hotel-confirm-actions .restaurant-btn-secondary {
    background: #f5f5f5;
    color: var(--restaurant-dark);
    border: 1px solid #ddd;
}

.restaurant-hotel-confirm-actions .restaurant-btn-secondary:hover {
    background: #e9e9e9;
}


/* =========================================
   FINAL FIX - MENU TABS MOBILE
========================================= */
@media (max-width: 768px) {
    .restaurant-page-tabs {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .restaurant-page-tabs::-webkit-scrollbar {
        display: none;
    }

    .restaurant-page-tabs .restaurant-page-tab {
        width: auto !important;
        min-width: 54px !important;
        max-width: none !important;
        min-height: 36px !important;
        padding: 7px 14px !important;
        font-size: 13px !important;
        border-radius: 999px !important;
        white-space: nowrap !important;
        flex: 0 0 auto !important;
    }
}

@media (max-width: 480px) {
    .restaurant-page-tabs .restaurant-page-tab {
        width: auto !important;
        min-width: 48px !important;
        padding: 7px 12px !important;
        font-size: 12px !important;
    }
}


