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

:root {
    --primary: #d4860f;
    --primary-dark: #a86d0a;
    --primary-light: #f5a623;
    --accent: #ff6b35;
    --dark: #1a1a2e;
    --gray-dark: #16213e;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

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

/* ===== FLOATING NAVIGATION ===== */
.floating-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 3rem);
    max-width: 1400px;
    transition: var(--transition);
}

.floating-nav.scrolled {
    top: 1rem;
    backdrop-filter: blur(20px);
}

.nav-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .nav-logo:hover {
        opacity: 0.8;
        transform: translateY(-1px);
    }
}

.nav-logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
    font-size: 1.05rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-icon {
    font-size: 1.2rem;
    display: none;
    align-items: center;
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .nav-menu li a:hover {
        background: var(--gradient-primary);
        color: var(--white);
        transform: translateY(-2px);
    }

    .nav-menu li a:hover .nav-icon {
        transform: scale(1.15);
    }
}

.nav-menu li a.active {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(212, 134, 15, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.nav-cta::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;
}

@media (hover: hover) and (pointer: fine) {
    .nav-cta:hover::before {
        width: 300px;
        height: 300px;
    }

    .nav-cta:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(212, 134, 15, 0.6);
    }
}

.nav-cta:active {
    transform: translateY(-1px) scale(1.02);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 10;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary);
}

@media (min-width: 1200px) {
    .nav-menu {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-only {
        display: none;
    }

    .nav-right .nav-cta {
        animation: pulse 3s ease-in-out infinite;
        padding: 0.85rem 2rem;
        font-size: 1.1rem;
        border-radius: 30px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        letter-spacing: 0.5px;
    }
}

@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
    .nav-right .nav-cta:hover {
        border-color: rgba(255, 255, 255, 0.6);
        animation: none;
    }
}

/* Compact nav for smaller desktops */
@media (min-width: 1200px) and (max-width: 1399px) {
    .nav-menu li a {
        padding: 0.75rem 0.75rem;
        font-size: 0.95rem;
    }

    .nav-right .nav-cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Mobile Menu */
@media (max-width: 1199px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background: var(--white);
        border-radius: 20px;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(212, 134, 15, 0.1);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 300ms ease-out, transform 300ms ease-out, visibility 300ms;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 200ms ease-out, transform 200ms ease-out;
    }

    .nav-menu li:not(:last-child)::after {
        width: 100%;
        height: 1.5px;
        top: auto;
        bottom: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to right, transparent, var(--primary), transparent);
        opacity: 0.35;
    }

    .nav-menu li:nth-last-child(2)::after {
        display: none;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 50ms; }
    .nav-menu.active li:nth-child(2) { transition-delay: 100ms; }
    .nav-menu.active li:nth-child(3) { transition-delay: 150ms; }
    .nav-menu.active li:nth-child(4) { transition-delay: 200ms; }
    .nav-menu.active li:nth-child(5) { transition-delay: 250ms; }
    .nav-menu.active li:nth-child(6) { transition-delay: 300ms; }
    .nav-menu.active li:nth-child(7) { transition-delay: 350ms; }
    .nav-menu.active li:nth-child(8) { transition-delay: 400ms; }

    .nav-menu li a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-align: left;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        font-weight: 600;
    }

    .nav-icon {
        display: inline-flex;
        font-size: 1.3rem;
    }

    .nav-menu li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: var(--gradient-primary);
        transform: scaleY(0);
        transition: transform 200ms ease-out;
    }

    .nav-menu li a:hover::before,
    .nav-menu li a.active::before {
        transform: scaleY(1);
    }

    .nav-right .nav-cta {
        display: none;
    }

    .mobile-only {
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

    .mobile-only a {
        display: block;
        text-align: left;
        width: 100%;
    }
}

/* ===== FULL-SCREEN HERO ===== */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="pizza" patternUnits="userSpaceOnUse" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="2" fill="%23ffffff"/></pattern></defs><rect fill="url(%23pizza)" width="1200" height="800"/></svg>'),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 134, 15, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(168, 109, 10, 0.3) 0%, transparent 50%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title-main {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

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

@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (hover: hover) and (pointer: fine) {
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-4px);
    }
}

.hero-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    font-size: 2rem;
}

.info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
    text-align: left;
}

.info-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.info-text span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* ===== TOP PICKS SECTION ===== */
.top-picks-section {
    padding: 5rem 0;
    text-align: center;
}

.top-picks-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.top-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pick-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pick-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .pick-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary);
    }

    .pick-card:hover::before {
        opacity: 0.05;
    }
}

.pick-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pick-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.pick-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pick-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
    .pick-link:hover {
        gap: 1rem;
    }
}

/* ===== MENU SECTIONS ===== */
main {
    padding: 2rem 0;
}

