/* === COMPONENTES PROFESIONALES LOVE MAR === */

/* === CARDS BASE ELEGANTES === */
.card {
    background: linear-gradient(135deg, #FEFEFE 0%, #F8F6F0 50%, #F5F3ED 100%);
    backdrop-filter: var(--blur-medium);
    border: 1px solid rgba(107, 155, 179, 0.12);
    border-radius: var(--border-radius-xl);
    box-shadow: 
        0 8px 32px rgba(46, 106, 122, 0.08),
        0 4px 16px rgba(46, 106, 122, 0.06),
        0 2px 8px rgba(46, 106, 122, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: var(--transition-hover);
    cursor: pointer;
    position: relative;
    color: var(--text-primary);
    transform: translateY(0) scale(1);
    will-change: transform, box-shadow;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(74, 138, 160, 0.03) 0%, 
        rgba(107, 155, 179, 0.03) 100%);
    opacity: 0;
    transition: var(--transition-elegant);
    z-index: 1;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: var(--border-radius-xl);
    background: linear-gradient(135deg, var(--light-water), var(--detail-water)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: var(--transition-elegant);
    z-index: 2;
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    opacity: 0.6;
}

.card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 
        0 16px 32px rgba(46, 106, 122, 0.12),
        0 8px 16px rgba(46, 106, 122, 0.08),
        0 4px 8px rgba(46, 106, 122, 0.06),
        0 2px 4px rgba(46, 106, 122, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(107, 155, 179, 0.25);
}

.card:active {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-card-active);
    transition: var(--transition-fast);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
    will-change: transform;
}

.card:hover .card-image {
    transform: scale(1.08) translateY(-2px);
}

.card:active .card-image {
    transform: scale(1.05) translateY(-1px);
    transition: var(--transition-fast);
}

.card-content {
    padding: calc(var(--spacing-lg) * 1.5) var(--spacing-xl) var(--spacing-xl);
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, 
        rgba(254, 254, 254, 0.95) 0%, 
        rgba(248, 246, 240, 0.92) 100%);
    margin: 0;
    transition: var(--transition-elegant);
}

.card:hover .card-title {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--secondary-water), var(--primary-water));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card:hover .card-description {
    opacity: 1;
    transform: translateY(-1px);
}

.card:hover .card-price {
    transform: translateY(-1px) scale(1.02);
    text-shadow: 0 2px 6px rgba(46, 106, 122, 0.15);
}

.card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: calc(var(--spacing-sm) * 1.2);
    line-height: 1.3;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-water), var(--secondary-water));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-elegant);
    position: relative;
    z-index: 3;
}

.card-description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 400;
    margin-bottom: calc(var(--spacing-md) * 1.25);
    line-height: 1.6;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.9;
    transition: var(--transition-elegant);
    position: relative;
    z-index: 3;
}

.card-price {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-water);
    margin-bottom: calc(var(--spacing-sm) * 1.5);
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(46, 106, 122, 0.1);
    transition: var(--transition-elegant);
    position: relative;
    z-index: 3;
}

.card-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--bg-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: var(--shadow-gold);
}

/* === PROMOCIONES ESPECIALES === */
.promocion-card {
    background: linear-gradient(135deg, 
        rgba(145, 192, 212, 0.12) 0%, 
        rgba(162, 210, 220, 0.12) 100%);
    border: 2px solid var(--primary-water);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold-hover);
    z-index: var(--z-content);
}

