/* ========================================
   PITAMOR - PANADERÍA & REPOSTERÍA
   Tema: Romántico Premium Mobile-First
   ======================================== */

/* Variables CSS - Paleta Pitamor */
:root {
    --primary-pink: #E91E78;
    --primary-pink-light: #FF4D9E;
    --primary-pink-dark: #C2185B;
    --accent-blue: #1565C0;
    --accent-blue-light: #1E88E5;
    --accent-teal: #00BCD4;
    --accent-teal-light: #26C6DA;
    --accent-teal-dark: #00838F;
    --bg-cream: #FFF8F0;
    --bg-white: #FFFFFF;
    --bg-light: #FFF0F5;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFF5F8;
    --text-dark: #2D2D2D;
    --text-gray: #6B6B6B;
    --text-light-gray: #999999;
    --success-green: #25d366;
    --shadow-pink: rgba(233, 30, 120, 0.25);
    --shadow-blue: rgba(21, 101, 192, 0.15);
    --shadow-teal: rgba(0, 188, 212, 0.2);
    --gradient-pink: linear-gradient(135deg, #E91E78 0%, #FF4D9E 50%, #E91E78 100%);
    --gradient-teal: linear-gradient(135deg, #00BCD4 0%, #26C6DA 50%, #00BCD4 100%);
    --gradient-warm: linear-gradient(135deg, #E91E78 0%, #FF6B6B 50%, #FFB347 100%);
    --gradient-sky: linear-gradient(135deg, #1565C0 0%, #00BCD4 100%);
    --border-radius: 20px;
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    min-height: 100vh;
    padding-bottom: 100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========================================
   PANTALLA DE BIENVENIDA
   ======================================== */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 30%, #F0FAFF 60%, #FFF0F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    transition: opacity 0.8s ease;
}

.welcome-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(233, 30, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(21, 101, 192, 0.04) 0%, transparent 60%);
    background-size: 100% 100%;
}

/* Floating hearts animation */
.welcome-bg-pattern::before,
.welcome-bg-pattern::after {
    content: '♥';
    position: absolute;
    font-size: 1.5rem;
    color: rgba(233, 30, 120, 0.1);
    animation: floatHeart 6s ease-in-out infinite;
}

.welcome-bg-pattern::before {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.welcome-bg-pattern::after {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
    font-size: 1rem;
}

@keyframes floatHeart {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    25% { transform: translateY(-20px) rotate(10deg); opacity: 0.25; }
    50% { transform: translateY(-10px) rotate(-5deg); opacity: 0.15; }
    75% { transform: translateY(-25px) rotate(5deg); opacity: 0.2; }
}

.welcome-content {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.welcome-logo {
    margin-bottom: 30px;
}

.welcome-logo-img {
    width: 280px;
    max-width: 80vw;
    height: auto;
    margin-bottom: 5px;
    animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    filter: drop-shadow(0 10px 30px rgba(233, 30, 120, 0.2));
}

@keyframes scaleIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.cake-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

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

.welcome-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--accent-blue);
    letter-spacing: 0.05em;
    margin-top: 5px;
    animation: fadeInUp 1s ease 0.5s both;
}

.welcome-subtitle {
    font-size: 0.85rem;
    color: var(--text-gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
    animation: fadeInUp 1s ease 0.7s both;
}

.welcome-ornament {
    margin: 30px 0;
    animation: fadeInUp 1s ease 0.9s both;
}

.ornament-heart {
    font-size: 1.2rem;
    color: var(--primary-pink);
    text-shadow: 0 0 20px rgba(233, 30, 120, 0.3);
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

.ornament-heart::before,
.ornament-heart::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
}

.enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-pink);
    color: #fff;
    border: none;
    padding: 18px 45px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px var(--shadow-pink);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 1.1s both;
}

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

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

.enter-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px var(--shadow-pink);
}

.enter-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-family: 'Quicksand', sans-serif;
}

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

/* ========================================
   HEADER
   ======================================== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(233, 30, 120, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.header-logo-img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(233, 30, 120, 0.15));
}

/* ========================================
   CONTENEDOR DEL MENÚ
   ======================================== */
.menu-container {
    padding: 20px 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SECCIONES DEL MENÚ
   ======================================== */
.menu-section {
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px 0;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-pink);
    border-radius: 3px;
}

.section-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.15em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
    color: var(--primary-pink);
    letter-spacing: 0.05em;
}

/* ========================================
   ITEMS DEL MENÚ
   ======================================== */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 120, 0.08);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.menu-item:hover {
    transform: translateY(-4px);
    border-color: rgba(233, 30, 120, 0.2);
    box-shadow: 0 12px 40px rgba(233, 30, 120, 0.12);
}

.menu-item.selected {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 2px rgba(233, 30, 120, 0.15), 0 12px 40px rgba(233, 30, 120, 0.15);
}

.menu-item.added {
    animation: pulse 0.3s ease;
}

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

.item-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.item-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.item-badge.premium {
    background: linear-gradient(135deg, rgba(233, 30, 120, 0.9), rgba(255, 77, 158, 0.9));
    color: #fff;
}

.item-badge.bestseller {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.9), rgba(38, 198, 218, 0.9));
    color: #fff;
}

.item-badge.popular {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.9), rgba(255, 183, 77, 0.9));
    color: #fff;
}

.item-badge.nuevo {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(129, 199, 132, 0.9));
    color: #fff;
}

