/* ========================================
   MENÚ ANTOJITOS - ESTILOS ULTRA PREMIUM
   Inspirado en calidad Sakura Sushi
   Mobile-First | Calidad Profesional
   ======================================== */

/* ========================================
   VARIABLES CSS - PALETA MEXICANA PREMIUM
   ======================================== */
:root {
    /* Colores Primarios Mexicanos */
    --primary: #C41E3A;
    --primary-light: #E63950;
    --primary-dark: #9A1830;
    --primary-glow: rgba(196, 30, 58, 0.4);
    
    /* Verde Mexicano */
    --secondary: #006847;
    --secondary-light: #1B8B5A;
    --secondary-dark: #004D34;
    --secondary-glow: rgba(0, 104, 71, 0.3);
    
    /* Dorado/Amarillo */
    --accent: #FFD700;
    --accent-light: #FFE55C;
    --accent-dark: #E5C100;
    --accent-glow: rgba(255, 215, 0, 0.35);
    
    /* Colores de Estado */
    --success: #4CAF50;
    --success-light: #66BB6A;
    --danger: #EF5350;
    --danger-dark: #D32F2F;
    --warning: #FF9800;
    --info: #2196F3;
    
    /* Fondos */
    --bg-primary: #FFC61A;
    --bg-light: #FFF9E6;
    --bg-cream: #FFFDF5;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-darker: #0D0D0D;
    
    /* Textos */
    --text-dark: #1A1A1A;
    --text-medium: #444444;
    --text-gray: #666666;
    --text-light: #888888;
    --text-muted: #AAAAAA;
    --text-white: #FFFFFF;
    
    /* Gradientes Premium */
    --gradient-header: linear-gradient(135deg, #C41E3A 0%, #E63950 40%, #C41E3A 100%);
    --gradient-green: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --gradient-pink: linear-gradient(145deg, #E91E63 0%, #AD1457 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFD700 100%);
    --gradient-dark: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 1) 100%);
    --gradient-section: linear-gradient(135deg, #2C5F2D 0%, #1B4332 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #FAFAFA 100%);
    
    /* Sombras Ultra Premium */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 50px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 8px 25px rgba(196, 30, 58, 0.35);
    --shadow-success: 0 6px 20px rgba(76, 175, 80, 0.4);
    --shadow-accent: 0 6px 20px rgba(255, 215, 0, 0.3);
    --shadow-pink: 0 8px 30px rgba(233, 30, 99, 0.4);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.35);
    
    /* Tipografía */
    --font-display: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Bordes */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 50px;
    --radius-circle: 50%;
    
    /* Transiciones Premium */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --transition-fast: all 0.15s var(--ease-smooth);
    --transition-normal: all 0.3s var(--ease-smooth);
    --transition-slow: all 0.5s var(--ease-smooth);
    --transition-bounce: all 0.4s var(--ease-bounce);
}

/* ========================================
   RESET & BASE ULTRA PREMIUM
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    min-height: 100vh;
    min-height: 100dvh;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 100px;
}

/* ========================================
   HEADER ULTRA PREMIUM
   ======================================== */
.app-header {
    background: var(--gradient-header);
    padding: 1.5rem 1rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Efecto de luz ambiental */
.app-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(0, 104, 71, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: ambientLight 8s ease-in-out infinite;
}

@keyframes ambientLight {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, -5%) rotate(3deg); }
}

/* Papel Picado Decorativo */
.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 22px;
    z-index: 3;
}

.papel-picado {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        var(--secondary) 0px,
        var(--secondary) 18px,
        var(--primary) 18px,
        var(--primary) 36px,
        var(--accent) 36px,
        var(--accent) 54px,
        #FF6B35 54px,
        #FF6B35 72px,
        #4169E1 72px,
        #4169E1 90px,
        #9C27B0 90px,
        #9C27B0 108px
    );
    clip-path: polygon(
        0% 0%, 4.5% 100%, 9% 0%, 13.5% 100%, 18% 0%, 22.5% 100%, 27% 0%, 31.5% 100%, 
        36% 0%, 40.5% 100%, 45% 0%, 49.5% 100%, 54% 0%, 58.5% 100%, 63% 0%, 67.5% 100%, 
        72% 0%, 76.5% 100%, 81% 0%, 85.5% 100%, 90% 0%, 95% 100%, 100% 0%
    );
}

.header-content {
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    color: var(--text-white);
    text-shadow: 
        2px 2px 0 var(--text-dark),
        -1px -1px 0 var(--text-dark),
        1px -1px 0 var(--text-dark),
        -1px 1px 0 var(--text-dark),
        0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
    margin-bottom: 0.1rem;
    animation: logoFloat 4s ease-in-out infinite;
}

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

