/* Estilos para el popup de productos - Diseño igual al de adiciones */

/* Botón de información del producto */
.product-description-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
}

.product-description-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-description-btn i {
    color: #FAD3DB;
    font-size: 16px;
    font-weight: bold;
}

/* Contenedor de imagen del producto */
.combo-imagen {
    position: relative;
}

/* ===== POPUP PRINCIPAL ===== */
.product-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-popup.active {
    display: flex;
}

/* Overlay del popup */
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

/* Contenido principal del popup */
.popup-content {
    position: relative;
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    max-height: 95vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Header del popup - Light pink background */
.popup-header {
    background-color: #fad3db; /* Light pink background */
    padding: 20px;
    border-bottom: 2px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.popup-close-btn {
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #f8f9fa;
}

.close-icon {
    font-size: 1.2rem;
    color: #FAD3DB;
    font-weight: bold;
}

/* Contenido del popup - White background */
.popup-body {
    background: #fff;
    padding: 25px 0 25px 0;
}

/* Imagen del producto en el popup */
.popup-product-image {
    margin-bottom: 20px;
    overflow: hidden;
}

.popup-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 420px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    background: #f8f9fa;
}

.popup-description {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding: 0 20px;
}

/* Footer del popup - Bright yellow background */
.popup-footer {
    background-color: #F9CB38; /* Bright yellow background */
    padding: 20px;
    border-top: 2px solid #000;
}

.popup-add-btn {
    width: 100%;
    background: transparent;
    border: none;
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.popup-add-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    color: #000;
    text-decoration: none;
}

.popup-add-btn:active {
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive design para el popup */
@media (max-width: 768px) {
    .popup-content {
        max-width: 90%;
        max-height: 90vh;
    }
    
    .popup-image {
        min-height: 220px;
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    .popup-content {
        width: 95%;
        margin: 20px;
        max-width: 95%;
    }
    
    .popup-header {
        padding: 15px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-close-btn {
        width: 30px;
        height: 30px;
    }
    
    .close-icon {
        font-size: 1rem;
    }
    
    .popup-body {
        padding: 20px 0;
    }
    
    .popup-product-image {
        margin-bottom: 15px;
    }
    
    .popup-image {
        min-height: 180px;
        max-height: 280px;
    }
    
    .popup-description {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .popup-footer {
        padding: 15px;
    }
    
    .popup-add-btn {
        font-size: 1.1rem;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .popup-image {
        min-height: 160px;
        max-height: 250px;
    }
}
/*# sourceMappingURL=product-popup.css.map */