@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-color: #0f0f11;
    --surface-color: rgba(30, 30, 35, 0.6);
    --surface-hover: rgba(45, 45, 52, 0.8);
    --text-primary: #f8f8f8;
    --text-secondary: #a0a0a5;
    --accent-color: #e5984e; /* Warm coffee/gold accent */
    --accent-hover: #c9823e;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 50% 0%, rgba(30, 30, 35, 0.6) 0%, transparent 70%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Animated Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: float 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-color);
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: #e5984e;
    animation-delay: -5s;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(15, 15, 17, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-color);
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.cart-trigger {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    padding: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-trigger:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero.clean-hero {
    min-height: 70vh;
    justify-content: center;
    text-align: center;
}

.hero.clean-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 i {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, var(--accent-color), #f2af72);
    color: #111;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(229, 152, 78, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 152, 78, 0.3);
    background: linear-gradient(135deg, #f2af72, var(--accent-color));
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.hero-image {
    position: relative;
}

.vertical-banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.vertical-banner-content {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-details {
    padding-right: 40px;
}

.location-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
}

.location-info-grid p {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hours-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-color);
}

.hours-extra {
    margin-top: 8px;
    padding-left: 36px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.vertical-banner-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.vertical-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .vertical-banner-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .vertical-banner-image {
        order: -1;
        aspect-ratio: 4/5;
    }
}

.placeholder-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Sections */
.section-padding {
    padding: 120px 0;
}

.pb-0 {
    padding-bottom: 0 !important;
}

/* Nosotros Section */
.about-section {
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    /* Negative margin to allow full-width bleeding if needed, but container padding restrains it */
}

/* Gradient masks for smooth fading edges */
.about-gallery-wrapper::before,
.about-gallery-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.about-gallery-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.about-gallery-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.about-gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollGallery 25s linear infinite;
}

/* Pause animation on hover */
.about-gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.gallery-item {
    width: 280px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    aspect-ratio: 4/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 2.5rem;
    }
    .gallery-item {
        width: 240px;
    }
    .about-gallery-wrapper::before,
    .about-gallery-wrapper::after {
        width: 40px;
    }
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Menu */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--surface-hover);
}

.tab-btn.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

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

.menu-grid.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

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

.menu-item {
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.6), rgba(20, 20, 25, 0.4));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.menu-item:hover {
    border-color: rgba(229, 152, 78, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 20px rgba(229, 152, 78, 0.05);
}

.item-info {
    margin-bottom: 20px;
}

.item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.item-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.item-options {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Custom Select Replacement */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(20, 20, 25, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--accent-color);
    background: rgba(30, 30, 35, 0.8);
}

.custom-select-trigger i {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.custom-select-wrapper.open .custom-select-trigger i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background: rgba(15, 15, 17, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(229, 152, 78, 0.3);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    overflow: hidden;
}

.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 12px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.custom-select-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.custom-select-option.selected {
    color: var(--accent-color);
    background: rgba(229, 152, 78, 0.1);
}

.item-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.btn-add {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-add:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.menu-cta {
    position: sticky;
    bottom: 20px;
    margin-top: 40px;
    z-index: 90;
    display: flex;
    justify-content: center;
}

.menu-cta-inner {
    background: rgba(20, 20, 23, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.menu-cta-info {
    display: flex;
    flex-direction: column;
}

.menu-cta-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.menu-cta-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.btn-whatsapp-order {
    background: #25D366;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-whatsapp-order:hover {
    background: #20bd5a;
    transform: scale(1.02);
}

.btn-whatsapp-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--surface-color);
    color: var(--text-secondary);
    transform: none;
}

/* Ubicación Section */
.location-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.location-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.location-info .btn-outline {
    margin-top: 20px;
    align-self: flex-start;
}

/* Footer & Responsive Fixes */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background: rgba(10, 10, 12, 0.95);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-nav-links h4, .footer-social h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-pill:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.agency-credit-final {
    font-family: var(--font-body);
}

.agency-credit-final a {
    color: #fff;
    font-weight: 600;
}

.agency-credit-final .heart {
    color: #ef4444;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .vertical-banner-title {
        font-size: 2.2rem;
    }
    .location-title {
        font-size: 2.2rem;
    }
}

.location-img-wrapper {
    position: relative;
    overflow: hidden;
    max-height: 300px;
    width: 100%;
    border-radius: var(--radius-md);
    margin: 20px;
    align-self: center;
}

.location-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.location-overlay {
    display: none;
}
    pointer-events: none;
}

/* Cleaned up old footer */

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: #141416;
    border-left: 1px solid var(--border-color);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.cart-sidebar.active {
    transform: translateX(-400px);
}

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

.cart-header h2 {
    font-size: 1.5rem;
}

.cart-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

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

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 50px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 0.9rem;
    color: var(--accent-color);
}

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

.btn-qty {
    background: var(--surface-color);
    border: none;
    color: var(--text-primary);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove {
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    margin-left: 10px;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    background: #0f0f11;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.full-width {
    width: 100%;
}

/* Animations & Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpAnim 0.8s forwards;
}

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .hero-grid, .location-box {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .location-info {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #141416;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .menu-cta-inner {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 350px;
    }
    
    .btn-whatsapp-order {
        width: 100%;
        justify-content: center;
    }
}

/* Cleaned up old credits */
