@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Sora:wght@400;600;700;800&display=swap');

:root {
    --bg-dark: #09090b;
    --bg-card: #141418;
    --bg-card-hover: #1e1e24;
    --primary-pink: #ec4899;
    --primary-pink-hover: #db2777;
    --accent-orange: #f97316;
    --accent-orange-hover: #ea580c;
    --text-white: #ffffff;
    --text-muted: #a1a1aa;
    --border-color: #27272a;
    --neon-pink-glow: 0 0 20px rgba(236, 72, 153, 0.4);
    --neon-orange-glow: 0 0 20px rgba(249, 115, 22, 0.4);
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-pink);
}

/* Section Container */
section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    background: linear-gradient(to right, var(--text-white), var(--primary-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid var(--primary-pink);
    box-shadow: var(--neon-pink-glow);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.logo-text span {
    display: block;
    color: var(--accent-orange);
    font-size: 0.9rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    transition: var(--transition-smooth);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Button & Cart Icon */
.cart-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--neon-pink-glow);
    background: rgba(236, 72, 153, 0.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--neon-pink-glow);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.12) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    background-image: url("logo.jpeg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 55%;
    opacity: 0.08;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 850px;
    z-index: 10;
    padding: 0 20px;
    animation: fadeIn 1.2s ease-out;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-title-sub {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-white) 40%, var(--primary-pink) 70%, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-togo {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 7.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 0.95;
    margin: 10px auto 25px auto;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(var(--neon-pink-glow));
    animation: pulseGlow 3s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.35));
        transform: scale(0.97);
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(249, 115, 22, 0.6));
        transform: scale(1.03);
    }
}

.hero-phrase {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

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

.btn {
    text-decoration: none;
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--text-white);
    box-shadow: var(--neon-pink-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(236, 72, 153, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
    transform: translateY(-3px);
}

/* Dynamic Promos Banner */
.promos-bar {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.95), rgba(249, 115, 22, 0.95));
    color: var(--text-white);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.promos-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    gap: 40px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* About Us Section */
.about {
    background-color: rgba(20, 20, 24, 0.3);
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(236, 72, 153, 0.4);
    background: var(--bg-card-hover);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.value-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-img-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

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

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

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.about-badge h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-pink);
    margin-bottom: 4px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.3);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Menu Section */
.menu {
    background: var(--bg-dark);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.tab-btn:hover {
    color: var(--text-white);
    border-color: var(--text-muted);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--text-white);
    border-color: transparent;
    box-shadow: var(--neon-pink-glow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    min-height: 400px;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.menu-card-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-orange);
    font-size: 1.25rem;
    white-space: nowrap;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.menu-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-pink);
    text-transform: uppercase;
    background: rgba(236, 72, 153, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.menu-card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.sauce-selectors-container {
    background: rgba(9, 9, 11, 0.4);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.sauce-select-label {
    display: block;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.sauce-select {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 6px;
    border-radius: 6px;
    font-size: 0.8rem;
    outline: none;
    margin-bottom: 8px;
}

.sauce-select:last-child {
    margin-bottom: 0;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.add-to-cart-btn:hover {
    box-shadow: var(--neon-pink-glow);
    opacity: 0.95;
}

/* Salsas List Overlay/Display */
.salsas-showcase {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
}

.salsas-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-pink);
}

.salsas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.salsa-chip {
    background: rgba(9, 9, 11, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.salsa-chip:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.05);
}

/* Gallery Section */
.gallery {
    background: rgba(20, 20, 24, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background: #000;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(236, 72, 153, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-icon {
    color: var(--text-white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-media {
    transform: scale(1.1);
}

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

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(9, 9, 11, 0.7);
    color: var(--text-white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--primary-pink);
}

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

.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.lightbox-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    z-index: 1005;
}

.lightbox-btn:hover {
    background: var(--primary-pink);
    border-color: transparent;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* Testimonials / Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.review-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(236, 72, 153, 0.05);
    line-height: 1;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-info h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.review-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Add Review Form Styles */
.add-review-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.add-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.add-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
}

.add-review-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.add-review-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 30px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-stars-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
    height: 44px; /* match input height */
}

.star-input {
    font-size: 1.8rem;
    color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.star-input:hover,
.star-input:hover ~ .star-input {
    color: #fbbf24;
    opacity: 0.8;
}

.star-input.active {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.submit-review-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
    border: none;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--neon-pink-glow);
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(236, 72, 153, 0.6);
}

/* Contact & Info */
.contact {
    background: var(--bg-dark);
}

.contact-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    background: rgba(236, 72, 153, 0.1);
    color: var(--primary-pink);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.info-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.btn-fb {
    background: #1877f2;
    color: var(--text-white);
}
.btn-fb:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24,119,242,0.3);
}

.btn-wa {
    background: #25d366;
    color: var(--text-white);
}
.btn-wa:hover {
    background: #22c35e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-phone {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-white);
}
.btn-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.map-container {
    height: 100%;
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: #101014;
    border-left: 1px solid var(--border-color);
    z-index: 150;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    color: var(--text-muted);
    padding-top: 50px;
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    position: relative;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding-right: 20px;
}

.cart-item-price {
    font-weight: 800;
    color: var(--accent-orange);
}

.cart-item-details {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-dark);
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    color: var(--primary-pink);
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 700;
    width: 28px;
    text-align: center;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.remove-item-btn:hover {
    color: #ef4444;
}

/* Cart Form & Footer */
.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: #0d0d10;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.summary-row.total {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-white);
    border-top: 1px dashed var(--border-color);
    padding-top: 12px;
    margin-top: 4px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-input, .form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    padding: 10px 12px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: var(--neon-pink-glow);
}

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

.delivery-fields {
    display: none;
    flex-direction: column;
    gap: 12px;
    border-left: 2px solid var(--primary-pink);
    padding-left: 12px;
    margin-top: 6px;
}

.delivery-fields.active {
    display: flex;
}

.order-now-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--text-white);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--neon-pink-glow);
    transition: var(--transition-smooth);
}

.order-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(236, 72, 153, 0.6);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background: #09090b;
    padding: 60px 24px 30px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-brand-title span {
    color: var(--primary-pink);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--primary-pink);
    border-color: transparent;
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-links h4, .footer-hours h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-pink);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-hours p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

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

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Overlay blur behind cart drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 140;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-container {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobile nav handles this */
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: #09090b;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        z-index: 99;
    }
    
    .nav-menu.mobile-open {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    .hero-title-main {
        font-size: 3.5rem;
    }
    
    .hero-title-sub {
        font-size: 2.2rem;
    }

    .hero-phrase {
        font-size: 1.1rem;
    }

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
    
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .salsas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 12px;
    }
    
    .lightbox-next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2.8rem;
    }
    
    .hero-title-sub {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .salsas-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
