body{
    background:#fff6f9;
    font-family:Arial,sans-serif;
}

.offers-banner{
    text-align:center;
    padding:40px 20px;
    background:linear-gradient(180deg,#fff0f6,#ffe0ec);
}

.offers-banner h1{
    font-family:Georgia,'Times New Roman',serif;
    font-size:36px;
    color:#6b0f2b;
    margin-bottom:10px;
}

.offers-banner p{
    color:#555;
    font-size:16px;
}

.offers-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:50px 8%;
}

.offer-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    text-align:center;
    padding-bottom:18px;
}

.offer-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.offer-card h3{
    margin:14px 0 6px;
    font-size:18px;
}

.offer-card .price{
    margin-bottom:4px;
}

.offer-card .new-price{
    font-size:19px;
    font-weight:bold;
    color:#e0157a;
}

.offer-card .old-price{
    text-decoration:line-through;
    color:gray;
    font-size:14px;
    margin-left:6px;
}

.offer-card .discount{
    color:green;
    font-weight:bold;
    font-size:13px;
    margin-bottom:12px;
}

.offer-card .shop-btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 24px;
    background:#e0157a;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
}

.offer-card .shop-btn:hover{
    background:#b80f61;
}

@media(max-width:768px){
    .offers-grid{
        grid-template-columns:1fr 1fr;
        padding:25px 15px;
        gap:15px;
    }
    .offer-card img{
        height:180px;
    }
}