/**
 * Product Grid States
 * Loading, empty et filtres actifs
 */

.product-grid__loading {
    text-align: center;
    padding: 60px 20px;
}

.product-grid__spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #E5E5E5;
    border-top-color: #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.product-grid__loading-text {
    font-size: 16px;
    color: #666666;
}

.product-grid__empty {
    text-align: center;
    padding: 80px 20px;
}

.product-grid__empty-icon {
    font-size: 64px;
    color: #E5E5E5;
    margin-bottom: 20px;
}

.product-grid__empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.product-grid__empty-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
}

.product-grid__empty-button {
    display: inline-block;
    padding: 14px 32px;
    background: #000000;
    color: #D4AF37;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-grid__empty-button:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