.menu-section {
    margin-bottom: 5rem;
}

.menu-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--dark);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

/* Desktop: 3 columns */
@media (min-width: 1025px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Tablet: 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .item-image {
        height: 260px;
    }
}

/* Desktop image optimization */
@media (min-width: 1025px) {
    .item-image {
        height: 240px;
    }
}

/* Mobile image optimization */
@media (max-width: 768px) {
    .item-image {
        height: 240px;
    }
}

.menu-item {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 140px;
}

.menu-item.with-image {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: auto;
}

.item-image {
    width: 100%;
    height: 280px;
    border-radius: 24px 24px 0 0;
    object-fit: cover;
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .menu-item:hover .item-image {
        transform: scale(1.02);
    }
}

.item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.75rem;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .menu-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-light);
    }

    .menu-item:hover::before {
        height: 100%;
    }
}

.menu-item.featured {
    background: linear-gradient(135deg, rgba(212, 134, 15, 0.08) 0%, var(--white) 100%);
    border-color: var(--primary);
}

.menu-item.special {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, var(--white) 100%);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.item-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .price {
        font-size: 1.3rem;
        max-width: 100%;
    }
}

.ingredients {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    min-height: 1.7em;
}

.badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    box-shadow: var(--shadow-sm);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: var(--light);
    padding: 5rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.reviews-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

@media (hover: hover) and (pointer: fine) {
    .review-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-light);
    }
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.review-text {
    color: var(--dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.review-author {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    text-align: center;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 1.25rem;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .faq-item:hover {
        box-shadow: var(--shadow-md);
    }
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .faq-question:hover {
        background: var(--gray-light);
        color: var(--primary);
    }
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--gray-light);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* ===== FOOTER ===== */
footer {
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 0;
    margin-top: 5rem;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 134, 15, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(212, 134, 15, 0.4);
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .footer-logo img:hover {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(212, 134, 15, 0.6);
    }
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin: 0;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(212, 134, 15, 0.3);
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 1.25rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(212, 134, 15, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(212, 134, 15, 0.3);
    color: var(--white);
    position: relative;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .social-btn:hover::before {
        opacity: 1;
    }

    .social-btn:hover {
        transform: translateY(-5px) scale(1.1);
        background: rgba(212, 134, 15, 0.25);
        box-shadow: 0 10px 30px rgba(212, 134, 15, 0.4);
        border-color: var(--primary);
    }
}

.social-btn svg,
.social-btn img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.tripadvisor-btn img {
    filter: brightness(0) invert(1);
}

@media (hover: hover) and (pointer: fine) {
    .tiktok-btn:hover {
        background: #000000;
        border-color: #00f2ea;
    }

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

    .tripadvisor-btn:hover {
        background: #34E0A1;
        border-color: #34E0A1;
    }
}

.copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 134, 15, 0.3);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }

    .social-buttons {
        gap: 1rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
    }

    .copyright {
        font-size: 0.85rem;
    }
}

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

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

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 134, 15, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(212, 134, 15, 0.6);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 1rem 1.5rem 3rem;
    }

    .hero-info {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    /* Clean 2x2 Grid for Top Picks on Mobile */
    .top-picks-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        margin-top: 2rem;
    }

    .pick-card {
        padding: 1.25rem 1rem;
        border-radius: 20px;
        text-align: center;
        background: var(--white);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-light);
    }

    .pick-icon {
        font-size: 2.25rem;
        margin-bottom: 0.6rem;
    }

    .pick-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.25;
        color: var(--dark);
    }

    .pick-card p {
        display: none;
    }

    .pick-link {
        position: absolute;
        inset: 0;
        font-size: 0;
        color: transparent;
    }

    .pick-card {
        position: relative;
    }

    .floating-nav {
        width: calc(100% - 2rem);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1.25rem;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-logo img {
        width: 48px;
        height: 48px;
    }

}

}

/* ===== PRODUCT DETAIL PAGE ===== */
/* Make menu items clickable */
.menu-item {
    cursor: pointer;
}

.menu-item.with-image .item-image {
    cursor: pointer;
}

.product-detail-page {
    min-height: 100vh;
}

.product-hero-section {
    padding-bottom: 1rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-top: 6rem;
    margin-bottom: 1rem;
    border: 2px solid var(--gray-light);
}

@media (hover: hover) and (pointer: fine) {
    .back-button:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateX(-5px);
        border-color: var(--primary);
    }
}

.product-image-full {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.product-detail-image {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.product-info-wrapper {
    background: var(--white);
    padding: 2rem 0 3rem;
}

.product-info-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.product-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1.25rem 0;
}

.product-detail-description {
    margin-bottom: 1.5rem;
}

.product-detail-description h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-detail-description p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 134, 15, 0.4);
}

