/* ==============================================
   AGUACHILES LOS ASOLEADOS - MENU STYLES
   ============================================== */

:root {
    /* Paleta basada en el logo */
    --color-orange: #F97316;
    --color-orange-dark: #EA580C;
    --color-orange-light: #FB923C;
    --color-yellow: #FBBF24;
    --color-yellow-light: #FDE047;
    --color-red: #DC2626;
    --color-red-dark: #B91C1C;
    --color-green: #84CC16;
    --color-green-dark: #65A30D;
    
    /* Fondos oscuros */
    --color-bg-dark: #0A0A0A;
    --color-bg-card: #1A1A1A;
    --color-bg-card-hover: #252525;
    
    /* Textos */
    --color-text: #FFFFFF;
    --color-text-muted: #A3A3A3;
    
    /* Gradientes */
    --gradient-sun: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #FDE047 100%);
    --gradient-fire: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
    --gradient-card: linear-gradient(145deg, #1A1A1A 0%, #0F0F0F 100%);
    
    /* Sombras */
    --shadow-glow: 0 0 30px rgba(249, 115, 22, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--color-bg-dark);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ==============================================
   HERO SECTION
   ============================================== */

.hero {
    background: radial-gradient(ellipse at center top, #1a1a1a 0%, #0a0a0a 70%);
    padding: 2rem 1.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.logo-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.5));
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    background: var(--gradient-sun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 0.5rem;
}

.hero p {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 300;
}

/* ==============================================
   MAIN TABS (Comida / Bebidas)
   ============================================== */

.main-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 1rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.main-tab {
    padding: 1rem 2.5rem;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.main-tab:hover {
    color: var(--color-orange-light);
}

.main-tab.active {
    color: var(--color-orange);
}

.main-tab.active::after {
    background: var(--gradient-sun);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.main-tab .tab-icon {
    font-size: 1.5rem;
}

/* ==============================================
   VIEWS & SUB-NAVIGATION
   ============================================== */

.menu-view {
    display: none;
}

.menu-view.active {
    display: block;
}

.sub-nav {
    background: rgba(10, 10, 10, 0.95);
    padding: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sub-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Legacy Navigation */
.menu-nav {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-btn {
    padding: 0.7rem 1.3rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: transparent;
    color: var(--color-text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.nav-btn.active {
    background: var(--gradient-sun);
    border-color: transparent;
    color: #000;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

/* ==============================================
   MAIN CONTENT
   ============================================== */

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

/* ==============================================
   CATEGORY SECTION
   ============================================== */

.category {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.category:nth-child(1) { animation-delay: 0.1s; }
.category:nth-child(2) { animation-delay: 0.2s; }
.category:nth-child(3) { animation-delay: 0.3s; }
.category:nth-child(4) { animation-delay: 0.4s; }
.category:nth-child(5) { animation-delay: 0.5s; }
.category:nth-child(6) { animation-delay: 0.6s; }
.category:nth-child(7) { animation-delay: 0.7s; }

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-sun);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.category-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-text);
}

.category-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--color-orange) 0%, transparent 100%);
    margin-left: 1rem;
}

/* Kids Menu Special */
.category.kids .category-icon,
.category-icon.kids {
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

/* ==============================================
   PRODUCT CARDS
   ============================================== */

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

.product-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-sun);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--shadow-glow);
}

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

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.product-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
}

.price-tag .size {
    color: var(--color-text-muted);
    font-weight: 400;
}

.price-tag .price {
    color: var(--color-yellow);
    font-weight: 600;
}

/* Simple Product (single price) */
.product-card.simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card.simple .product-name {
    margin-bottom: 0;
}

.product-card.simple .single-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--color-yellow);
    background: rgba(249, 115, 22, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

/* ==============================================
   FOOD TABLES
   ============================================== */

.food-table {
    width: 100%;
    margin-bottom: 1rem;
}

.food-table-header {
    display: grid;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px 8px 0 0;
    border-bottom: 2px solid var(--color-orange);
}

.food-table-header span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--color-orange);
    text-align: center;
}

.food-table-header span:first-child {
    text-align: left;
}

