/* Module de vérification du stock - Styles CSS */

.stock-alert-container {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 10px;
    margin: 20px 0;
    padding: 0;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: slideInDown 0.5s ease-out;
}

.stock-alert-header {
    background: #ffc107;
    color: #856404;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stock-alert-header i {
    font-size: 18px;
}

.stock-alert-content {
    padding: 20px;
}

.stock-alert-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.stock-alert-item:last-child {
    margin-bottom: 0;
}

.alert-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #856404;
    font-size: 16px;
}

.alert-message {
    flex: 1;
    color: #856404;
    line-height: 1.5;
    font-size: 14px;
}

.alert-message strong {
    color: #6c5ce7;
    font-weight: 600;
}

.stock-alert-footer {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    border-top: 1px solid rgba(255, 193, 7, 0.3);
}

.stock-alert-footer p {
    margin: 0;
    color: #856404;
    font-size: 13px;
}

.stock-alert-footer a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.stock-alert-footer a:hover {
    color: #5f3dc4;
    text-decoration: underline;
}

/* Animation */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stock-alert-container {
        margin: 15px 0;
    }
    
    .stock-alert-header {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .stock-alert-content {
        padding: 15px;
    }
    
    .stock-alert-item {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    
    .alert-icon {
        align-self: flex-start;
    }
    
    .alert-message {
        font-size: 13px;
    }
    
    .stock-alert-footer {
        padding: 12px 15px;
    }
    
    .stock-alert-footer p {
        font-size: 12px;
    }
}

/* Intégration avec le thème PrestaShop */
#cart .stock-alert-container,
.checkout-step .stock-alert-container {
    margin: 15px 0;
}

/* Style pour les pages de checkout */
.checkout-step .stock-alert-container {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-color: #ffc107;
}

.checkout-step .stock-alert-header {
    background: #ffc107;
    color: #856404;
}
