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

:root {
    /* Ana Renkler */
    --primary-color: #D4B574; /* Altın - butonlar, vurgular */
    --secondary-color: #1B1B1B; /* Kömür Siyah */
    --accent-color: #D4B574; /* Altın - detaylar, ikonlar, başlık alt çizgisi */
    --dark-color: #000000; /* Saf Siyah - Hero alan, contrast bölümler */
    --darker-color: #1B1B1B; /* Kömür Siyah */
    --light-color: #FFF7E5; /* Krem */
    --text-color: #1B1B1B;
    --white: #ffffff;
    /* İtalyan Temalı Destek Renkleri */
    --red-accent: #CC3931; /* Sıcak Kırmızı */
    --green-accent: #0F5F3F; /* Koyu İtalyan Yeşili */
    --transition: all 0.3s ease;
    --spacing: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* WhatsApp Button */
.contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.phone-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.phone-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.phone-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background 0.2s ease, backdrop-filter 0.2s ease, box-shadow 0.2s ease;
    will-change: background, backdrop-filter, box-shadow;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, backdrop-filter 0.2s ease, box-shadow 0.2s ease;
}

/* Logo text removed - only image is used now */
.header.scrolled .logo h1 {
    color: var(--white);
    transition: color 0.2s ease;
}

.header.scrolled .logo span {
    color: var(--accent-color);
    transition: color 0.2s ease;
}

.header.scrolled .nav-link {
    color: var(--white);
}

.header.scrolled .nav-link:hover {
    color: var(--accent-color);
}

