/* ===== Deals Page Styles ===== */

/* Header */
.deals-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    padding: 6rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.deals-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#ffffff 2%, transparent 0%);
    background-size: 30px 30px;
    opacity: 0.1;
}

.deals-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.deals-header .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Flash Deals Section */
.deals-section {
    padding-bottom: 5rem;
}

.deal-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.deal-header {
    background: #FF324D;
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.deal-header .badge-discount {
    background: #fff;
    color: #FF324D;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 800;
}

.deal-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.deal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.deal-card:hover .deal-img {
    transform: scale(1.1);
}

.deal-body {
    padding: 1.5rem;
    text-align: center;
}

.deal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.deal-pricing {
    margin-bottom: 1rem;
}

.original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.sale-price {
    color: #FF324D;
    font-size: 1.75rem;
    font-weight: 800;
}

.save-amount {
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.grab-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(to right, #FF324D, #ff6b6b);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: block;
}

.grab-btn:hover {
    background: linear-gradient(to right, #d42037, #FF324D);
    transform: scale(1.02);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .deals-header h1 {
        font-size: 2.5rem;
    }
}
