/* ============================================
GAMER SUPER BURGER - MENÚ DIGITAL 2026
============================================ */
:root {
    --mario-red: #E52521;
    --mario-blue: #049CD8;
    --mario-yellow: #FBD000;
    --mario-green: #43B047;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --gradient-mario: linear-gradient(135deg, #E52521 0%, #049CD8 100%);
    --gradient-gold: linear-gradient(135deg, #FBD000 0%, #FFA500 100%);
    --gradient-rainbow: linear-gradient(90deg, #E52521, #049CD8, #43B047, #FBD000);
    --gradient-welcome: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-infantil: linear-gradient(135deg, #FFF0F5 0%, #FFFACD 100%);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
HEADER
============================================ */
.mario-header {
    position: relative;
    background: linear-gradient(180deg, #5C94FC 0%, #85B4FF 50%, #9FC9FF 100%);
    min-height: 500px;
    overflow: hidden;
    border-bottom: 8px solid #000;
}

.mario-clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: white;
    border-radius: 100px;
    opacity: 0.9;
    animation: cloudFloat 30s infinite ease-in-out;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 100px;
}

.cloud-1 {
    width: 120px;
    height: 50px;
    top: 20%;
    left: -120px;
    animation-duration: 35s;
}

.cloud-1::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud-1::after {
    width: 50px;
    height: 50px;
    top: -20px;
    left: 55px;
}

.cloud-2 {
    width: 100px;
    height: 40px;
    top: 40%;
    left: -100px;
    animation-delay: 10s;
    animation-duration: 28s;
}

.cloud-2::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 12px;
}

.cloud-2::after {
    width: 40px;
    height: 40px;
    top: -15px;
    left: 45px;
}

.cloud-3 {
    width: 140px;
    height: 60px;
    top: 60%;
    left: -140px;
    animation-delay: 20s;
    animation-duration: 40s;
}

.cloud-3::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 18px;
}

.cloud-3::after {
    width: 60px;
    height: 60px;
    top: -25px;
    left: 65px;
}

@keyframes cloudFloat {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(calc(100vw + 200px)) translateY(-20px); }
    100% { transform: translateX(calc(200vw + 400px)) translateY(0); }
}

.game-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.coin {
    position: absolute;
    font-size: 2rem;
    animation: coinSpin 2s linear infinite, coinFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.coin-1 { top: 15%; left: 10%; animation-delay: 0s; }
.coin-2 { top: 25%; right: 15%; animation-delay: 0.7s; }
.coin-3 { top: 35%; left: 20%; animation-delay: 1.4s; }

@keyframes coinSpin {
    0% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.2); }
    100% { transform: rotateY(360deg) scale(1); }
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

.mushroom {
    position: absolute;
    bottom: 15%;
    left: 5%;
    font-size: 3rem;
    animation: mushroomWalk 5s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes mushroomWalk {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(30px) scale(1.1); }
}

.star {
    position: absolute;
    top: 30%;
    right: 10%;
    font-size: 2.5rem;
    animation: starTwinkle 1.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.3) rotate(180deg); }
}

.question-block {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 4px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #000;
    animation: blockFloat 2s ease-in-out infinite;
    box-shadow: 0 4px 0 #8B4513;
    cursor: pointer;
    z-index: 5;
}

@keyframes blockFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px 30px;
}

.logo-wrapper {
    margin-bottom: 20px;
}

.main-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    border: 8px solid var(--mario-yellow);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: logoFloat 3s ease-in-out infinite;
    background: var(--white);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.site-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 5px 5px 0 var(--mario-red), 7px 7px 0 #000;
    margin-bottom: 10px;
    animation: titleBounce 1s ease;
}

@keyframes titleBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.site-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
    margin-bottom: 25px;
}

.power-ups {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.power-up {
    font-size: 2.5rem;
    animation: powerUpFloat 2s ease-in-out infinite;
}

.power-up:nth-child(1) { animation-delay: 0s; }
.power-up:nth-child(2) { animation-delay: 0.5s; }
.power-up:nth-child(3) { animation-delay: 1s; }
.power-up:nth-child(4) { animation-delay: 1.5s; }

@keyframes powerUpFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* ============================================
NAVEGACIÓN
============================================ */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, #E52521 0%, #B71C1C 100%);
    border-top: 4px solid var(--mario-yellow);
    border-bottom: 4px solid #000;
    padding: 10px 0;
    box-shadow: 0 4px 0 #000, 0 8px 20px rgba(0,0,0,0.3);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.nav-wrapper {
    position: relative;
}

