body{
    background:#fff6f9;
    font-family:Arial,sans-serif;
}

.search{
    display:flex;
    margin:12px 0;
    width:100%;
}

.search input{
    flex:1;
    padding:10px;
    border:none;
    outline:none;
    border-radius:5px 0 0 5px;
}

.search button{
    padding:10px 15px;
    border:none;
    background:#ffd700;
    cursor:pointer;
    border-radius:0 5px 5px 0;
}

/* ================= HERO ================= */
.hero{
    min-height:50vh;
    background:linear-gradient(rgba(87, 250, 101, 0.75),rgba(86, 83, 252, 0.6)),
    url("../images/bainar.jp.png") center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#f10c32;
    padding:40px 20px;
}

.hero-content h1{
    font-family:Georgia,'Times New Roman',serif;
    font-size:44px;
    margin-bottom:16px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:24px;
}

.hero-btn a{
    text-decoration:none;
    background:#34f10e;
    color:#111;
    padding:14px 36px;
    margin:10px;
    border-radius:50px;
    font-weight:bold;
    display:inline-block;
    transition:.3s;
}

.hero-btn a:hover{
    background:#6eec06;
}

/* ================= PRODUCTS ================= */
.rtl-picks{
    padding:50px 20px;
    background:#b5d8d6;
}

.rtl-picks h2{
    text-align:center;
    margin-bottom:35px;
    font-size:30px;
    color:#6b0f2b;
}

.products{
    display:flex;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
}

.card{
    position:relative;
    width:250px;
    background:#ec84b0;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card a{
    text-decoration:none;
    color:inherit;
}

.card img{
    width:100%;
    height:280px;
    object-fit:cover;
    cursor:pointer;
}

.card h3{
    margin:14px 15px 0;
    font-size:17px;
}

.wishlist{
    position:absolute;
    top:10px;
    right:10px;
    background:#f3f0f0;
    padding:8px;
    border-radius:50%;
    cursor:pointer;
    z-index:2;
}

.rating{
    color:#f39c12;
    margin:8px 15px;
    font-size:14px;
}

.price{
    margin:6px 15px;
}

.new-price{
    font-size:20px;
    font-weight:bold;
    color:#e0157a;
}

.old-price{
    text-decoration:line-through;
    color:gray;
    margin-left:8px;
    font-size:14px;
}

.discount{
    color:green;
    margin-left:8px;
    font-weight:bold;
    font-size:13px;
}

.buttons{
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:14px;
}

.cart-btn,
.buy-btn{
    width:100%;
    padding:11px;
    font-size:14px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

.cart-btn{
    background:#111;
    color:#fff;
}

.cart-btn:hover{
    background:#ffd700;
    color:#111;
}

.buy-btn{
    background:#e0157a;
    color:#fff;
}

.buy-btn:hover{
    background:#b80f61;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width:768px){

    .search input{
        width:100%;
    }

    .hero{
        min-height:35vh;
        padding:20px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-btn a{
        display:block;
        width:170px;
        margin:8px auto;
    }

    .products{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:15px;
        padding:15px;
    }

    .card{
        width:100%;
    }

    .card img{
        height:180px;
    }
}