.food-row {
    display: grid;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    background: var(--gradient-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.food-row:last-child {
    border-radius: 0 0 8px 8px;
}

.food-row:hover {
    background: rgba(249, 115, 22, 0.08);
}

.food-row .food-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.food-row .price {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-yellow);
}

.food-row .price.no-price {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

/* Grid variations */
.food-table-header.four-cols,
.food-row.four-cols {
    grid-template-columns: 1fr 65px 50px 65px 65px;
}

.food-table-header.two-cols,
.food-row.two-cols {
    grid-template-columns: 1fr 80px 80px;
}

.food-table-header.three-cols,
.food-row.three-cols {
    grid-template-columns: 1fr 65px 55px 65px;
}

.food-table-header.one-col,
.food-row.one-col {
    grid-template-columns: 1fr 80px;
}

/* Subtítulo para subsecciones */
.subsection-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0 1rem;
}

.subsection-icon {
    font-size: 1.5rem;
}

.subsection-title {
    color: var(--color-orange);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

.subsection-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--color-orange), transparent);
}

.food-table-header.pulpo-cols,
.food-row.pulpo-cols {
    grid-template-columns: 1fr 60px 70px 65px 70px;
}

/* ==============================================
   DRINKS TABLES & CARDS
   ============================================== */

.drinks-table {
    width: 100%;
    margin-bottom: 1.5rem;
}

.drinks-table-header {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px 8px 0 0;
    border-bottom: 2px solid var(--color-orange);
}

.drinks-table-header span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--color-orange);
    text-align: center;
}

.drinks-table-header span:first-child {
    text-align: left;
}

.drink-row {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: var(--gradient-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.drink-row:last-child {
    border-radius: 0 0 8px 8px;
}

.drink-row:hover {
    background: rgba(249, 115, 22, 0.08);
}

.drink-row .drink-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.drink-row .price {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-yellow);
}

.drink-row .price.no-price {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

/* Simple drinks grid (single price) */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.drink-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.drink-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.08);
}

.drink-card .drink-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.drink-card .price-single {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Drink category subtitle */
.drink-subcategory {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin: 1.5rem 0 0.75rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--color-orange);
}

/* ==============================================
   BADGES
   ============================================== */

.badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--gradient-fire);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.spicy {
    background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
}

.badge.popular {
    background: var(--gradient-sun);
    color: #000;
}

.badge.recommended {
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
}

/* ==============================================
   SECTION DIVIDERS
   ============================================== */

.section-divider {
    text-align: center;
    padding: 2rem 1rem;
    margin: 2rem 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}

.section-divider h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    background: var(--color-bg-dark);
    padding: 0 2rem;
    display: inline-block;
    position: relative;
    color: var(--color-orange);
}

.section-divider .section-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ==============================================
   DECORATIVE ELEMENTS
   ============================================== */

.sun-rays {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==============================================
   FOOTER STYLES
   ============================================== */

.menu-footer {
    background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23111' d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,75 1440,50 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.footer-main {
    padding: 4rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    text-align: center;
}

.footer-section.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.4));
    animation: float 3s ease-in-out infinite;
}

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

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
    background: var(--gradient-sun);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--color-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-section h4::before,
.footer-section h4::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--color-orange);
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-info li span.icon {
    font-size: 1rem;
}

.footer-hours {
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    padding: 1rem;
}

.footer-hours .day-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-hours .day-row:last-child {
    border-bottom: none;
}

.footer-hours .day {
    color: var(--color-text-muted);
}

.footer-hours .time {
    color: var(--color-yellow);
    font-weight: 500;
}

.footer-hours .today {
    color: var(--color-orange);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-sun);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--color-orange);
    position: relative;
    z-index: 1;
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(249, 115, 22, 0.15);
    padding: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom .made-with {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.footer-bottom .made-with span {
    color: #e25555;
}

/* ==============================================
   RESPONSIVE - TABLET & MOBILE
   ============================================== */

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .logo-container {
        width: 120px;
        height: 120px;
    }

    /* Mobile Navigation */
    .menu-nav {
        padding: 0.6rem;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-container {
        gap: 0.35rem;
    }

    .nav-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.7rem;
    }

    /* Food Tables Mobile */
    .food-table-header.four-cols,
    .food-row.four-cols {
        grid-template-columns: 1fr 50px 35px 55px 55px;
    }

    .food-table-header.pulpo-cols,
    .food-row.pulpo-cols {
        grid-template-columns: 1fr 45px 55px 50px 55px;
    }

    .food-table-header.two-cols,
    .food-row.two-cols {
        grid-template-columns: 1fr 60px 60px;
    }

    .food-table-header.three-cols,
    .food-row.three-cols {
        grid-template-columns: 1fr 50px 40px 55px;
    }

    .food-table-header.one-col,
    .food-row.one-col {
        grid-template-columns: 1fr 70px;
    }
    
    .subsection-header {
        margin: 1.5rem 0 0.75rem;
        gap: 0.5rem;
    }
    
    .subsection-icon {
        font-size: 1.2rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
    }

    .food-table-header span {
        font-size: 0.7rem;
    }

    .food-row {
        padding: 0.75rem 0.75rem;
    }

    .food-row .food-name {
        font-size: 0.85rem;
    }

    .food-row .price {
        font-size: 0.8rem;
    }

    .menu-container {
        padding: 1.5rem 1rem 3rem;
    }

    .category-header {
        flex-wrap: wrap;
    }

    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .category-line {
        display: none;
    }

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

    .product-card {
        padding: 1rem;
    }

    .product-card.simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .product-card.simple .product-name {
        margin-bottom: 0;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .price-tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.65rem;
    }

    /* Drinks Mobile */
    .drinks-table-header {
        grid-template-columns: 1fr 65px 65px;
    }

    .drink-row {
        grid-template-columns: 1fr 65px 65px;
        padding: 0.75rem 0.75rem;
    }

    .drink-row .drink-name {
        font-size: 0.85rem;
    }

    .drink-row .price {
        font-size: 0.8rem;
    }

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

    .section-divider h2 {
        font-size: 1.5rem;
    }

    /* Main Tabs Mobile */
    .main-tab {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    .main-tab .tab-icon {
        font-size: 1.3rem;
    }

    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1rem 1.5rem;
    }

    .footer-logo {
        width: 100px;
        height: 100px;
    }

    .footer-section h4::before,
    .footer-section h4::after {
        width: 15px;
    }
}