.nav-container {
    display: flex;
    gap: 8px;
    padding: 0 15px;
    min-width: max-content;
    justify-content: flex-start;
}

.nav-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #E52521 0%, #B71C1C 100%);
    border: 3px solid #000;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    transition: all 0.2s ease;
    box-shadow: 0 3px 0 #000;
    text-shadow: 1px 1px 0 #000;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #43B047 0%, #2E7D32 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 8px;
    z-index: -1;
}

.nav-btn:hover::before,
.nav-btn.active::before {
    opacity: 1;
}

.nav-btn:hover,
.nav-btn.active {
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #000;
}

.nav-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #000;
}

.nav-btn i {
    font-size: 1.1rem;
    filter: drop-shadow(1px 1px 0 #000);
}

/* ============================================
CONTENIDO PRINCIPAL
============================================ */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-section {
    margin-bottom: 60px;
    animation: sectionFadeIn 0.6s ease-out;
}

@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
BIENVENIDA
============================================ */
.welcome-section {
    margin-bottom: 40px;
}

.welcome-card {
    background: var(--gradient-welcome);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    border: 5px solid var(--mario-yellow);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    animation: welcomePulse 3s ease-in-out infinite;
}

@keyframes welcomePulse {
    0%, 100% { box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5); }
    50% { box-shadow: 0 20px 70px rgba(118, 75, 162, 0.7), 0 0 60px rgba(251, 208, 0, 0.3); }
}

.welcome-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.welcome-particle {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: particleFloat 8s ease-in-out infinite;
}

.welcome-particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.welcome-particle:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.welcome-particle:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 4s; }
.welcome-particle:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 6s; }
.welcome-particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 3s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.welcome-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: welcomeBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

@keyframes welcomeBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.welcome-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: var(--mario-yellow);
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 var(--mario-red), 5px 5px 0 #000;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 3px 3px 0 var(--mario-red), 5px 5px 0 #000, 0 0 20px rgba(251, 208, 0, 0.5); }
    50% { text-shadow: 3px 3px 0 var(--mario-red), 5px 5px 0 #000, 0 0 40px rgba(251, 208, 0, 0.8); }
}

.welcome-text {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    border: 3px solid var(--mario-yellow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--mario-yellow);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.feature-item span {
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ============================================
ENCABEZADOS DE SECCIÓN
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: sectionIconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes sectionIconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: var(--mario-red);
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-rainbow);
    border-radius: 2px;
    animation: rainbowLine 3s linear infinite;
    background-size: 300% 100%;
}

@keyframes rainbowLine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 20px;
    font-weight: 500;
}