.logo-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    color: var(--accent);
    text-shadow: 
        3px 3px 0 var(--text-dark),
        0 0 50px rgba(255, 215, 0, 0.5),
        0 0 80px rgba(255, 215, 0, 0.3);
    letter-spacing: 8px;
    font-style: italic;
}

.order-counter {
    background: var(--bg-white);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: var(--transition-normal);
}

.order-counter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.order-number {
    font-family: 'Courier New', monospace;
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: var(--text-dark);
    font-weight: 900;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    padding: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   SECCIONES DEL MENÚ ULTRA PREMIUM
   ======================================== */
.menu-section {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.8rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    opacity: 0;
    animation: sectionFadeIn 0.7s var(--ease-smooth) forwards;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: var(--radius-lg);
    background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
                linear-gradient(135deg, var(--primary), var(--secondary), var(--accent)) border-box;
    pointer-events: none;
    z-index: 1;
}

.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.2s; }
.menu-section:nth-child(3) { animation-delay: 0.3s; }

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-header {
    background: var(--gradient-header);
    padding: 1.1rem 1.2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 10px solid var(--primary-dark);
    z-index: 3;
}

.section-title {
    font-family: var(--font-display);
    color: var(--text-white);
    font-size: 1.35rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.menu-items {
    padding: 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* ========================================
   ITEMS DEL MENÚ ULTRA PREMIUM
   ======================================== */
.menu-item {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 2px solid #F0E6D3;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
}

/* Efecto de brillo al hover */
.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.menu-item:hover::before {
    left: 150%;
}

.menu-item:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 0 3px var(--accent-glow);
}

.menu-item:active {
    transform: translateY(-2px) scale(1.005);
}

.menu-item.selected {
    border-color: var(--primary);
    background: linear-gradient(145deg, #FFF5E6 0%, #FFEDD8 100%);
    box-shadow: 0 0 0 4px var(--primary-glow), var(--shadow-md);
}

.menu-item.added {
    animation: itemPulse 0.35s var(--ease-elastic);
}

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

/* Imagen del Item */
.item-image {
    width: 95px;
    height: 95px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-md), 0 0 0 3px var(--accent);
    position: relative;
    z-index: 2;
}

.item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

.menu-item:hover .item-image img {
    transform: scale(1.15);
}

/* Información del Item */
.item-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.item-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.35rem;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.item-description {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.45;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-price {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--secondary);
    background: var(--gradient-gold);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    display: inline-block;
    box-shadow: var(--shadow-accent);
    border: 2px solid rgba(255, 200, 0, 0.5);
}

/* ========================================
   CONTROLES DE CANTIDAD ULTRA PREMIUM
   ======================================== */
.item-controls {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.04);
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-full);
    position: relative;
    z-index: 2;
}

.btn-minus, .btn-plus {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius-circle);
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Efecto ripple */
.btn-minus::after, .btn-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-circle);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-minus:active::after, .btn-plus:active::after {
    width: 120%;
    height: 120%;
}

.btn-minus {
    background: linear-gradient(145deg, #EF5350, #D32F2F);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(239, 83, 80, 0.45);
}

.btn-minus:hover {
    background: linear-gradient(145deg, #D32F2F, #B71C1C);
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(239, 83, 80, 0.5);
}

.btn-plus {
    background: linear-gradient(145deg, #4CAF50, #388E3C);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.45);
}

.btn-plus:hover {
    background: linear-gradient(145deg, #388E3C, #2E7D32);
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.item-quantity {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    min-width: 38px;
    text-align: center;
}

/* ========================================
   SECCIÓN DE BEBIDAS ULTRA PREMIUM
   ======================================== */
.bebidas-section {
    background: var(--gradient-section) !important;
    border: none !important;
}

.bebidas-section::before {
    background: linear-gradient(var(--secondary), var(--secondary)) padding-box,
                linear-gradient(135deg, var(--accent), var(--secondary-light), var(--accent)) border-box !important;
}

.bebidas-section .section-header {
    background: transparent;
}

.bebidas-section .section-header::after {
    display: none;
}

.bebidas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
}

.bebida-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0.8rem;
    background: var(--bg-white);
}

.bebida-item .item-info {
    width: 100%;
}

.bebida-item .item-name {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.bebida-item .item-price {
    font-size: 1.05rem;
    padding: 0.3rem 0.9rem;
}

.bebida-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.6rem;
}

.bebida-item .item-controls {
    margin-top: 0.7rem;
    justify-content: center;
}

/* ========================================
   BARRA DE REVISAR PEDIDO ULTRA PREMIUM
   ======================================== */
.order-review-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.2rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-bounce);
    z-index: 200;
    border-top: 3px solid var(--primary);
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.4);
}