@media (hover: hover) and (pointer: fine) {
    .product-call-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 134, 15, 0.5);
    }
}

.product-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gray-light);
}

@media (hover: hover) and (pointer: fine) {
    .product-back-btn:hover {
        background: var(--gray-light);
        border-color: var(--primary);
    }
}

/* Product Content Wrapper for Desktop Side-by-Side Layout */
.product-content-wrapper {
    display: flex;
    flex-direction: column;
}

/* Product Page Desktop Layout */
@media (min-width: 1024px) {
    .product-detail-page {
        padding-top: 7rem;
    }

    .product-detail-page > .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        margin-bottom: 2rem;
    }

    .product-content-wrapper {
        flex-direction: row;
        gap: 3rem;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        align-items: flex-start;
    }

    .product-hero-section {
        flex: 0 0 45%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .product-image-full {
        max-width: none;
        padding: 0;
    }

    .product-detail-image {
        max-height: 500px;
        width: 100%;
    }

    .product-info-wrapper {
        flex: 1;
        background: transparent;
        padding: 0 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-info-content {
        max-width: none;
        padding: 2rem 3rem;
        text-align: center;
    }

    .product-detail-title {
        margin-bottom: 1.5rem;
    }

    .product-detail-price {
        margin-bottom: 2.5rem;
        font-size: 2.5rem;
    }

    .product-detail-description {
        margin-bottom: 3rem;
        padding: 0 2rem;
    }

    .product-detail-description h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .product-detail-description p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .product-actions {
        justify-content: center;
    }

    .product-call-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.15rem;
    }
}

/* Product Page Responsive */
@media (max-width: 768px) {
    .product-hero-section {
        padding-bottom: 0.75rem;
    }

    .product-image-full {
        padding: 0 1rem;
    }

    .product-detail-image {
        max-height: 400px;
    }

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

    .product-info-content {
        padding: 0 1rem;
    }

    .product-detail-title {
        font-size: 1.5rem;
    }

    .product-detail-price {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .product-detail-description h3 {
        font-size: 1rem;
    }

    .product-detail-description p {
        font-size: 0.95rem;
    }

    .product-call-btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .product-back-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .back-button {
        margin-bottom: 0.75rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== RECOMMENDATIONS SECTION ===== */
.recommendations-section {
    background: var(--light);
    padding: 2.5rem 0 3rem;
}

.recommendations-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.recommendations-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.recommendations-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-light);
}

.recommendations-container::-webkit-scrollbar {
    height: 8px;
}

.recommendations-container::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 10px;
}

.recommendations-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.recommendations-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.recommendation-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
    .recommendation-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }
}

.recommendation-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light);
}

.recommendation-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.recommendation-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.recommendation-card-description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendation-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* Recommendations Responsive */
@media (max-width: 768px) {
    .recommendations-section {
        padding: 2rem 0;
    }

    .recommendations-title {
        margin-bottom: 1rem;
    }

    .recommendation-card {
        flex: 0 0 250px;
    }

    .recommendation-card-image {
        height: 180px;
    }

    .recommendation-card-title {
        font-size: 1.1rem;
    }

    .recommendation-card-price {
        font-size: 1.3rem;
    }
}

/* ===== IMAGE SWAP HOVER EFFECT ===== */
.image-swap-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.image-swap-container .item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px 24px 0 0;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

.image-swap-container .item-image.primary {
    opacity: 1;
    z-index: 2;
}

.image-swap-container .item-image.secondary {
    opacity: 0;
    z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
    .menu-item:hover .image-swap-container .item-image.primary {
        opacity: 0;
    }

    .menu-item:hover .image-swap-container .item-image.secondary {
        opacity: 1;
    }
}

/* Touch device support - tap to toggle */
.image-swap-container.tapped .item-image.primary {
    opacity: 0;
}

.image-swap-container.tapped .item-image.secondary {
    opacity: 1;
}

/* Responsive adjustments for image swap */
@media (min-width: 769px) and (max-width: 1024px) {
    .image-swap-container {
        height: 260px;
    }
}

@media (min-width: 1025px) {
    .image-swap-container {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .image-swap-container {
        height: 240px;
    }
}

/* Product page image swap */
.product-image-swap-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.product-image-swap-container .product-detail-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: opacity 0.4s ease-in-out;
}

.product-image-swap-container .product-detail-image.primary {
    position: relative;
    z-index: 2;
}

.product-image-swap-container .product-detail-image.secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
    .product-image-swap-container:hover .product-detail-image.primary {
        opacity: 0;
    }

    .product-image-swap-container:hover .product-detail-image.secondary {
        opacity: 1;
    }
}

/* Touch support for product page */
.product-image-swap-container.tapped .product-detail-image.primary {
    opacity: 0;
}

.product-image-swap-container.tapped .product-detail-image.secondary {
    opacity: 1;
}