/* ========================================
   DULCE BOUTIQUE - ESTILOS PRINCIPALES
   Tema: Pastelería Premium Mobile-First
   ======================================== */

/* Variables CSS - Paleta Pastelería */
:root {
    --primary-rose: #C4919A;
    --primary-rose-light: #E8C8CD;
    --primary-rose-dark: #9E6B73;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E8D5A3;
    --champagne: #F7E7CE;
    --champagne-light: #FFFBF5;
    --bg-cream: #FDF8F0;
    --bg-light: #FFFEF9;
    --bg-card: #FFFFFF;
    --text-dark: #3C2415;
    --text-gray: #6F4E37;
    --text-light-gray: #8B7355;
    --success-green: #25d366;
    --shadow-rose: rgba(196, 145, 154, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.2);
    --gradient-rose: linear-gradient(135deg, #9E6B73 0%, #C4919A 50%, #E8C8CD 100%);
    --gradient-gold: linear-gradient(135deg, #C9A962 0%, #E8D5A3 50%, #D4AF37 100%);
    --gradient-luxury: linear-gradient(135deg, #C4919A 0%, #E8C8CD 50%, #F7E7CE 100%);
}

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

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

body {
    font-family: 'Montserrat', 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(180deg, #FFFBF5 0%, #F7E7CE 30%, #E8C8CD 70%, #C4919A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    transition: opacity 0.6s ease;
}

.welcome-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 145, 154, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 25 L55 30 L35 35 L30 55 L25 35 L5 30 L25 25 Z' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100% 100%, 100% 100%, 60px 60px;
    opacity: 0.5;
}

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

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

.pastry-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-dark);
    text-shadow: 0 2px 10px rgba(60, 36, 21, 0.15);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.welcome-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-rose-dark);
    letter-spacing: 0.4em;
    margin-bottom: 10px;
}

.welcome-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    letter-spacing: 0.15em;
    font-style: italic;
}

.welcome-ornament {
    margin: 35px 0;
}

.ornament-flower {
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-rose);
    color: var(--bg-light);
    border: none;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px var(--shadow-rose);
    position: relative;
    overflow: hidden;
}

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

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

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

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

/* ========================================
   HEADER
   ======================================== */
.header {
    background: linear-gradient(180deg, rgba(255, 254, 249, 0.98) 0%, rgba(253, 248, 240, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(196, 145, 154, 0.15);
}

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

.header-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-rose);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow-rose);
}

.logo-icon {
    font-size: 1.8rem;
}

.header-text {
    text-align: left;
}

.restaurant-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.1em;
}