/* ==============================================
   RESPONSIVE - EXTRA SMALL SCREENS
   ============================================== */

@media (max-width: 380px) {
    .nav-btn {
        padding: 0.4rem 0.5rem;
        font-size: 0.6rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .logo-container {
        width: 100px;
        height: 100px;
    }

    .main-tab {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
}

/* ==============================================
   LOADING & ERROR STATES
   ============================================== */

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--color-text-muted);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(249, 115, 22, 0.2);
    border-top-color: var(--color-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #e25555;
}

/* ==============================================
   PROMOS SECTION - DISEÑO ESPECIAL
   ============================================== */

/* Vista de promos con fondo especial */
#view-promos {
    background: 
        radial-gradient(ellipse at top, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
}

#view-promos .menu-container {
    position: relative;
}

/* Banner promocional sutil */
.promo-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
}

.promo-banner h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fbbf24;
    margin: 0;
    letter-spacing: 2px;
}

.promo-banner p {
    color: var(--color-text-muted);
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
}

.promo-section .category-line,
.promo-line {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 30%, transparent 100%);
    height: 2px;
}

.promo-icon {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
    font-size: 2rem !important;
}

/* Estado vacío mejorado */
.promo-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--color-text-muted);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(234, 88, 12, 0.05));
    border-radius: 24px;
    border: 2px dashed rgba(245, 158, 11, 0.3);
    margin: 2rem 0;
}

.promo-empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.promo-empty p {
    font-size: 1.4rem;
    margin: 0.5rem 0;
    color: var(--color-text);
}

.promo-empty-sub {
    font-size: 1rem !important;
    opacity: 0.7;
    margin-top: 1rem !important;
}

/* Grid de promos mejorado */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1.5rem 0;
}

/* Cards de promo con diseño premium */
.promo-card {
    background: linear-gradient(145deg, 
        rgba(30, 30, 30, 0.9), 
        rgba(20, 20, 20, 0.95));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #ea580c);
}

.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.1) 0%, 
        transparent 50%,
        rgba(234, 88, 12, 0.05) 100%);
    pointer-events: none;
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 
        0 20px 60px rgba(245, 158, 11, 0.25),
        0 0 0 1px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.promo-card-content {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
}

/* Badge de promo */
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ea580c, #f59e0b);
    color: white;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.promo-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-text);
    margin: 0 0 1rem 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* Precio destacado */
.promo-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-top: 1rem;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

/* Variantes con diseño mejorado */
.promo-variants {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.promo-variant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
    transition: all 0.2s ease;
}

.promo-variant:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateX(5px);
}

.promo-variant .variant-name {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-variant .variant-price {
    font-family: var(--font-display);
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Decoración de esquina */
.promo-card .corner-decor {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    opacity: 0.15;
    transform: rotate(15deg);
}

/* Responsive promos */
@media (max-width: 768px) {
    .promo-banner h2 {
        font-size: 1.5rem;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .promo-banner h2 {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .promo-card-content {
        padding: 1.25rem;
    }
    
    .promo-name {
        font-size: 1.3rem;
    }
    
    .promo-price {
        font-size: 2rem;
    }
    
    .promo-empty-icon {
        font-size: 4rem;
    }
    
    .promo-empty p {
        font-size: 1.1rem;
    }
}