.promocion-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        rgba(107, 155, 179, 0.08), 
        transparent
    );
    animation: rotate 12s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.promocion-card .card-content {
    background: linear-gradient(180deg, 
        rgba(254, 254, 254, 0.95) 0%, 
        rgba(248, 246, 240, 0.92) 100%);
    backdrop-filter: var(--blur-medium);
    margin: var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(107, 155, 179, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.promocion-card .card-title {
    background: linear-gradient(135deg, var(--primary-water), var(--secondary-water));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
}

.promocion-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.precio-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-right: var(--spacing-sm);
}

.precio-descuento {
    color: var(--primary-gold);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.descuento-badge {
    background: linear-gradient(135deg, var(--primary-water), var(--secondary-water));
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-teal);
}

/* === CATEGORÍAS ELEGANTES === */
.categoria-card {
    min-height: 320px; /* aumentar altura total para dar más espacio a la imagen */
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #FEFEFE 0%, #F8F6F0 50%, #F5F3ED 100%);
    backdrop-filter: var(--blur-medium);
    border: 1px solid rgba(107, 155, 179, 0.12);
    box-shadow: 
        0 8px 32px rgba(46, 106, 122, 0.08),
        0 4px 16px rgba(46, 106, 122, 0.06),
        0 2px 8px rgba(46, 106, 122, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.categoria-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(107, 155, 179, 0.25);
    box-shadow: 
        0 16px 32px rgba(46, 106, 122, 0.12),
        0 8px 16px rgba(46, 106, 122, 0.08),
        0 4px 8px rgba(46, 106, 122, 0.06),
        0 2px 4px rgba(46, 106, 122, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.categoria-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ajustes para la imagen de categoría en desktop */
.categoria-card .card-image {
    height: 200px; /* imagen más grande en desktop */
    object-fit: cover;
    width: 100%;
    display: block;
}

.categoria-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(32, 178, 170, 0.3);
}

.productos-count {
    background: var(--bg-glass-hover);
    color: var(--text-secondary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    border: 1px solid rgba(32, 178, 170, 0.3);
}

.categoria-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-teal);
}

/* === PRODUCTOS PREMIUM === */
.producto-card {
    background: var(--bg-glass);
    backdrop-filter: var(--blur-medium);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.producto-card:hover {
    background: var(--bg-glass-hover);
    border-color: var(--primary-gold);
}

.producto-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.producto-details {
    flex: 1;
}

.producto-price-section {
    text-align: right;
}

.producto-disponibilidad {
    font-size: var(--font-size-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    font-weight: var(--font-weight-medium);
    margin-top: var(--spacing-sm);
}

.disponible {
    background: rgba(40, 167, 69, 0.2);
    color: var(--caribbean-green);
    border: 1px solid var(--caribbean-green);
}

.no-disponible {
    background: rgba(220, 53, 69, 0.2);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}


/* === MODAL PROFESIONAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: var(--blur-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    padding: var(--spacing-md);
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-strong);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: var(--blur-medium);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--font-size-xl);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.modal-body {
    padding: var(--spacing-xl);
}

/* === EFECTOS VISUALES SOFISTICADOS === */
.hover-lift {
    transition: var(--transition-elegant);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Dividers elegantes entre secciones */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-water) 20%, 
        var(--primary-water) 50%, 
        var(--accent-water) 80%, 
        transparent 100%);
    margin: calc(var(--spacing-3xl) * 1.5) 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border: 2px solid var(--primary-water);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(46, 106, 122, 0.3);
}

/* Animación de entrada escalonada */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: slideInUp 0.6s ease-out forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* Estados de loading elegantes */
.loading-skeleton {
    background: linear-gradient(90deg, 
        var(--bg-cream) 25%, 
        var(--detail-water) 50%, 
        var(--bg-cream) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* === COMBOS ESPECIALES === */
.combos-section {
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: var(--z-content);
}

.combos-container {
    display: grid;
    gap: var(--grid-gap-lg);
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.combo-card {
    background: linear-gradient(135deg, #FEFEFE 0%, #F8F6F0 50%, #F5F3ED 100%);
    border: 1px solid rgba(107, 155, 179, 0.12);
    border-radius: var(--border-radius-xl);
    box-shadow: 
        0 8px 32px rgba(46, 106, 122, 0.08),
        0 4px 16px rgba(46, 106, 122, 0.06),
        0 2px 8px rgba(46, 106, 122, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.combo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-water), var(--secondary-water), var(--accent-water));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
    z-index: 1;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.combo-badge {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal)) !important;
    color: var(--text-primary) !important;
    font-weight: var(--font-weight-bold) !important;
    letter-spacing: 1px !important;
    animation: pulse 2s infinite !important;
}

.combo-content {
    padding: var(--spacing-lg);
}

.combo-title {
    color: var(--primary-water);
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.combo-description {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.combo-platos-preview {
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, var(--bg-cream), rgba(235, 231, 205, 0.4));
    border-radius: var(--border-radius-md);
    border-left: 2px solid var(--primary-water);
}

.combo-platos-title-preview {
    color: var(--primary-water);
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.combo-platos-list-preview {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xs);
}

.combo-plato-preview {
    display: block;
    padding: var(--spacing-2xs) 0;
}

.combo-plato-preview:last-child {
    border-bottom: none;
}

.plato-nombre-preview {
    color: var(--text-dark);
    font-size: var(--font-size-xs);
    opacity: 0.8;
}

.combo-platos-extra {
    color: var(--primary-water);
    font-size: var(--font-size-2xs);
    font-weight: 600;
    font-style: italic;
    margin-top: var(--spacing-2xs);
    opacity: 0.7;
}

.combo-footer-simplified {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(46, 106, 122, 0.1);
}

.combo-price-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.combo-price {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-water);
    text-align: center;
    background: linear-gradient(135deg, var(--bg-sand), rgba(248, 244, 229, 0.8));
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(46, 106, 122, 0.1);
    box-shadow: 0 2px 8px rgba(46, 106, 122, 0.05);
    position: relative;
    overflow: hidden;
}

.combo-savings {
    font-size: var(--font-size-xs);
    color: var(--accent-water);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(162, 210, 220, 0.1), rgba(182, 227, 228, 0.15));
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-full);
    border: 1px solid var(--accent-water);
    text-align: center;
    backdrop-filter: blur(10px);
}

.combo-view-btn {
    background: linear-gradient(135deg, var(--primary-water) 0%, var(--secondary-water) 100%);
    color: var(--white);
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    box-shadow: 
        0 4px 16px rgba(46, 106, 122, 0.2),
        0 2px 8px rgba(46, 106, 122, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 44px;
}

.combo-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 
        0 16px 32px rgba(46, 106, 122, 0.12),
        0 8px 16px rgba(46, 106, 122, 0.08),
        0 4px 8px rgba(46, 106, 122, 0.06),
        0 2px 4px rgba(46, 106, 122, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(107, 155, 179, 0.25);
}

.combo-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 106, 122, 0.05), transparent);
    transition: left 0.5s ease;
}

