/**
 * Estilos para el template de Combos para Llevar
 * Basado en el diseño de la captura
 */

/* Background - usar el color de página existente con green flowers repetidas verticalmente */
#combos-para-llevar-wrapper {
    background-color: #f5f5dc; /* Light beige background */
    min-height: 100vh;
    padding: 40px 0;
}

/* Primera sección (header) - fondo limpio */
.combo-header-section {
    background-color: #f5f5dc; /* Fondo limpio sin imagen */
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Contenido principal con imagen de fondo */
.combo-content-main {
    background-color: #f5f5dc;
    background-image: 
        linear-gradient(rgba(245, 245, 220, 0.8), rgba(245, 245, 220, 0.8)),
        url('../img/green-flowers.png');
    background-repeat: repeat-y;
    background-size: 300px 200px;
    background-position: center top;
    position: relative;
    padding: 40px 0;
}

.combo-image-placeholder {
    text-align: center;
    margin-bottom: 20px;
}

.combo-image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.combo-main-title {
    font-family: "Proxima Nova Extra Condensed", sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.combo-description {
    font-size: 1.2rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
}

.serving-size {
    font-weight: 600;
    color: #333;
}

/* Combo Sections */
.combo-section {
    margin-bottom: 60px;
}

.section-title {
    font-family: "Proxima Nova Extra Condensed", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selection-limit {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    font-style: italic;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Combo Option Cards - Diseño exacto como en la captura */
.combo-option-card {
    background: #fad3db; /* Light pink background for unselected */
    border: 1px solid #000;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 80px;
    padding: 15px 20px;
}

.combo-option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.combo-option-card.selected {
    background-color: #ffd700 !important; /* Bright yellow background for selected */
    border-color: #000;
    transform: none;
    box-shadow: none;
}

.combo-option-card .option-content {
    text-align: center;
}

.combo-option-card .option-title {
    font-family: "Proxima Nova", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.combo-option-card .option-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #007bff;
}

/* Summary Card */
.summary-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.summary-title {
    font-family: "Proxima Nova Extra Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-content {
    display: grid;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.summary-item strong {
    font-weight: 600;
    color: #333;
}

.summary-item span {
    color: #007bff;
    font-weight: 500;
}

/* Add to Cart Button */
.combo-actions {
    margin-top: 40px;
}

#add-combo-to-cart {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 300px;
}

#add-combo-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004085);
}

#add-combo-to-cart:active {
    transform: translateY(-1px);
}

#add-combo-to-cart:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
    max-width: 300px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Limit Tooltip */
.limit-tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #dc3545;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    z-index: 9999;
    animation: fadeInUp 0.3s ease-out;
    text-align: center;
    max-width: 250px;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        transform: translate(-50%, -50%) translateY(20px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .combo-main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    #add-combo-to-cart {
        min-width: 250px;
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .success-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .limit-tooltip {
        left: 20px;
        right: 20px;
        transform: translateY(-50%);
        max-width: none;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .combo-main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .combo-option-card {
        padding: 12px 15px;
        min-height: 70px;
    }
    
    .combo-option-card .option-title {
        font-size: 1rem;
    }
    
    .combo-option-card .option-price {
        font-size: 1rem;
    }
}

/* Animation for option selection */
.combo-option-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for cards */
.combo-option-card:nth-child(1) { animation-delay: 0.1s; }
.combo-option-card:nth-child(2) { animation-delay: 0.2s; }
.combo-option-card:nth-child(3) { animation-delay: 0.3s; }
.combo-option-card:nth-child(4) { animation-delay: 0.4s; }
.combo-option-card:nth-child(5) { animation-delay: 0.5s; }
.combo-option-card:nth-child(6) { animation-delay: 0.6s; }

/* Focus states for accessibility */
.combo-option-card:focus {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

#add-combo-to-cart:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Loading state for button */
#add-combo-to-cart.loading {
    position: relative;
    color: transparent;
}

#add-combo-to-cart.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/*# sourceMappingURL=combos-para-llevar.css.map */