.navbar {
    padding: 1.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

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

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

.logo:active {
    transform: scale(0.98);
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.logo span {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    font-style: italic;
    margin-top: -2px;
    font-family: 'League Spartan', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 1.15rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
    font-family: 'Sora', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icons-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.header.scrolled .social-icon {
    background: rgba(255, 255, 255, 0.9);
}

.whatsapp-icon {
    color: #25D366;
}

.whatsapp-icon:hover {
    background: #25D366;
    color: var(--white);
    transform: scale(1.1);
}

.instagram-icon {
    color: #E4405F;
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    transform: scale(1.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.btn-reservation {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-reservation:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-cart {
    position: relative;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

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

.cart-icon {
    font-size: 1.2rem;
}

.cart-count {
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -5px;
    right: -5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 8px;
    transition: var(--transition);
    z-index: 1001;
}

.header.scrolled .menu-toggle {
    background: var(--white);
    border-color: #e0e0e0;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.header.scrolled .menu-toggle:hover {
    background: var(--light-color);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    display: block;
}

.header.scrolled .menu-toggle span {
    background: var(--dark-color);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--dark-color);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--dark-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('slider.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(27, 27, 27, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 800px;
    padding: 0 20px;
}

/* Header text color on hero */
.header:not(.scrolled) .logo h1,
.header:not(.scrolled) .logo span,
.header:not(.scrolled) .nav-link,
.header:not(.scrolled) .btn-reservation,
.header:not(.scrolled) .btn-cart {
    color: var(--white);
}

.header:not(.scrolled) .nav-link::after {
    background: var(--white);
}

.header:not(.scrolled) .btn-reservation {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header:not(.scrolled) .btn-reservation:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.header:not(.scrolled) .btn-cart {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.header:not(.scrolled) .btn-cart:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
    text-transform: uppercase;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 181, 116, 0.3);
    }
    50% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 181, 116, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'League Spartan', sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.95;
    font-family: 'Sora', sans-serif;
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero .btn-primary {
    background: linear-gradient(135deg, #D4B574, #F4D03F);
    color: var(--dark-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #D4B574, #F4D03F);
    color: var(--dark-color);
    box-shadow: 0 10px 30px rgba(212, 181, 116, 0.6);
    border-color: #D4B574;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.hero .btn-secondary:hover {
    background: linear-gradient(135deg, #D4B574, #F4D03F);
    color: var(--dark-color);
    border-color: #D4B574;
    box-shadow: 0 10px 30px rgba(212, 181, 116, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
    opacity: 0.7;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'League Spartan', sans-serif;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #000000 0%, #1B1B1B 25%, #2c2c2c 50%, #1B1B1B 75%, #000000 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.9;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    padding: 0 2rem;
    position: relative;
    font-family: 'Sora', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


.about-story {
    text-align: left;
}

.about-story h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    font-family: 'Sora', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.value-item h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.value-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
    font-family: 'Sora', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Awards Section */
.awards {
    background: url('back3.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.awards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.award-item {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    transition: var(--transition);
}

.award-item:hover::before {
    top: -30%;
    left: -30%;
}

.award-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.25);
}

.award-icon {
    position: relative;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.award-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.awards .section-title {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.awards .section-subtitle {
    color: var(--accent-color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.award-item h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.award-item p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-family: 'Sora', sans-serif;
}

.award-year {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Menu Section */
.menu {
    background: url('back3.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}


/* Decorative elements removed for clean background image */


/* Keyframes removed - no longer needed */

.menu .container {
    position: relative;
    z-index: 1;
}

.menu .section-header {
    position: relative;
    z-index: 1;
}

.menu .section-title,
.menu .section-subtitle {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-search {
    flex: 1;
    min-width: 250px;
}

.menu-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
}

.menu-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.menu-quick-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.quick-btn {
    padding: 0.7rem 1.2rem;
    border: 1px solid #e0e0e0;
    background: var(--white);
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 400;
}

.quick-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.popular-banner {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.popular-banner h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.popular-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.popular-item {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.popular-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(212, 181, 116, 0.5);
}

.popular-item img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    filter: brightness(1) contrast(1.05) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    padding: 0.3rem;
}

.popular-item-info {
    flex: 1;
}

.popular-item-info h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-family: 'League Spartan', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.popular-item-info span {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-add-cart-small {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.btn-add-cart-small:hover {
    background: var(--secondary-color);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.5);
}

.btn-add-cart-small:active {
    transform: scale(0.95) rotate(90deg);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(212, 181, 116, 0.4);
    color: var(--white);
    border-color: var(--accent-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.menu-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 380px;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(212, 181, 116, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.menu-item-image {
    width: 45%;
    min-width: 300px;
    max-width: 400px;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.menu-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.menu-item:hover .menu-item-image::after {
    opacity: 1;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) contrast(1.05) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.08) translateZ(0);
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
}


.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.product-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.popular-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.award-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark-color);
}

.new-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(255, 107, 107, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.6);
        transform: scale(1.05);
    }
}

.menu-item-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    width: 100%;
}

.btn-add-cart {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    white-space: nowrap;
    min-width: 160px;
    height: 45px;
    box-shadow: 0 4px 15px rgba(212, 181, 116, 0.3);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-add-cart:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 181, 116, 0.5);
    background: #E4C97E;
}

.btn-add-cart span {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    animation: pizzaPulse 2s ease-in-out infinite;
}

@keyframes pizzaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.btn-view-details {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-view-details:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-view-details:active {
    transform: translateY(-1px);
}

.vegan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4caf50;
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-item-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    overflow: visible;
    min-height: 100%;
    max-width: 100%;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    min-height: auto;
    width: 100%;
}

.title-section {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    overflow: hidden;
    flex-wrap: wrap;
}

.cooking-time {
    display: none !important;
}

.chef-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin: 0.5rem 0;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-left: 3px solid var(--accent-color);
    border-radius: 5px;
    font-family: 'Sora', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    display: block;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
    overflow: visible;
}

.product-feature {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    font-family: 'Sora', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    flex-shrink: 0;
}

.product-feature:hover {
    background: rgba(212, 181, 116, 0.4);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.menu-item-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1.4rem);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    word-break: keep-all;
    overflow-wrap: normal;
    word-wrap: normal;
    flex: 1;
    min-width: 0;
    overflow: visible;
    display: block;
    hyphens: none;
    white-space: normal;
    text-transform: uppercase;
}

.menu-item:hover .menu-item-title {
    color: var(--accent-color);
}

.menu-item-price {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Bebas Neue', sans-serif;
    white-space: nowrap;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 181, 116, 0.4);
    transition: transform 0.3s ease;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    line-height: 1.2;
}

.menu-item:hover .menu-item-price {
    transform: scale(1.1);
}

.menu-item-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-family: 'Sora', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    display: block;
}

.menu-item-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Vegan Section */
.vegan {
    background: url('back3.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
}

.vegan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    pointer-events: none;
}

.vegan .section-title {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.vegan .section-subtitle {
    color: var(--accent-color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.vegan .container {
    position: relative;
    z-index: 1;
}

#veganGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    #veganGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.vegan-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.vegan-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    font-weight: 300;
    font-family: 'Sora', sans-serif;
}

/* Chefs Section */
.chefs {
    background: url('back3.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.chefs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.chef-item {
    text-align: center;
}

.chef-image {
    margin-bottom: 2rem;
}

.chef-placeholder {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 3px solid var(--primary-color);
}

.chefs .section-title {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.chefs .section-subtitle {
    color: var(--accent-color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.chef-info h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.chef-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.chef-bio {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.chef-signature {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Reviews Section */
.reviews {
    background: url('back3.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reviews .section-title {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.reviews .section-subtitle {
    color: var(--accent-color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.review-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    position: relative;
}

.review-item::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.review-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.2);
    border-left-color: var(--primary-color);
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-author strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.review-author span {
    font-size: 0.85rem;
    color: #999;
}

/* Gallery Section */
.gallery {
    background: url('back3.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.gallery .section-title {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.gallery .section-subtitle {
    color: var(--accent-color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    background: var(--light-color);
    min-height: 300px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
    z-index: 10;
}

.gallery-image {
    width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    padding: 1rem;
}

.gallery-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: url('back3.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-text h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.info-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--white);
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.map-link:hover {
    text-decoration: underline;
    color: var(--white);
}

.social-links {
    margin-top: 1rem;
}

.social-links h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
}

.social-icons a svg {
    width: 22px;
    height: 22px;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons .social-icon-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-icons .social-icon-facebook:hover {
    background: #1877F2;
    color: var(--white);
}

.social-icons .social-icon-youtube:hover {
    background: #FF0000;
    color: var(--white);
}

.social-icons .social-icon-tiktok:hover {
    background: #000000;
    color: var(--white);
}

.contact .section-title {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact .section-subtitle {
    color: var(--accent-color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-form {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(212, 181, 116, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="date"],
.form-group input[type="time"] {
    color-scheme: dark;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    color: #999;
    padding: 3rem 1rem;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

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

.cart-item-info h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-family: 'League Spartan', sans-serif;
}

.cart-item-info p {
    font-size: 0.9rem;
    color: #666;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-qty-btn {
    background: var(--light-color);
    border: 1px solid #e0e0e0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cart-remove {
    background: #ff6b6b;
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cart-remove:hover {
    background: #ee5a6f;
    transform: scale(1.1);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
    background: var(--light-color);
}

.cart-total {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cart-total strong {
    font-family: 'Bebas Neue', sans-serif;
}

.cart-note {
    margin-bottom: 1.5rem;
}

.cart-note label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cart-note textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    resize: vertical;
    transition: var(--transition);
    background: var(--white);
    min-height: 80px;
}

.cart-note textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.cart-note textarea::placeholder {
    color: #999;
    font-style: italic;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Product Detail Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.product-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-color);
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

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

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-modal-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(1) contrast(1.05) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.product-modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-color);
}

.product-modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    flex: 1;
}

.product-modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    white-space: nowrap;
}

.product-modal-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.product-modal-chef-note {
    font-size: 1rem;
    color: var(--primary-color);
    font-style: italic;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.product-modal-cooking-time {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-modal-ingredients {
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-color);
}

.product-modal-ingredients h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-modal-ingredients ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.product-modal-ingredients li {
    padding: 0.6rem 1rem;
    background: var(--light-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 2rem;
}

.product-modal-ingredients li::before {
    content: '✓';
    position: absolute;
    left: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-modal-cart {
    width: 100%;
    padding: 0.85rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1.5rem;
    min-width: 160px;
    height: 45px;
    border-radius: 30px;
    background: linear-gradient(135deg, #D4B574, #F4D03F);
    color: var(--dark-color);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

.btn-modal-cart:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 4px 15px rgba(212, 181, 116, 0.3);
    background: linear-gradient(135deg, #F4D03F, #D4B574);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.modal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 180px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 4000;
    opacity: 0;
    transform: translateX(400px);
    transition: var(--transition);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        padding: 80px 0 20px 0;
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.3);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        transition: left 0.25s ease-out;
        z-index: 2000;
        overflow-y: auto;
        overflow-x: hidden;
        list-style: none;
        margin: 0;
        display: flex !important;
        box-sizing: border-box;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        background: rgba(0, 0, 0, 0.6);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        backdrop-filter: blur(2px);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block !important;
        list-style: none !important;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link {
        display: block !important;
        font-size: 1.4rem !important;
        padding: 1.4rem 2rem !important;
        color: #ffffff !important;
        font-weight: 400 !important;
        text-decoration: none !important;
        transition: var(--transition);
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        font-family: 'Sora', sans-serif;
        letter-spacing: 0.5px;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:focus {
        background: rgba(212, 181, 116, 0.15) !important;
        color: var(--accent-color) !important;
        padding-left: 2.5rem !important;
    }

    .nav-menu .nav-link::after {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 2001;
        order: 3;
    }

    .header .logo {
        z-index: 2002;
        position: relative;
        flex-shrink: 0;
    }
    
    .logo-img {
        height: 35px !important;
        width: auto;
    }
    
    .logo-content {
        min-width: 0;
    }
    
    .logo h1 {
        font-size: 1.3rem !important;
    }
    
    .logo span {
        font-size: 0.6rem !important;
    }

    .social-icons-header {
        display: none;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .btn-reservation {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .btn-cart {
        padding: 0.5rem 0.8rem;
    }

    .contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .phone-btn,
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }

    .phone-btn svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .social-icons a svg {
        width: 18px;
        height: 18px;
    }
    
    .social-links h4 {
        font-size: 1.1rem;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .menu-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-quick-actions {
        justify-content: center;
    }

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

    .scroll-top {
        bottom: 165px;
        right: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .menu-grid,
    .gallery-grid,
    .chefs-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .about-quote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-icons a {
        width: 42px;
        height: 42px;
    }
    
    .social-icons a svg {
        width: 20px;
        height: 20px;
    }
    
    .social-links h4 {
        font-size: 1.2rem;
    }

    .menu-item-actions {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .btn-add-cart,
    .btn-view-details {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }

    .product-modal-body {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .menu-item {
        flex-direction: column;
        min-height: auto;
        border-radius: 20px;
    }

    .menu-item-image {
        width: 100%;
        height: 280px;
        min-height: 280px;
        max-height: 280px;
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-item-content {
        padding: 1.5rem;
    }

    .menu-item-title {
        font-size: 1.8rem;
    }

    .menu-item-price {
        font-size: 1.7rem;
    }

    .menu-item-description {
        font-size: 1.1rem;
    }

    .menu-item-content {
        min-height: auto;
    }

    .product-modal-image {
        min-height: 350px;
    }

    .product-modal-ingredients ul {
        grid-template-columns: 1fr;
    }

    .popular-items {
        grid-template-columns: 1fr;
    }

    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* Gallery Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-content img {
        max-height: 85vh;
    }

    .menu-item-actions {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .btn-add-cart,
    .btn-view-details {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }

    .product-modal-body {
        grid-template-columns: 1fr;
    }

    .product-modal-image {
        min-height: 350px;
    }

    .product-modal-info {
        padding: 2rem 1.5rem;
    }

    .btn-modal-cart {
        width: 100%;
        min-width: 100%;
    }

    .product-modal-header {
        flex-direction: column;
        gap: 1rem;
    }

    .product-modal-header h2 {
        font-size: 2rem;
    }

    .product-modal-ingredients ul {
        grid-template-columns: 1fr;
    }

    .product-features {
        gap: 0.4rem;
    }

    .product-feature {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}