.combo-card:hover .combo-price::before {
    left: 100%;
}

.combo-view-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.6s ease;
}

.combo-view-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(46, 106, 122, 0.3),
        0 4px 15px rgba(46, 106, 122, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--secondary-water) 0%, var(--accent-water) 100%);
}

.combo-view-btn:hover::before {
    left: 100%;
}

.combo-view-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 4px 15px rgba(46, 106, 122, 0.25),
        0 2px 8px rgba(46, 106, 122, 0.15);
    transition: all 0.1s ease;
}

.combo-view-btn:focus {
    outline: none;
    box-shadow: 
        0 4px 16px rgba(46, 106, 122, 0.2),
        0 2px 8px rgba(46, 106, 122, 0.1),
        0 0 0 3px rgba(46, 106, 122, 0.3);
}

.combo-select-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.combo-select-btn:active::before {
    width: 300px;
    height: 300px;
}


/* === MODAL DE COMBOS PROFESIONAL === */
.combo-modal-content {
    max-width: 900px;
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-modal);
    position: relative;
    margin: auto;
}

.combo-modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 10;
    background: rgba(46, 106, 122, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-water);
    font-size: var(--font-size-lg);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.combo-modal-close:hover {
    background: rgba(46, 106, 122, 0.2);
    transform: scale(1.05);
}

