/* Estilos principales de Coquicool */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

/* Notificaciones */
.notification {
    position: fixed !important;
    bottom: 20px !important;
    left: 50% !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    color: white !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    z-index: 9999 !important;
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
    transition: all 0.3s ease-in-out !important;
    max-width: 280px !important;
    min-width: 200px !important;
    width: auto !important;
    height: auto !important;
    max-height: 50px !important;
    animation: slideIn 0.3s ease-out !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    box-sizing: border-box !important;
}

.notification.fade-out {
    opacity: 0;
    transform: translateX(100%);
}

.notification.success {
    background-color: #4CAF50; /* Verde */
    border-left: 4px solid #388E3C;
}

.notification.error {
    background-color: #F44336; /* Rojo */
    border-left: 4px solid #D32F2F;
}

.notification.warning {
    background-color: #FFC107; /* Amarillo */
    color: #212121;
    border-left: 4px solid #FFA000;
}

.notification.info {
    background-color: #2196F3; /* Azul */
    border-left: 4px solid #1976D2;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Estilos para el cargador */
.cart-loading {
    opacity: 0.7;
    position: relative;
}

.cart-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Estilos para precios escalonados en productos */
.product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.base-price-label {
    font-size: 11px;
    color: #666;
    margin-left: 3px;
    font-style: italic;
}

.view-prices-btn {
    background: linear-gradient(135deg, #6f42c1, #8a5fc7);
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.view-prices-btn:hover {
    background: linear-gradient(135deg, #5a2d9f, #7048b3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.view-prices-btn:active {
    transform: translateY(0);
}

/* Agrega más estilos según sea necesario */