.order-review-bar.visible {
    transform: translateY(0);
}

.review-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 650px;
    margin: 0 auto;
    gap: 1rem;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.review-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
}

.review-total {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.review-btn {
    flex: 1;
    max-width: 300px;
    background: var(--gradient-pink);
    color: var(--text-white);
    border: none;
    padding: 1.1rem 1.6rem;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-pink);
    position: relative;
    overflow: hidden;
}

.review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.review-btn:hover::before {
    left: 100%;
}

.review-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(233, 30, 99, 0.5);
}

.review-btn:active {
    transform: translateY(-2px) scale(1.01);
}

/* ========================================
   MODAL ULTRA PREMIUM
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal-content {
    background: var(--bg-white);
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.45s var(--ease-bounce);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.5rem;
    background: var(--gradient-header);
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 0.06em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.modal-close {
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border-radius: var(--radius-circle);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
}

/* ========================================
   RESUMEN DE PEDIDO EDITABLE ULTRA PREMIUM
   ======================================== */
.order-summary-editable {
    margin-bottom: 1.5rem;
}

.order-item-editable {
    display: flex;
    align-items: center;
    padding: 1rem 1.1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(145deg, var(--bg-cream), var(--bg-light));
    border-radius: var(--radius-sm);
    border: 2px solid #E8E0D5;
    gap: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.order-item-editable::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-gold);
}

.order-item-editable:hover {
    border-color: var(--accent);
    transform: translateX(3px);
}