/* === HERO SECTION === */
.combo-modal-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, 
        var(--bg-sand) 0%, 
        rgba(248, 244, 230, 0.8) 50%,
        var(--bg-cream) 100%);
    border-radius: var(--border-radius-2xl) var(--border-radius-2xl) 0 0;
    position: relative;
}

.combo-modal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-water), var(--secondary-water), var(--accent-water));
    border-radius: var(--border-radius-2xl) var(--border-radius-2xl) 0 0;
}

.combo-hero-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.combo-modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.combo-hero-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-water), var(--secondary-water));
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-2xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--spacing-2xs);
    box-shadow: var(--shadow-button);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.combo-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.combo-hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-md);
}

.combo-modal-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-water);
    line-height: 1.2;
    margin: 0;
    flex: 1;
}

.combo-modal-price-tag {
    background: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    border: 1px solid rgba(46, 106, 122, 0.1);
    min-width: 120px;
}

.combo-price-main {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-water);
    line-height: 1;
}

.combo-price-label {
    display: block;
    font-size: var(--font-size-2xs);
    color: var(--text-muted);
    font-weight: 500;
    margin-top: var(--spacing-2xs);
}

.combo-modal-description {
    color: var(--text-dark);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin: 0 0 var(--spacing-lg) 0;
    opacity: 0.8;
}

.combo-savings-highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(162, 210, 220, 0.15), rgba(182, 227, 228, 0.2));
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--accent-water);
    backdrop-filter: blur(10px);
}

.savings-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-water), var(--detail-water));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-water);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.savings-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xs);
}

.savings-title {
    font-weight: 700;
    color: var(--primary-water);
    font-size: var(--font-size-sm);
}

.savings-amount {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--accent-water);
}

/* === BODY SECTION === */
.combo-modal-body {
    padding: var(--spacing-2xl);
}

.combo-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(46, 106, 122, 0.1);
}

.combo-section-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-water);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin: 0;
}

.combo-platos-count {
    background: var(--accent-water);
    color: var(--primary-water);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.combo-modal-platos {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.combo-modal-plato {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border: 1px solid rgba(46, 106, 122, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card-subtle);
    transition: var(--transition-smooth);
}

.combo-modal-plato:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: rgba(46, 106, 122, 0.15);
}

.plato-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-water), var(--secondary-water));
    color: var(--white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.plato-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xs);
}

.combo-modal-plato .plato-nombre {
    font-weight: 600;
    color: var(--text-dark);
    font-size: var(--font-size-base);
    margin: 0;
}

.plato-precio-individual {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.plato-check {
    width: 28px;
    height: 28px;
    background: var(--accent-water);
    color: var(--primary-water);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: var(--font-size-sm);
}

.combo-pricing-breakdown {
    background: linear-gradient(135deg, var(--bg-cream), rgba(235, 231, 205, 0.6));
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(46, 106, 122, 0.08);
}

.pricing-header h4 {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-water);
    margin: 0 0 var(--spacing-md) 0;
    text-align: center;
}

.pricing-comparison {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.pricing-label {
    font-size: var(--font-size-base);
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.original-price {
    color: var(--text-muted);
    text-decoration: line-through;
}

.combo-price {
    color: var(--primary-water);
}

.pricing-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-water), transparent);
    margin: var(--spacing-sm) 0;
    border-radius: var(--border-radius-full);
}

.savings-pricing {
    background: rgba(162, 210, 220, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--accent-water);
}

.savings-value {
    color: var(--accent-water);
    font-size: var(--font-size-xl);
}

/* === FOOTER SECTION === */
.combo-modal-footer {
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: linear-gradient(135deg, var(--bg-sand), rgba(248, 244, 230, 0.6));
    border-top: 1px solid rgba(46, 106, 122, 0.1);
    border-radius: 0 0 var(--border-radius-2xl) var(--border-radius-2xl);
}

.footer-info {
    margin-bottom: var(--spacing-lg);
}

.combo-meta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
}

.combo-meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.combo-meta-item i {
    color: var(--primary-water);
}

.footer-actions {
    display: flex;
    justify-content: center;
}

