.dl-weekly-offer-section {
    padding: 40px 20px;
    background: #fff7f0;
    text-align: center;
}

.dl-weekly-offer-section h2 {
    font-size: 28px;
    margin-bottom: 6px;
}

.dl-subheading {
    color: #666;
    margin-bottom: 30px;
}

.dl-weekly-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dl-offer-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform .3s;
}

.dl-offer-card:hover {
    transform: translateY(-6px);
}

.dl-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4d4d;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.dl-image-wrap img {
    width: 100%;
    border-radius: 12px;
}

.dl-product-title {
    font-size: 17px;
    margin: 12px 0;
}

.dl-price-box del {
    color: #999;
    display: block;
    font-size: 14px;
}

.dl-sale-price {
    color: #e60023;
    font-size: 20px;
    font-weight: bold;
}

.dl-condition {
    font-size: 12px;
    color: #777;
    margin: 10px 0;
}

.dl-deal-btn {
    display: block;
    background: #ff9800;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.dl-deal-btn:hover {
    background: #e68900;
    color: #fff;
}

@media (max-width: 768px) {
    .dl-weekly-offer-grid {
        grid-template-columns: 1fr;
    }
}