/* ============================================
PRODUCTOS
============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

.product-card.modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 4px solid var(--mario-yellow);
    animation: cardSpawn 0.6s ease-out backwards;
    cursor: pointer;
}

@keyframes cardSpawn {
    0% { opacity: 0; transform: translateY(50px) rotateX(-10deg); }
    100% { opacity: 1; transform: translateY(0) rotateX(0); }
}

.product-card.modern:nth-child(1) { animation-delay: 0.1s; }
.product-card.modern:nth-child(2) { animation-delay: 0.2s; }
.product-card.modern:nth-child(3) { animation-delay: 0.3s; }
.product-card.modern:nth-child(4) { animation-delay: 0.4s; }
.product-card.modern:nth-child(5) { animation-delay: 0.5s; }

.product-card.modern::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--mario-red), var(--mario-yellow), var(--mario-green), var(--mario-blue));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rainbowBorder 3s linear infinite;
    background-size: 400% 400%;
}

@keyframes rainbowBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.product-card.modern:hover::before {
    opacity: 1;
}

.product-card.modern:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(251, 208, 0, 0.5);
}

.product-card.modern:active {
    transform: translateY(-5px) scale(1.01);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--mario-yellow) 0%, #FFA500 100%);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(251, 208, 0, 0.4);
    animation: badgePulse 1.5s ease-in-out infinite, badgeFloat 3s ease-in-out infinite;
    border: 3px solid #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(251, 208, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(251, 208, 0, 0.6); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.product-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6347);
    color: white;
    animation: badgePulse 1.5s ease-in-out infinite, badgeFloat 3s ease-in-out infinite, rainbowBadge 3s linear infinite;
}

@keyframes rainbowBadge {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.product-badge.new {
    background: linear-gradient(135deg, var(--mario-green), #00FF00);
    color: white;
    animation: badgePulse 1.5s ease-in-out infinite, badgeFloat 3s ease-in-out infinite, newBadgeGlow 2s ease-in-out infinite;
}

@keyframes newBadgeGlow {
    0%, 100% { box-shadow: 0 0 10px var(--mario-green); }
    50% { box-shadow: 0 0 30px var(--mario-green), 0 0 50px var(--mario-green); }
}

.product-badge.spicy {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    animation: badgePulse 1s ease-in-out infinite, badgeFloat 2s ease-in-out infinite, fireBadge 1.5s ease-in-out infinite;
}

@keyframes fireBadge {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.product-badge.best {
    background: linear-gradient(135deg, var(--mario-red), var(--mario-blue));
    color: white;
}

.product-badge.special {
    background: linear-gradient(135deg, var(--mario-blue), #00BFFF);
    color: white;
}

.product-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mario-red) 0%, var(--mario-blue) 100%);
    border-bottom: 4px solid var(--mario-yellow);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9);
}

.product-card.modern:hover .product-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.click-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 2px solid var(--mario-yellow);
}

.click-hint i {
    margin-right: 8px;
}

.product-card.modern:hover .click-hint {
    opacity: 1;
}

.product-content {
    padding: 25px;
    position: relative;
}

.product-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mario-red), var(--mario-yellow), var(--mario-green), var(--mario-blue));
    animation: rainbowLine 3s linear infinite;
    background-size: 300% 100%;
}

.product-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    color: var(--mario-red);
    margin-bottom: 12px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--mario-yellow);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 3px dashed var(--mario-yellow);
}

.product-price {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    color: var(--mario-green);
    background: linear-gradient(135deg, rgba(67, 176, 71, 0.1), rgba(67, 176, 71, 0.2));
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 3px solid var(--mario-green);
    box-shadow: 0 4px 0 rgba(67, 176, 71, 0.3);
}

.product-card.modern.featured {
    border-color: var(--mario-yellow);
    box-shadow: 0 0 40px rgba(251, 208, 0, 0.5);
    animation: featuredPulse 2s ease-in-out infinite, cardSpawn 0.6s ease-out backwards;
}

@keyframes featuredPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(251, 208, 0, 0.5); }
    50% { box-shadow: 0 0 60px rgba(251, 208, 0, 0.8), 0 0 80px rgba(251, 208, 0, 0.4); }
}

/* ============================================
INFANTIL
============================================ */
.infantil-section {
    background: var(--gradient-infantil);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 4px solid #FF69B4;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
}

.infantil-header .section-title {
    color: #FF1493;
    text-shadow: 3px 3px 0 var(--mario-yellow), 5px 5px 0 #000;
}

.infantil-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.infantil-options-card,
.infantil-prices-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 4px solid #FF69B4;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.infantil-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    color: #FF1493;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 0 var(--mario-yellow);
}

.infantil-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.infantil-product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--mario-yellow);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.infantil-product-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
}

.infantil-image-wrapper {
    height: 120px;
    background: linear-gradient(135deg, #FFB6C1 0%, #FFD700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.infantil-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.infantil-product-card:hover .infantil-product-image {
    transform: scale(1.1);
}

.infantil-product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.infantil-icon {
    font-size: 2rem;
}

.infantil-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.85rem;
    text-align: center;
}

.infantil-includes {
    text-align: center;
    color: #FF1493;
    font-weight: 700;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    border: 2px dashed var(--mario-yellow);
}

.infantil-prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CAMBIO: Todos los price-item con fondo blanco */
.price-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--mario-yellow);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: #FFFACD;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-icon {
    font-size: 1.8rem;
}

/* CAMBIO: Eliminado el fondo amarillo de featured */
.price-item.featured {
    background: var(--white);
    border-left-color: #FF1493;
    font-weight: 700;
}

.price-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: var(--mario-green);
    margin-left: auto;
}

.infantil-note {
    text-align: center;
    color: var(--gray);
    font-weight: 600;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    margin-top: 15px;
}