.combo-add-btn {
    background: linear-gradient(135deg, var(--primary-water), var(--secondary-water));
    color: var(--white);
    border: none;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    font-weight: 700;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-button);
    min-width: 250px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.combo-add-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-button-hover);
    background: linear-gradient(135deg, var(--secondary-water), var(--accent-water));
}

.combo-add-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.combo-add-btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2xs);
}

.btn-main {
    font-size: var(--font-size-base);
    line-height: 1;
}

.btn-price {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    font-weight: 600;
}

.combo-modal-header {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
}

.combo-modal-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
}

.combo-modal-info {
    flex: 1;
}

.combo-modal-title {
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
}

.combo-modal-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.combo-modal-price {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    color: var(--primary-gold);
    font-weight: var(--font-weight-bold);
}

.combo-modal-body h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

.combo-modal-platos {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.combo-modal-plato {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.combo-modal-plato:last-child {
    border-bottom: none;
}

.plato-precio-individual {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: var(--font-size-sm);
}

.combo-modal-savings {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(32, 178, 170, 0.1));
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: var(--spacing-lg);
}

.savings-calculation {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.individual-total,
.combo-total {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.savings-amount {
    display: flex;
    justify-content: space-between;
    color: var(--primary-teal);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(32, 178, 170, 0.3);
}

.combo-modal-footer {
    display: flex;
    justify-content: center;
}

.combo-add-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--bg-dark);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-gold);
}

.combo-add-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-gold-hover);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .card-content {
        padding: var(--spacing-md);
    }
    
    .card-image {
        height: 180px;
    }
    
    .promocion-details {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }
    
    .producto-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .producto-price-section {
        text-align: left;
    }
    
    .modal-content {
        margin: var(--spacing-md);
        max-height: calc(100vh - 2 * var(--spacing-md));
    }
    
    .modal-body {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .card-image {
        height: 160px;
    }
    
    .categoria-card {
        min-height: 220px;
    }
    
    .card-title {
        font-size: var(--font-size-base);
    }
    
    .card-description {
        font-size: var(--font-size-xs);
    }
}

/* === PRODUCTOS PROFESIONALES === */
.producto-card {
    background: linear-gradient(135deg, #FEFEFE 0%, #F8F6F0 50%, #F5F3ED 100%);
    backdrop-filter: var(--blur-strong);
    border: 1px solid rgba(107, 155, 179, 0.12);
    border-radius: var(--border-radius-xl);
    box-shadow: 
        0 8px 32px rgba(46, 106, 122, 0.08),
        0 4px 16px rgba(46, 106, 122, 0.06),
        0 2px 8px rgba(46, 106, 122, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.producto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, 
        rgba(107, 155, 179, 0.03) 0%, 
        rgba(145, 192, 212, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.producto-card:hover::before {
    opacity: 1;
}

.producto-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 
        0 16px 32px rgba(46, 106, 122, 0.12),
        0 8px 16px rgba(46, 106, 122, 0.08),
        0 4px 8px rgba(46, 106, 122, 0.06),
        0 2px 4px rgba(46, 106, 122, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(107, 155, 179, 0.25);
}

/* === IMAGEN DEL PRODUCTO === */
.producto-image-container {
    position: relative;
    overflow: hidden;
    height: 300px; /* aumentado para mostrar imagen más grande */
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mostrar imagen completa sin recortar */
    object-position: center center;
    background-color: #ffffff;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.producto-card:hover .producto-image {
    transform: scale(1.05);
}

.producto-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.producto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.producto-card:hover .producto-overlay {
    opacity: 1;
}

.producto-quick-view {
    background: var(--primary-gold);
    color: var(--text-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.producto-card:hover .producto-quick-view {
    transform: translateY(0);
}

.producto-quick-view:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* === CONTENIDO DEL PRODUCTO === */
.producto-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.producto-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.producto-title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.producto-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--accent-gold);
    font-size: 12px;
}

.rating-text {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

.producto-description {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.4;
    margin: 0 0 16px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em;
}

.producto-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.producto-category,
.producto-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-xs);
    color: var(--text-tertiary);
    font-weight: 500;
}

.producto-category i,
.producto-time i {
    color: var(--primary-gold);
    font-size: 12px;
}

/* === PIE DEL PRODUCTO === */
.producto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.precio-section {
    flex: 1;
}

.precio-promocion {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.precio-original {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
    text-decoration: line-through;
    font-weight: 400;
}

.precio-final,
.precio-principal {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-display);
}

.ahorro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-top: 6px;
}

.producto-actions {
    display: flex;
    gap: 8px;
}

.btn-details {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--text-dark);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    text-decoration: none;
    white-space: nowrap;
}

.btn-details:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 100%);
    color: var(--text-dark);
}

