/* Deals Page Specific Styles */
.deal-filters {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.deal-filter-btn {
    background: linear-gradient(180deg, #1f3041 0%, #111b25 100%);
    border: 1px solid #193a5d;
    color: #fff;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.deal-filter-btn:hover, 
.deal-filter-btn:focus {
    background: linear-gradient(180deg, #253a4e 0%, #172330 100%);
    border-color: #1f4c7a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.deal-filter-btn.active {
    background: linear-gradient(180deg, #66c0f4 0%, #3b6d99 100%);
    border-color: #66c0f4;
    box-shadow: 0 0 10px rgba(102, 192, 244, 0.3);
    color: #fff;
    font-weight: 600;
}

.results-count {
    font-size: 0.9rem;
    color: #8f98a0;
    padding: 0.5rem 0;
}

/* Product cards in deals view */
#deals-container .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#deals-container .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.discount-badge {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0.25rem 0.5rem;
    font-weight: bold;
    border-radius: 4px 0 0 0;
}

.discount-pct {
    color: mediumaquamarine;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .deal-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .deal-filter-btn {
        width: 100%;
        text-align: center;
    }
}

/* No results message */
.no-results-message {
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* Animation for filter changes */
.animate__animated.animate__fadeIn {
    animation-duration: 0.5s;
} 