body{
    background:#f1f5f9;
    font-family:Arial;
}

/* SECTION */
.best-seller-section{
    padding:40px 0;

    background:
        url('https://www.transparenttextures.com/patterns/arabesque.png'),
        #f8f3ea; /* tera same color */
}

/* HEADER */
.bs-header{
    width:92%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.bs-header h2{
    font-size:24px;
}

.bs-header p{
    font-size:13px;
    color:#666;
}

/* VIEW ALL */
.view-all{
    background:green;
    color:#fff;
    padding:8px 18px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
}

.view-all:hover{
    background:#C8A951;
}

/* SLIDER */
.bs-slider{
    position:relative;
    width:92%;
    margin:auto;
    overflow:hidden;
}

/* TRACK */
.bs-track{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

/* HIDE SCROLLBAR */
.bs-track::-webkit-scrollbar{
    display:none;
}

/* CARD */
.bs-card{
    min-width:260px;
    max-width:260px;
    background:#fff;
    border-radius:10px;
    padding:15px;
    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* IMAGE */
.bs-card img{
    width:100%;
    height:180px;
    object-fit:contain;
}

/* TAG */
.tag{
    position:absolute;
    top:10px;
    left:10px;
    padding:4px 8px;
    font-size:10px;
    border-radius:4px;
    color:#fff;
}

.tag.red{ background:#ff5b6f; }
.tag.green{ background:#82c341; }

/* CONTENT */
.bs-content{
    flex:1;
}

/* TITLE */
.bs-card h4{
    font-size:14px;
    margin:10px 0 5px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* DESC */
.desc{
    font-size:12px;
    color:#666;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* RATING */
.rating{
    font-size:13px;
    margin:5px 0;
}

/* PRICE */
.price{
    margin:10px 0;
    font-weight:600;
}

.price span{
    text-decoration:line-through;
    color:#888;
    margin-left:5px;
}

.price small{
    color:green;
    margin-left:5px;
}

/* BUTTON */
.bs-card button{
    width:100%;
    padding:10px;
    background:linear-gradient(45deg,#C8A951,#f5d06f);
    color:black;
    border:none;
    border-radius:6px;
    margin-top:auto;
}

/* ARROWS */
.bs-prev, .bs-next{
    position:absolute;
    top:45%;
    background:#fff;
    border:none;
    font-size:22px;
    cursor:pointer;
    padding:8px 12px;
    z-index:10;
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
}

.bs-prev{ left:-10px; }
.bs-next{ right:-10px; }

.bs-title-btn{
    display:inline-block;
    background:linear-gradient(45deg,#C8A951,#f5d06f);
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-size:18px;
}

@media(max-width:768px){

    .bs-card{
        min-width:75%;
        max-width:75%;
        display:flex;
        flex-direction:column;
    }

    .bs-card img{
        height:140px;
        object-fit:contain;
    }

    /* SAME AS DESKTOP */
    .bs-content{
        flex:1;
        display:flex;
        flex-direction:column;
    }

    /* TITLE */
    .bs-card h4{
        font-size:14px;
        margin:8px 0 4px;
        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    /* DESCRIPTION */
    .desc{
        font-size:12px;
        color:#666;
        display:-webkit-box;
        -webkit-line-clamp:2; /* 👈 bas yahi control chahiye */
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    /* NORMAL FLOW (NO FORCE) */
    .rating{
        font-size:13px;
        margin-top:6px;
    }

    .price{
        margin:6px 0;
    }

    .bs-card button{
        margin-top:auto;
    }

    /* 🔥 ARROW FIX (IMPORTANT) */
    .bs-prev, .bs-next{
        top:35%;
    }

}