.item-badge.especial {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.9), rgba(186, 104, 200, 0.9));
    color: #fff;
}

.item-badge.signature {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.9), rgba(30, 136, 229, 0.9));
    color: #fff;
}

.item-content {
    padding: 18px;
}

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

.item-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.item-description {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

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

.item-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    padding: 5px 8px;
    border-radius: 30px;
}

.btn-decrease,
.btn-increase {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-decrease:hover {
    background: #FFE0EC;
    color: var(--primary-pink);
    transform: scale(1.1);
}

.btn-increase {
    background: var(--gradient-pink);
    color: #fff;
    box-shadow: 0 4px 15px var(--shadow-pink);
}

.btn-increase:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--shadow-pink);
}

.item-quantity {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
    color: var(--text-dark);
}

/* ========================================
   BARRA DE REVISAR PEDIDO
   ======================================== */
.review-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    border-top: 1px solid rgba(233, 30, 120, 0.15);
    box-shadow: 0 -5px 30px rgba(233, 30, 120, 0.1);
}

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

.review-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.review-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.review-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.review-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-pink);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px var(--shadow-pink);
}

.review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px var(--shadow-pink);
}

.btn-heart {
    font-size: 1.1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #fff;
    padding: 40px 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(233, 30, 120, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-handle {
    font-size: 0.9rem;
    color: var(--accent-teal);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-contact-item i {
    color: var(--primary-pink);
    width: 20px;
}

.footer-links {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.admin-link:hover {
    color: var(--primary-pink);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 25px 25px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, rgba(233, 30, 120, 0.05) 0%, transparent 100%);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-heart {
    font-size: 1.4rem;
    color: var(--primary-pink);
}

.modal-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-pink);
    color: #fff;
}

.modal-body {
    flex: 1;
    padding: 20px 25px;
    overflow-y: auto;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 10px;
    border: 1px solid rgba(233, 30, 120, 0.05);
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.order-item-price-unit {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.order-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(233, 30, 120, 0.08);
    color: var(--primary-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.order-qty-btn:hover {
    background: var(--primary-pink);
    color: #fff;
}

.order-qty-btn.increase {
    background: var(--primary-pink);
    color: #fff;
}

.order-item-qty {
    min-width: 25px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
}

.order-item-subtotal {
    font-weight: 700;
    color: var(--primary-pink);
    margin-left: 12px;
    min-width: 65px;
    text-align: right;
}

.empty-order {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-gray);
}

.empty-order i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
    color: var(--primary-pink);
}

.order-summary {
    padding: 20px 0;
    border-top: 2px solid rgba(233, 30, 120, 0.1);
    margin-bottom: 20px;
}

.summary-row.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.total-amount {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.name-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.name-input-container {
    position: relative;
}

.customer-name-input {
    width: 100%;
    background: var(--bg-light);
    border: 2px solid rgba(233, 30, 120, 0.1);
    border-radius: 15px;
    padding: 15px 18px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.customer-name-input::placeholder {
    color: var(--text-light-gray);
}

.customer-name-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 120, 0.1);
}

.modal-footer {
    padding: 20px 25px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.send-order-btn {
    width: 100%;
    background: var(--gradient-pink);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 5px 25px var(--shadow-pink);
}

.send-order-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.send-order-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px var(--shadow-pink);
}

.send-order-btn i {
    font-size: 1.3rem;
}

/* ========================================
   MODAL DE ÉXITO
   ======================================== */
.success-modal {
    text-align: center;
    padding: 40px 30px;
    max-height: none;
    border-radius: 25px 25px 0 0;
}

.success-icon {
    margin-bottom: 25px;
}

.check-circle {
    font-size: 4rem;
    animation: bounce 1.5s ease infinite;
}

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

.success-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.success-submessage {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.success-thanks {
    font-size: 1rem;
    color: var(--accent-teal);
    font-weight: 700;
    margin-bottom: 30px;
}

.success-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-number-display {
    background: rgba(233, 30, 120, 0.06);
    border: 1px solid rgba(233, 30, 120, 0.15);
    padding: 15px;
    border-radius: 15px;
    font-weight: 700;
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.success-btn {
    background: var(--gradient-pink);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px var(--shadow-pink);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px var(--shadow-pink);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 380px) {
    .welcome-logo-img {
        width: 220px;
    }
    
    .welcome-tagline {
        font-size: 1.2rem;
    }
    
    .item-image {
        height: 160px;
    }
    
    .item-price {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    .menu-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .modal-content {
        max-width: 500px;
        border-radius: 25px;
        margin: auto;
    }
    
    .success-modal {
        border-radius: 25px;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 3px;
}

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

/* ========================================
   ANIMACIONES DE CARGA
   ======================================== */
.menu-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }

.menu-section {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.3s; }
.menu-section:nth-child(3) { animation-delay: 0.5s; }
.menu-section:nth-child(4) { animation-delay: 0.7s; }
.menu-section:nth-child(5) { animation-delay: 0.9s; }
.menu-section:nth-child(6) { animation-delay: 1.1s; }

/* ========================================
   PROMO BANNER
   ======================================== */
.promo-banner {
    background: var(--gradient-warm);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(233, 30, 120, 0.2);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.promo-banner h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    margin-bottom: 5px;
    position: relative;
}

.promo-banner p {
    font-size: 0.85rem;
    opacity: 0.9;
    position: relative;
}
