/* ===============================================
   CSS VARIABLES
   =============================================== */
:root {
    /* Colors */
    --primary: #ff6b35;
    --primary-dark: #e5562f;
    --primary-light: #ff8558;
    --secondary: #f7931e;
    --accent: #fdc05d;

    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --bg-overlay: rgba(26, 26, 26, 0.7);

    --border-light: #e0e0e0;
    --border-medium: #cccccc;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);

    /* Spacing */
    --container-width: 1140px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================================
   RESET & BASE STYLES
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn--secondary:hover {
    background: var(--text-white);
    color: var(--primary);
}

/* ===============================================
   NAVIGATION
   =============================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav.nav--scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
}

.nav__logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}

.nav__subtitle {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 400;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    padding: 8px;
}

.nav__toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 50px;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(255, 107, 53, 0.3));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
}

.hero__title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 12px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero__info {
    display: flex;
    gap: 40px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__info-icon {
    font-size: 1.5rem;
}

.hero__info-text {
    font-size: 1rem;
    font-weight: 500;
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    backdrop-filter: blur(4px);
    transition: var(--transition-base);
}

.hero__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero__nav--prev {
    left: 30px;
}

.hero__nav--next {
    right: 30px;
}

.hero__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-base);
}

.hero__dot.active {
    background: var(--text-white);
    width: 32px;
    border-radius: 6px;
}

/* ===============================================
   ABOUT SECTION
   =============================================== */
.about {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__title {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about__description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about__stat {
    text-align: center;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.about__stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.about__stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about__image:hover img {
    transform: scale(1.05);
}

/* ===============================================
   FEATURES SECTION
   =============================================== */
.features {
    padding: var(--section-padding);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card__icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.feature-card__title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card__description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===============================================
   POPULAR DISHES SECTION
   =============================================== */
.popular-dishes {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.dish-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.dish-card__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.dish-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dish-card:hover .dish-card__image img {
    transform: scale(1.1);
}

.dish-card__content {
    padding: 24px;
}

.dish-card__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.dish-card__description {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.dish-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dish-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
}

/* ===============================================
   GALLERY SECTION
   =============================================== */
.gallery {
    padding: var(--section-padding);
}

.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery__filter {
    padding: 10px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition-base);
}

.gallery__filter:hover,
.gallery__filter.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    border-color: transparent;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__zoom {
    font-size: 2rem;
    background: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.gallery__zoom:hover {
    transform: scale(1.1);
}

/* ===============================================
   REVIEWS SECTION
   =============================================== */
.reviews {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.reviews__overall {
    text-align: center;
}

.reviews__rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.reviews__stars {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.reviews__count {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.review-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-bar__label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 30px;
}

.review-bar__track {
    flex: 1;
    height: 12px;
    background: var(--bg-light);
    border-radius: 6px;
    overflow: hidden;
}

.review-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 1s ease;
}

.review-bar__count {
    font-weight: 600;
    color: var(--text-medium);
    min-width: 30px;
    text-align: right;
}

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

.review-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-card__stars {
    color: var(--accent);
    font-size: 1.2rem;
}

.review-card__date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-card__text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 12px;
}

.review-card__translated {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 12px;
}

.review-card__context {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.review-context {
    font-size: 0.875rem;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 12px;
    color: var(--text-medium);
}

.review-card__ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.review-rating {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.review-card__images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.review-card__images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===============================================
   ORDER SECTION
   =============================================== */
.order {
    padding: var(--section-padding);
}

.order__platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.order__platform {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.order__platform:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.order__platform-icon {
    font-size: 3rem;
}

.order__platform-content {
    flex: 1;
}

.order__platform-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.order__platform-description {
    font-size: 1rem;
    color: var(--text-medium);
}

.order__platform-arrow {
    font-size: 2rem;
    color: var(--primary);
}

/* ===============================================
   HOURS SECTION
   =============================================== */
.hours {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.hours__grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours__day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.hours__day:hover {
    transform: translateX(8px);
}

.hours__day--special {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
}

.hours__day-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.hours__day-time {
    font-weight: 500;
    font-size: 1rem;
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
.contact {
    padding: var(--section-padding);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact__info-item {
    display: flex;
    gap: 20px;
}

.contact__info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact__info-content {
    flex: 1;
}

.contact__info-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact__info-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact__info-text a {
    color: var(--primary);
    font-weight: 500;
}

.contact__info-text a:hover {
    text-decoration: underline;
}

.contact__info-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-top: 8px;
}

.contact__info-link:hover {
    text-decoration: underline;
}

.contact__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.footer__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer__subtitle {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer__links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer__copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===============================================
   LIGHTBOX
   =============================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-white);
    background: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 10000;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox__nav--prev {
    left: 40px;
}

.lightbox__nav--next {
    right: 40px;
}

/* ===============================================
   ANIMATIONS
   =============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================
   RESPONSIVE - TABLET
   =============================================== */
@media (max-width: 1023px) {
    :root {
        --section-padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews__summary {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===============================================
   RESPONSIVE - MOBILE
   =============================================== */
@media (max-width: 767px) {
    :root {
        --section-padding: 50px 0;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-base);
    }

    .nav__menu.active {
        max-height: 500px;
    }

    .nav__item--cta {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero__info {
        flex-direction: column;
        gap: 16px;
    }

    .hero__nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero__nav--prev {
        left: 10px;
    }

    .hero__nav--next {
        right: 10px;
    }

    .about__stats {
        grid-template-columns: 1fr;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .dishes__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .order__platforms {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .lightbox__close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox__nav--prev {
        left: 10px;
    }

    .lightbox__nav--next {
        right: 10px;
    }
}