.restaurant-subtitle {
    font-size: 0.7rem;
    color: var(--primary-rose-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.order-counter-badge {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    box-shadow: 0 2px 10px rgba(60, 36, 21, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.order-counter-badge span:first-child {
    color: var(--text-gray);
}

.order-counter-badge span:last-child {
    font-weight: 700;
    color: var(--primary-rose-dark);
    font-family: 'SF Mono', 'Monaco', monospace;
}

/* ========================================
   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: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--primary-rose-dark);
    letter-spacing: 0.1em;
    font-style: italic;
}

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

.menu-item {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    box-shadow: 0 4px 20px rgba(60, 36, 21, 0.06);
}

.menu-item:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 145, 154, 0.3);
    box-shadow: 0 10px 40px rgba(60, 36, 21, 0.12);
}

.menu-item.selected {
    border-color: var(--primary-rose);
    box-shadow: 0 0 30px var(--shadow-rose);
}

.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: 180px;
    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(212, 175, 55, 0.9), rgba(232, 213, 163, 0.9));
    color: #3C2415;
}

.item-badge.signature {
    background: linear-gradient(135deg, rgba(158, 107, 115, 0.9), rgba(196, 145, 154, 0.9));
    color: #FFFFFF;
}

.item-badge.popular {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 180, 50, 0.9));
    color: #3C2415;
}

.item-badge.bestseller {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.9), rgba(100, 255, 100, 0.9));
    color: #1a1a1a;
}

.item-content {
    padding: 18px;
}

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

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.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: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-rose-dark);
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 231, 206, 0.5);
    padding: 6px 10px;
    border-radius: 30px;
}

.btn-decrease,
.btn-increase {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--bg-card);
    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(60, 36, 21, 0.1);
}

.btn-decrease:hover,
.btn-increase:hover {
    background: var(--primary-rose);
    color: var(--bg-light);
    transform: scale(1.1);
}

.btn-increase {
    background: var(--primary-rose);
    color: var(--bg-light);
}

.btn-increase:hover {
    background: var(--primary-rose-dark);
}

.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: var(--text-dark);
    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: 3px solid var(--accent-gold);
}

.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(--champagne);
    letter-spacing: 0.1em;
    opacity: 0.7;
}

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

.review-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-rose);
    color: var(--bg-light);
    border: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px var(--shadow-rose);
}

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

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--champagne-light) 100%);
    padding: 40px 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.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: 15px;
}

.footer-icon {
    font-size: 2rem;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-dark);
}

.footer-handle {
    font-size: 0.9rem;
    color: var(--primary-rose-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.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-rose);
    width: 20px;
}

.footer-links {
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.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;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(60, 36, 21, 0.05);
}

.admin-link:hover {
    color: var(--primary-rose-dark);
    background: rgba(196, 145, 154, 0.1);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 36, 21, 0.6);
    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: var(--bg-card);
    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(212, 175, 55, 0.15);
    background: linear-gradient(180deg, rgba(247, 231, 206, 0.3) 0%, transparent 100%);
}

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

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

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

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

.modal-close:hover {
    background: var(--primary-rose);
    color: var(--bg-light);
}

.modal-body {
    flex: 1;
    padding: 20px 25px;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-cream) 100%);
}

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

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 2px 10px rgba(60, 36, 21, 0.04);
}

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

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

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

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

.order-qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(247, 231, 206, 0.5);
    color: var(--text-dark);
    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-rose);
    color: var(--bg-light);
}

.order-qty-btn.increase {
    background: var(--primary-rose);
    color: var(--bg-light);
}

.order-item-qty {
    min-width: 25px;
    text-align: center;
    font-weight: 700;
}

.order-item-subtotal {
    font-weight: 700;
    color: var(--primary-rose-dark);
    margin-left: 15px;
    min-width: 70px;
    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.5;
}

.order-summary {
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    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-rose-dark);
    font-size: 1.5rem;
}

/* Table Selection */
.table-selection {
    margin-bottom: 20px;
}

.selection-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    text-align: center;
    font-weight: 500;
}

.table-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.table-btn {
    padding: 14px;
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-btn:hover {
    border-color: var(--primary-rose-light);
    background: var(--champagne-light);
}

.table-btn.selected {
    background: var(--gradient-rose);
    border-color: var(--primary-rose);
    color: var(--bg-light);
}

.table-btn.para-llevar {
    grid-column: span 3;
    font-size: 0.95rem;
    background: var(--champagne-light);
    letter-spacing: 0.05em;
}

.table-btn.para-llevar.selected {
    background: var(--gradient-rose);
}

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

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

.customer-name-input {
    width: 100%;
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 15px 18px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

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

.customer-name-input:focus {
    outline: none;
    border-color: var(--primary-rose);
    box-shadow: 0 0 20px var(--shadow-rose);
}

.modal-footer {
    padding: 20px 25px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    background: var(--champagne-light);
}

.send-order-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--success-green) 0%, #128C7E 100%);
    color: var(--bg-light);
    border: none;
    padding: 18px;
    border-radius: 15px;
    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 rgba(37, 211, 102, 0.3);
}

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

.send-order-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.4);
}

.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 1s ease infinite;
}

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

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.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(--primary-rose-dark);
    font-weight: 600;
    margin-bottom: 30px;
}

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

.order-number-display {
    background: rgba(196, 145, 154, 0.1);
    border: 1px solid rgba(196, 145, 154, 0.3);
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--primary-rose-dark);
    font-size: 1.1rem;
}

.success-btn {
    background: var(--gradient-rose);
    color: var(--bg-light);
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px var(--shadow-rose);
}

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

/* ========================================
   MODAL ADMIN LOGIN
   ======================================== */
.admin-login-modal {
    text-align: center;
    padding: 40px 30px;
    max-height: none;
    border-radius: 25px 25px 0 0;
}

.admin-login-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.admin-login-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.admin-password-input {
    width: 100%;
    background: var(--champagne-light);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 15px;
    font-size: 1rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.admin-password-input:focus {
    outline: none;
    border-color: var(--primary-rose);
}

.admin-error {
    color: #DC2626;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: none;
    font-weight: 600;
}

.admin-error.visible {
    display: block;
}

.admin-login-buttons {
    display: flex;
    gap: 15px;
}

.admin-cancel-btn,
.admin-enter-btn {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-cancel-btn {
    background: var(--champagne-light);
    border: 2px solid rgba(212, 175, 55, 0.2);
    color: var(--text-gray);
}

.admin-cancel-btn:hover {
    border-color: var(--text-gray);
}

.admin-enter-btn {
    background: var(--gradient-rose);
    border: none;
    color: var(--bg-light);
}

.admin-enter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-rose);
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--text-dark);
    color: var(--champagne);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 4000;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 25px rgba(60, 36, 21, 0.2);
}

.toast.visible {
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 380px) {
    .welcome-title {
        font-size: 4rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
        letter-spacing: 0.3em;
    }
    
    .item-image {
        height: 150px;
    }
    
    .item-price {
        font-size: 1.2rem;
    }
    
    .review-btn {
        padding: 12px 18px;
        font-size: 0.75rem;
    }
}

@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,
    .admin-login-modal {
        border-radius: 25px;
    }
}

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

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

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

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

/* ========================================
   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; }

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
