/**
 * Estilos para el frontend del plugin
 */

/* Banner promocional */
.hendale-promo-banner {
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

/* Notificaciones en la página de producto */
.hendale-price-notifications {
    margin: 10px 0 20px;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

.hendale-combo-notification,
.hendale-wholesale-notification,
.hendale-quantity-notification {
    margin-bottom: 8px;
    padding: 10px 12px;
    background-color: #f8f9fa;
    border-left: 3px solid #4e8df5;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-radius: 3px;
}

.hendale-quantity-notification {
    border-left-color: #28a745;
    background-color: #f8fff8;
}

.hendale-wholesale-notification {
    border-left-color: #ffc107;
    background-color: #fffcf5;
}

/* Iconos para notificaciones */
.hendale-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
}

/* Mensajes de WooCommerce en el carrito */
.woocommerce-message {
    position: relative;
}

/* Mensaje de promoción aplicada en el checkout */
.hendale-promotion-applied {
    background-color: #f0f9e6;
    border: 1px solid #c5e6a1;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hendale-promotion-applied h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2e7d32;
    font-size: 16px;
}

.hendale-promotion-applied p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Notificaciones en el carrito */
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    padding: 12px 15px 12px 45px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
    background-color: #f8f9fa !important;
    border-top: none !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}

.woocommerce-info {
    border-left: 3px solid #4e8df5 !important;
}

.woocommerce-message {
    border-left: 3px solid #28a745 !important;
}

.woocommerce-error {
    border-left: 3px solid #dc3545 !important;
}

.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
    top: 12px !important;
}

.woocommerce-info ul,
.woocommerce-message ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
}

/* Destacar precios promocionales */
.price ins {
    text-decoration: none !important;
    color: #28a745 !important;
    font-weight: bold !important;
}

/* Badged promocionales para productos */
.hendale-promotion-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #4e8df5;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0 0 0 4px;
    z-index: 10;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hendale-combo-notification,
    .hendale-wholesale-notification,
    .hendale-quantity-notification {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hendale-icon {
        margin-bottom: 5px;
    }
}