/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Colors - Warm Kebab Theme */
    --color-primary: #d4291a;
    --color-primary-dark: #a82317;
    --color-primary-light: #e64a3c;
    --color-secondary: #ffa726;
    --color-accent: #ffc107;

    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-dark: #1a1a1a;

    --color-success: #27ae60;
    --color-warning: #f39c12;
    --color-error: #e74c3c;

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;

    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;

    --line-height-base: 1.6;
    --line-height-heading: 1.2;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Container */
    --container-max-width: 1140px;
    --container-padding: 20px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-header: 1000;
    --z-lightbox: 2000;
    --z-scroll-top: 999;
}

/* ========================================
   RESET & NORMALIZE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   BASE STYLES
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: var(--line-height-heading);
    font-weight: 700;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

strong {
    font-weight: 600;
    color: var(--color-primary);
}

/* ========================================
   LAYOUT COMPONENTS
   ======================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

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

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: var(--z-header);
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: var(--spacing-xs) 0;
    box-shadow: var(--shadow-lg);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--container-padding);
}

.header__brand {
    flex: 1;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.header__tagline {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    font-style: italic;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-xs);
    z-index: calc(var(--z-header) + 1);
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav__list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav__link {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-base);
}

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

.nav__link:hover {
    color: var(--color-primary);
}

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

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 41, 26, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    z-index: -1;
}

.hero__content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.5rem;
    color: #ddd;
}

.star.filled {
    color: var(--color-accent);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stars--large .star {
    font-size: 2rem;
}

.rating__score {
    font-size: 1.5rem;
    font-weight: 700;
}

.rating__count {
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.hero__scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: var(--spacing-xs);
}

.scroll__icon {
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-align: center;
    cursor: pointer;
}

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

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

.btn--secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature {
    text-align: center;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.feature__text {
    color: var(--color-text-light);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--spacing-xl) 0;
}

.about__text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

.about__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.highlight {
    padding: var(--spacing-md);
    background: var(--color-bg-light);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
}

.highlight h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-sm);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

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

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

.gallery__icon {
    color: white;
    font-size: 3rem;
}

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

.lightbox.active {
    display: flex;
}

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

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

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    color: white;
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.lightbox__close {
    top: var(--spacing-md);
    right: var(--spacing-md);
}

.lightbox__prev {
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    padding: var(--spacing-xl) 0;
}

.reviews__summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.reviews__rating {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: var(--radius-lg);
}

.reviews__score {
    font-size: 4rem;
    font-weight: 700;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.reviews__count {
    opacity: 0.9;
}

.reviews__distribution {
    padding: var(--spacing-md);
}

.distribution__item {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    gap: var(--spacing-sm);
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.distribution__bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.distribution__fill {
    height: 100%;
    background: var(--color-accent);
    transition: width var(--transition-slow);
}

.reviews__list {
    display: grid;
    gap: var(--spacing-md);
}

.review {
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.review__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.review__date {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
}

.review__text {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.review__details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.review__detail {
    padding: 0.25rem 0.75rem;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

.review__ratings {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.review__rating-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
}

.review__images {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.review__image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition-base);
}

.review__image:hover {
    transform: scale(1.05);
}

.review__owner-response {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--color-bg-light);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
}

.review__owner-label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-size: var(--font-size-sm);
}

/* ========================================
   ORDER SECTION
   ======================================== */
.order {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.order__platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.order__platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
}

.order__platform:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.platform__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}

.platform__icon--glovo {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
}

.platform__icon--justeat {
    background: linear-gradient(135deg, #ff8000, #ff6b00);
    color: white;
}

.platform__icon--deliveroo {
    background: linear-gradient(135deg, #00ccbc, #00a896);
    color: white;
}

.order__platform:hover .platform__icon {
    transform: scale(1.1) rotate(5deg);
}

.platform__name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.platform__description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.platform__cta {
    color: var(--color-primary);
    font-weight: 600;
}

/* ========================================
   HOURS SECTION
   ======================================== */
.hours {
    padding: var(--spacing-xl) 0;
}

.hours__list {
    max-width: 600px;
    margin: 0 auto;
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hours__item--open .hours__time {
    color: var(--color-success);
    font-weight: 600;
}

.hours__item--closed .hours__time {
    color: var(--color-error);
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact__item {
    display: flex;
    gap: var(--spacing-sm);
}

.contact__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact__text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.contact__text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact__text a:hover {
    color: var(--color-primary-dark);
}

.contact__pluscode {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.contact__actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

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

.map__container iframe {
    width: 100%;
    min-height: 400px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__title {
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.footer__tagline {
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
}

.footer h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__list a {
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.footer__list a:hover {
    opacity: 1;
    color: var(--color-primary);
}

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

.footer__copyright {
    margin-bottom: 0.5rem;
}

.footer__note {
    font-size: var(--font-size-sm);
    opacity: 0.6;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-scroll-top);
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--color-primary-dark);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ========================================
   MEDIA QUERIES
   ======================================== */

/* Tablet */
@media (max-width: 1023px) {
    :root {
        --font-size-base: 15px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

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

/* Mobile */
@media (max-width: 767px) {
    :root {
        --font-size-base: 14px;
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: var(--z-header);
    }

    .nav__list.active {
        right: 0;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

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

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

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

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

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

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

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

    .contact__actions {
        flex-direction: column;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox__close {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}