/* === RESPONSIVE PARA PRODUCTOS === */
@media (max-width: 768px) {
    .producto-image-container {
        height: 200px;
    }
    
    .producto-content {
        padding: 16px;
    }
    
    .producto-title {
        font-size: var(--font-size-base);
    }
    
    .producto-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .producto-rating {
        margin-left: 0;
    }
    
    .producto-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .producto-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .btn-details {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .producto-image-container {
        height: 180px;
    }
    
    .producto-content {
        padding: 12px;
    }
    
    .producto-title {
        font-size: var(--font-size-sm);
    }
    
    .producto-description {
        font-size: var(--font-size-xs);
        -webkit-line-clamp: 1;
        max-height: 1.4em;
        line-height: 1.3;
    }
}

/* === MODAL PROFESIONAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, #FEFEFE 0%, #F8F6F0 50%, #F5F3ED 100%);
    backdrop-filter: var(--blur-strong);
    border: 1px solid rgba(107, 155, 179, 0.15);
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    min-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 
        0 25px 50px rgba(46, 106, 122, 0.2),
        0 0 100px rgba(107, 155, 179, 0.1);
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

.modal-content::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.modal-content {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer y Edge */
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--primary-gold);
    transform: scale(1.1) rotate(90deg);
}

/* === CONTENEDOR DEL MODAL === */
.product-modal-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.product-modal-container::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.product-modal-container {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer y Edge */
}

.product-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(32, 178, 170, 0.1) 100%);
}

.modal-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.modal-breadcrumb i {
    color: var(--primary-gold);
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-rating .stars {
    display: flex;
    gap: 2px;
}

.modal-rating .stars i {
    color: var(--accent-gold);
    font-size: 14px;
}

.modal-price-preview {
    display: flex;
    align-items: center;
}

.price-preview {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-gold);
}