.order-item-controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.btn-modal-minus, .btn-modal-plus {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-circle);
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-modal-minus {
    background: linear-gradient(145deg, #EF5350, #D32F2F);
    color: var(--text-white);
    box-shadow: 0 3px 10px rgba(239, 83, 80, 0.4);
}

.btn-modal-minus:hover {
    background: linear-gradient(145deg, #D32F2F, #B71C1C);
    transform: scale(1.1);
}

.btn-modal-plus {
    background: linear-gradient(145deg, #4CAF50, #388E3C);
    color: var(--text-white);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.4);
}

.btn-modal-plus:hover {
    background: linear-gradient(145deg, #388E3C, #2E7D32);
    transform: scale(1.1);
}

.order-item-controls .order-item-qty {
    min-width: 30px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-dark);
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-name-text {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    letter-spacing: 0.3px;
}

.order-item-unit-price {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
}

.order-item-price {
    font-family: var(--font-display);
    color: #E91E63;
    font-size: 1.35rem;
    flex-shrink: 0;
    text-shadow: 0 1px 3px rgba(233, 30, 99, 0.2);
}

/* ========================================
   SECCIÓN DE TOTAL ULTRA PREMIUM
   ======================================== */
.order-total-section {
    background: linear-gradient(145deg, var(--bg-cream), #FFF8E1);
    padding: 1.3rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent);
    box-shadow: var(--shadow-accent);
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-final {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.total-amount {
    color: #E91E63;
    font-size: 2.2rem;
    text-shadow: 0 2px 8px rgba(233, 30, 99, 0.25);
}

/* ========================================
   CAMPO DE NOMBRE ULTRA PREMIUM
   ======================================== */
.name-input-section {
    margin-bottom: 0;
}

.name-label {
    text-align: center;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.customer-name-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 700;
    border: 3px solid var(--primary);
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-normal);
    text-transform: capitalize;
}

.customer-name-input::placeholder {
    color: var(--text-muted);
    font-weight: 500;
}

.customer-name-input:focus {
    border-color: #E91E63;
    box-shadow: 0 0 0 5px rgba(233, 30, 99, 0.2), var(--shadow-md);
}

/* ========================================
   BOTÓN WHATSAPP ULTRA PREMIUM
   ======================================== */
.modal-footer {
    padding: 1.3rem 1.5rem 2rem;
    background: linear-gradient(180deg, #F8F8F8 0%, #F0F0F0 100%);
    border-top: 1px solid #E0E0E0;
}

.btn-whatsapp {
    width: 100%;
    background: var(--gradient-green);
    color: var(--text-white);
    border: none;
    padding: 1.35rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-success);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:not(:disabled):hover::before {
    left: 100%;
}

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

.btn-whatsapp:not(:disabled):hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:not(:disabled):active {
    transform: translateY(-2px) scale(1.01);
}

/* ========================================
   MODAL DE ÉXITO ULTRA PREMIUM
   ======================================== */
.success-modal-content {
    background: var(--bg-white);
    text-align: center;
    padding: 2.5rem 2rem 2rem;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    max-width: 460px;
}

.success-animation {
    margin-bottom: 1.5rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    animation: successBounce 0.6s var(--ease-bounce);
}

@keyframes successBounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.checkmark {
    width: 100px;
    height: 100px;
}

.checkmark-circle {
    stroke: var(--success);
    stroke-width: 2.5;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: checkmarkCircle 0.6s var(--ease-smooth) forwards;
}

.checkmark-check {
    stroke: var(--success);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmarkCheck 0.35s var(--ease-smooth) 0.45s forwards;
}

@keyframes checkmarkCircle {
    100% { stroke-dashoffset: 0; }
}

@keyframes checkmarkCheck {
    100% { stroke-dashoffset: 0; }
}

.success-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.success-subtitle {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.success-thanks {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.success-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-order-num {
    background: #F5F5F5;
    color: var(--text-dark);
    border: 2px solid #E0E0E0;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-order-num:hover {
    background: #EEEEEE;
    border-color: #BDBDBD;
}

.btn-success-close {
    background: var(--gradient-pink);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-pink);
}

.btn-success-close:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(233, 30, 99, 0.5);
}

/* ========================================
   MODAL DE CONTRASEÑA ULTRA PREMIUM
   ======================================== */
.password-modal-content {
    background: var(--bg-white);
    text-align: center;
    padding: 0;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    max-width: 420px;
    overflow: hidden;
}

.password-header {
    background: var(--gradient-header);
    padding: 1.5rem;
    position: relative;
}

.password-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.password-header h3 {
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1.35rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.password-body {
    padding: 2rem 1.5rem;
}

.password-body p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.3rem;
    line-height: 1.5;
}

.password-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 700;
    border: 3px solid var(--primary);
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-normal);
}

.password-input:focus {
    box-shadow: 0 0 0 5px var(--primary-glow), var(--shadow-md);
}

.password-error {
    font-size: 0.95rem;
    color: var(--primary);
    margin-top: 0.8rem;
    min-height: 1.5rem;
    font-weight: 700;
}

.password-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem 2rem;
    background: linear-gradient(180deg, #F8F8F8 0%, #F0F0F0 100%);
}

.btn-cancel, .btn-enter {
    flex: 1;
    padding: 1rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-cancel {
    background: #E0E0E0;
    color: var(--text-gray);
}

.btn-cancel:hover {
    background: #D0D0D0;
}

.btn-enter {
    background: var(--gradient-pink);
    color: var(--text-white);
    box-shadow: var(--shadow-pink);
}

.btn-enter:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.5);
}

/* ========================================
   FOOTER ULTRA PREMIUM
   ======================================== */
.app-footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 2rem 1.2rem 2.5rem;
    margin-top: 2rem;
    border-top: 4px solid var(--primary);
    position: relative;
}

.app-footer::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-label {
    color: var(--accent);
    font-weight: 800;
}

/* Buscador de Órdenes en Footer */
.footer-search-container {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.search-order-btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 215, 0, 0.3);
    border: 2px solid var(--accent);
}

.search-order-btn-footer i {
    font-size: 1rem;
    color: var(--secondary);
}

.search-order-btn-footer:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 215, 0, 0.5);
    background: var(--bg-white);
}