/* ============================================
COMBO PAREJA
============================================ */
.special-section {
    background: rgba(255, 182, 193, 0.1);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--mario-red);
}

.combo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 3px solid var(--mario-red);
}

.combo-badge {
    background: linear-gradient(135deg, var(--mario-red), var(--mario-blue));
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    display: inline-block;
    margin-bottom: 15px;
    border: 2px solid #000;
}

.combo-content {
    text-align: center;
}

.combo-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.1rem;
    color: var(--mario-red);
    margin-bottom: 8px;
}

.combo-validity {
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 15px;
    padding: 8px;
    background: var(--light-gray);
    border-radius: 8px;
    display: inline-block;
}

.combo-items {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 20px;
}

.combo-items li {
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--mario-yellow);
}

.combo-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.price-main {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--mario-green);
    background: rgba(67, 176, 71, 0.1);
    padding: 12px 30px;
    border-radius: 12px;
    border: 3px solid var(--mario-green);
}

.price-extra {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
BEBIDAS
============================================ */
.bebidas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bebida-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 3px solid var(--mario-blue);
}

.bebida-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.75rem;
    color: var(--mario-blue);
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--mario-yellow);
}

.bebida-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bebida-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.85rem;
}

.bebida-price {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: var(--mario-green);
}

.bebida-flavors {
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 10px;
    padding: 8px;
    background: rgba(251, 208, 0, 0.1);
    border-radius: 8px;
}

/* ============================================
ADICIONES
============================================ */
.adiciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.adicion-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--mario-yellow);
    font-size: 0.85rem;
}

.adicion-name {
    font-weight: 600;
}

.adicion-price {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: var(--mario-green);
}

/* ============================================
CUMPLEAÑOS CON FOTO
============================================ */
.birthday-card {
    background: linear-gradient(135deg, #FFB6C1, #FFB6D9);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    border: 3px solid #000;
}

.birthday-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--mario-yellow);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    background: var(--white);
}

.birthday-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.birthday-card:hover .birthday-image {
    transform: scale(1.1);
}

.birthday-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.birthday-card h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    margin-bottom: 10px;
}

.birthday-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
FOOTER
============================================ */
.modern-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    color: var(--white);
    padding: 40px 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-rainbow);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.modern-footer h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--mario-yellow);
    margin-bottom: 15px;
}

.footer-credits {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.credits-text {
    font-size: 0.9rem;
    color: var(--white);
    margin: 10px 0;
}

.credit-link {
    color: var(--mario-yellow);
    text-decoration: none;
    font-weight: 700;
}

.credit-link:hover {
    color: var(--mario-green);
}

.menu-digital-cta-small {
    margin: 15px 0;
    padding: 12px;
    background: rgba(251, 208, 0, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid var(--mario-yellow);
}

.cta-text-small {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.cta-text-small .credit-link {
    color: var(--mario-yellow);
    text-decoration: underline;
    font-size: 0.8rem;
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-pipes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        #00AA00,
        #00AA00 40px,
        #00CC00 40px,
        #00CC00 80px
    );
    border-top: 3px solid #000;
    opacity: 0.5;
}

/* ============================================
MODAL DE PRODUCTOS
============================================ */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    margin: 5% auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--mario-yellow);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--mario-red);
    border: 3px solid #000;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #000;
}

.modal-close:hover {
    background: #B71C1C;
    transform: scale(1.1) rotate(90deg);
}

.modal-close:active {
    transform: scale(0.95);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--mario-blue);
    border: 3px solid #000;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #000;
}

.modal-nav:hover {
    background: #0288C4;
    transform: translateY(-50%) scale(1.1);
}

.modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.modal-prev {
    left: 15px;
}

.modal-next {
    right: 15px;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image-wrapper {
    height: 500px;
    background: linear-gradient(135deg, var(--mario-red), var(--mario-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-image:hover {
    transform: scale(1.05);
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.modal-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--mario-red);
    line-height: 1.5;
}

.modal-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--mario-yellow);
}

.modal-price {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: var(--mario-green);
    background: linear-gradient(135deg, rgba(67, 176, 71, 0.1), rgba(67, 176, 71, 0.2));
    padding: 20px 30px;
    border-radius: var(--radius-md);
    border: 4px solid var(--mario-green);
    text-align: center;
    box-shadow: 0 4px 0 rgba(67, 176, 71, 0.3);
}

.modal-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    border: 2px solid var(--mario-yellow);
}