.product-category-info {
    margin-top: 16px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.category-badge i {
    color: var(--primary-gold);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.info-item i {
    color: var(--primary-gold);
    font-size: 14px;
    width: 16px;
}

/* === HÉROE DEL MODAL === */
.product-modal-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-modal-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
    animation: heroPromoFloat 3s ease-in-out infinite;
}

@keyframes heroPromoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.promo-icon {
    font-size: 18px;
    animation: flame 1.5s ease-in-out infinite alternate;
}

@keyframes flame {
    0% { transform: scale(1) rotate(-2deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

.promo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-percentage {
    font-size: var(--font-size-lg);
    font-weight: 700;
    line-height: 1;
}

.promo-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    opacity: 0.9;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal-hero:hover .image-overlay {
    opacity: 1;
}

.image-zoom-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-modal-hero:hover .image-zoom-btn {
    transform: translateY(0);
}

.image-zoom-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-5px) scale(1.05);
}

/* === CONTENIDO PRINCIPAL === */
.product-modal-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.product-modal-content::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.product-modal-content {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer y Edge */
}

.product-main-info {
    flex: 2;
    padding: 30px;
    overflow-y: auto;
    background: var(--bg-glass-light);
    max-height: calc(90vh - 300px - 60px); /* Altura máxima menos hero y header */
}

.product-main-info::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.product-main-info {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer y Edge */
}

.product-title-section {
    margin-bottom: 24px;
}

.product-modal-title {
    font-family: var(--font-display);
    font-size: var(--font-size-xxl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.product-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.badge.chef-special {
    background: linear-gradient(135deg, #ff9a56 0%, #ffad56 100%);
    color: white;
}

.badge.fresh {
    background: linear-gradient(135deg, #32d583 0%, #2ecc71 100%);
    color: white;
}

.product-description {
    margin-bottom: 28px;
}

.description-title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.description-text {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* === CARACTERÍSTICAS === */
.product-features {
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 16px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-label {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
    font-weight: 500;
}

.feature-value {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    font-weight: 600;
}

/* === INFORMACIÓN NUTRICIONAL === */
.product-nutrition {
    margin-bottom: 28px;
}

.nutrition-title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.nutrition-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-glass-light);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.nutrition-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #32d583 0%, #2ecc71 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.nutrition-info {
    display: flex;
    flex-direction: column;
}

.nutrition-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.nutrition-label {
    font-size: var(--font-size-xs);
    color: var(--text-tertiary);
    font-weight: 500;
}

/* === INGREDIENTES === */
.product-ingredients {
    margin-bottom: 28px;
}

.ingredients-title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ingredient-tag {
    background: var(--bg-glass);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.ingredient-tag:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* === SIDEBAR DEL MODAL === */
.product-modal-sidebar {
    flex: 1;
    background: var(--bg-glass-strong);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-modal-sidebar::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.product-modal-sidebar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer y Edge */
}

.price-section {
    padding: 24px;
    background: var(--bg-glass);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-promo-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.original-price,
.final-price,
.price-normal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.price-value {
    font-family: var(--font-display);
    font-weight: 700;
}

.price-value.original {
    color: var(--text-tertiary);
    text-decoration: line-through;
    font-size: var(--font-size-base);
}

.price-value.final,
.price-value.normal {
    color: var(--primary-gold);
    font-size: var(--font-size-xl);
}

.savings-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.availability-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.availability-item i {
    color: #27ae60;
    font-size: 14px;
    width: 16px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.btn-order-now {
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-order-now {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-order-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 100%);
}

/* === RESPONSIVE MODAL === */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .product-modal-content {
        flex-direction: column;
    }
    
    .product-main-info {
        padding: 20px;
        max-height: none;
        overflow-y: visible;
    }
    
    .product-modal-sidebar {
        border-left: none;
        border-top: 1px solid rgba(107, 155, 179, 0.2);
        padding: 20px;
        overflow-y: visible;
    }
    
    .product-modal-hero {
        height: 250px;
    }
    
    .product-modal-title {
        font-size: var(--font-size-xl);
    }
    
    .nutrition-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .btn-order-now {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-modal-header {
        padding: 16px 20px;
    }
    
    .modal-header-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .product-modal-hero {
        height: 200px;
    }
    
    .product-main-info,
    .product-modal-sidebar {
        padding: 16px;
    }
    
    .product-modal-title {
        font-size: var(--font-size-lg);
    }
    
    .product-badges {
        justify-content: flex-start;
    }
    
    .btn-order-now {
        width: 100%;
    }
}

/* === MODAL DE IMAGEN AMPLIADA === */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal.show {
    opacity: 1;
    visibility: visible;
}

.image-modal-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--bg-glass-strong);
    backdrop-filter: var(--blur-strong);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-modal.show .image-modal-content {
    transform: scale(1);
}

.image-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 20001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    transform: scale(1.1) rotate(90deg);
}

.image-modal-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: calc(90vh - 120px);
    object-fit: contain;
    display: block;
}

.image-modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.image-modal-info h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

/* Responsive para modal de imagen */
@media (max-width: 768px) {
    .image-modal {
        padding: 10px;
    }
    
    .image-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .image-modal-img {
        max-height: calc(95vh - 80px);
    }
    
    .image-modal-info {
        padding: 30px 15px 15px;
    }
    
    .image-modal-info h3 {
        font-size: var(--font-size-base);
    }
}