.search-order-btn-footer:active {
    transform: translateY(-1px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-handle {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.admin-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.55;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.65rem 1.3rem;
    border-radius: var(--radius-full);
}

.admin-link:hover {
    opacity: 1;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.bottom-spacer {
    height: 70px;
}



/* ========================================
   MODAL DE BÚSQUEDA DE ÓRDENES
   ======================================== */
.search-modal-content {
    background: var(--bg-white);
    text-align: left;
    padding: 0;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    max-width: 520px;
    overflow: hidden;
    max-height: 90vh;
}

.search-modal-header {
    background: var(--gradient-header);
    padding: 1.3rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.search-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.search-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.search-modal-header h3 {
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.search-modal-header h3 i {
    color: var(--accent);
}

.search-modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.search-input-container {
    margin-bottom: 1.5rem;
}

.search-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.order-search-input {
    width: 100%;
    padding: 1.1rem 1.4rem;
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 700;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-normal);
    margin-bottom: 1rem;
}

.order-search-input::placeholder {
    color: var(--text-muted);
    font-weight: 500;
}

.order-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px var(--primary-glow), var(--shadow-md);
}

.btn-search-order {
    width: 100%;
    background: var(--gradient-green);
    color: var(--text-white);
    border: none;
    padding: 1.1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-success);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-search-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.btn-search-order:active {
    transform: translateY(-1px);
}

/* Resultados de búsqueda */
.search-results {
    margin-top: 1rem;
}

.search-hint,
.search-error,
.search-no-results {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    border: 2px dashed #E0E0E0;
}

.search-hint i,
.search-error i,
.search-no-results i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.search-hint i {
    color: var(--info);
}

.search-error i {
    color: var(--danger);
}

.search-no-results i {
    color: var(--text-light);
}

.search-hint p,
.search-error p,
.search-no-results p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.search-no-results span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.search-results-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    color: var(--success);
    font-weight: 700;
}

.search-results-header i {
    font-size: 1.1rem;
}

/* Tarjeta de orden encontrada */
.order-result-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.1rem;
    margin-bottom: 1rem;
    border: 2px solid #E8E0D5;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.order-result-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.order-result-card.status-enviado::before {
    background: var(--info);
}

.order-result-card.status-preparando::before {
    background: var(--warning);
}

.order-result-card.status-completado::before {
    background: var(--success);
}

.order-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px dashed #E0E0E0;
}

.order-result-number {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-dark);
}

.order-result-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
}

.order-result-status.status-enviado {
    background: rgba(59, 130, 246, 0.15);
    color: var(--info);
}

.order-result-status.status-preparando {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.order-result-status.status-completado {
    background: rgba(76, 175, 80, 0.15);
    color: var(--success);
}

.order-result-customer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.order-result-customer i {
    color: var(--secondary);
}

.order-result-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.order-result-item {
    background: var(--bg-cream);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
}

.order-result-more {
    background: rgba(196, 30, 58, 0.1);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.order-result-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid #F0F0F0;
}

.order-result-total {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.order-result-total .total-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.order-result-total .total-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
}

.order-result-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
}

.order-result-date i {
    color: var(--accent);
}

/* ========================================
   RESPONSIVE ULTRA PREMIUM
   ======================================== */
@media (max-width: 380px) {
    html {
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 2.6rem;
        letter-spacing: 3px;
    }
    
    .logo-subtitle {
        font-size: 2.1rem;
        letter-spacing: 5px;
    }
    
    .item-image {
        width: 75px;
        height: 75px;
    }
    
    .item-name {
        font-size: 0.95rem;
    }
    
    .item-price {
        font-size: 1.15rem;
        padding: 0.35rem 0.9rem;
    }
    
    .btn-minus, .btn-plus {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .success-buttons {
        flex-direction: column;
    }
    
    .btn-order-num, .btn-success-close {
        width: 100%;
    }
    
    .review-btn {
        font-size: 0.85rem;
        padding: 1rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .menu-item {
        flex-wrap: wrap;
    }
    
    .item-controls {
        width: 100%;
        justify-content: flex-end;
        margin-top: 0.9rem;
        padding-top: 0.9rem;
        border-top: 2px dashed #E0E0E0;
        background: transparent;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .menu-item {
        padding: 1.1rem;
    }
    
    .item-image {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 768px) {
    .modal-content {
        border-radius: var(--radius-2xl);
        margin: auto;
    }
    
    .success-modal-content {
        border-radius: var(--radius-2xl);
    }
    
    .password-modal-content {
        border-radius: var(--radius-2xl);
    }
    
    .modal {
        align-items: center;
    }
    
    .bebidas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .menu-section {
        margin-bottom: 2rem;
    }
}

/* ========================================
   SCROLLBAR PERSONALIZADO
   ======================================== */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
}

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

/* ========================================
   OPTIMIZACIONES TÁCTILES
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    .btn-minus, .btn-plus {
        min-width: 48px;
        min-height: 48px;
    }
    
    .btn-modal-minus, .btn-modal-plus {
        min-width: 42px;
        min-height: 42px;
    }
    
    .modal-close {
        width: 46px;
        height: 46px;
    }
    
    .menu-item:hover {
        transform: none;
    }
    
    .menu-item:active {
        transform: scale(0.98);
    }
}

/* ========================================
   ANIMACIONES ADICIONALES
   ======================================== */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--accent-glow); }
    50% { box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow); }
}

/* Efecto de loading */
.loading {
    background: linear-gradient(90deg, #F0F0F0 25%, #E0E0E0 50%, #F0F0F0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Selección de texto */
::selection {
    background: var(--primary);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--text-white);
}