/* ============================================
RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .mario-header {
        min-height: 600px;
    }

    .site-title {
        font-size: 1.8rem;
    }

    .site-subtitle {
        font-size: 1rem;
    }

    .main-logo {
        width: 140px !important;
        height: 140px !important;
    }

    .power-up {
        font-size: 2rem;
    }

    .nav-container {
        gap: 6px;
        padding: 0 10px;
    }

    .nav-btn {
        padding: 8px 12px;
        font-size: 0.55rem;
    }

    .nav-btn i {
        font-size: 1rem;
    }

    .main-content {
        padding: 30px 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card.modern:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-name {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .product-badge {
        font-size: 0.65rem;
        padding: 8px 15px;
    }

    .welcome-card {
        padding: 30px 20px;
    }

    .welcome-title {
        font-size: 1.3rem;
    }

    .welcome-icon {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-item {
        padding: 15px 10px;
    }

    .feature-item i {
        font-size: 2rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .infantil-products-grid {
        grid-template-columns: 1fr;
    }

    .infantil-section {
        padding: 20px 15px;
    }

    .birthday-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .modal-content {
        width: 95%;
        margin: 2.5% auto;
        max-height: 95vh;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image-wrapper {
        height: 300px;
    }

    .modal-info {
        padding: 25px;
    }

    .modal-title {
        font-size: 1.1rem;
    }

    .modal-description {
        font-size: 0.9rem;
        padding: 15px;
    }

    .modal-price {
        font-size: 1.3rem;
        padding: 15px 20px;
    }

    .modal-close {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
    }

    .modal-nav {
        width: 45px;
        height: 45px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .mario-header {
        min-height: 700px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .site-subtitle {
        font-size: 0.9rem;
    }

    .main-logo {
        width: 120px !important;
        height: 120px !important;
    }

    .power-ups {
        gap: 15px;
    }

    .power-up {
        font-size: 1.8rem;
    }

    .nav-container {
        gap: 5px;
        padding: 0 8px;
    }

    .nav-btn {
        padding: 7px 10px;
        font-size: 0.5rem;
        min-width: 70px;
    }

    .nav-btn i {
        font-size: 0.9rem;
    }

    .coin {
        font-size: 1.5rem;
    }

    .mushroom {
        font-size: 2rem;
    }

    .star {
        font-size: 2rem;
    }

    .question-block {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .welcome-title {
        font-size: 1.1rem;
    }

    .welcome-text {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-card.modern:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .product-image-wrapper {
        height: 180px;
    }

    .product-content {
        padding: 20px;
    }

    .product-name {
        font-size: 0.75rem;
    }

    .product-description {
        font-size: 0.85rem;
        padding: 12px;
    }

    .product-price {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .infantil-products-grid {
        grid-template-columns: 1fr;
    }

    .infantil-image-wrapper {
        height: 100px;
    }

    .infantil-icon {
        font-size: 1.5rem;
    }

    .infantil-name {
        font-size: 0.8rem;
    }

    .birthday-image-wrapper {
        width: 120px;
        height: 120px;
    }

    .modal-image-wrapper {
        height: 250px;
    }

    .modal-info {
        padding: 20px;
    }

    .modal-title {
        font-size: 1rem;
    }

    .modal-description {
        font-size: 0.85rem;
    }

    .modal-price {
        font-size: 1.1rem;
    }

    .modal-close,
    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .click-hint {
        padding: 10px 15px;
        font-size: 0.7rem;
    }
}

/* ============================================
SCROLLBAR
============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-mario);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold);
}

::selection {
    background: var(--mario-yellow);
    color: var(--dark);
}

/* ============================================
ANIMACIONES
============================================ */
@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(400px); opacity: 0; }
}

@keyframes coinExplosion {
    0% { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0) rotate(720deg); }
}

@keyframes scorePopup {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.5); }
    50% { transform: translate(-50%, -150%) scale(1.3); }
    100% { opacity: 0; transform: translate(-50%, -250%) scale(1); }
}

@keyframes counterBump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); color: var(--mario-red); }
}

@keyframes counterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

body.modal-open {
    overflow: hidden;
}