/* WRAPPER */
.bcp-wrapper{
    margin:20px 0;
}

/* =============================
   GRID MODE
============================= */
.bcp-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
}

@media(max-width:980px){
    .bcp-grid{ grid-template-columns:repeat(3,1fr); }
}
@media(max-width:600px){
    .bcp-grid{ grid-template-columns:repeat(2,1fr); }
}

/* =============================
   SLIDER MODE
============================= */
.bcp-slider{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
}

.bcp-slider::-webkit-scrollbar{
    display:none;
}

.bcp-slider .bcp-card{
    min-width:180px;
    scroll-snap-align:start;
}

/* =============================
   CARD STYLE (Shopee look)
============================= */
.bcp-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid #eee;
    border-radius:6px;
    overflow:hidden;
    text-decoration:none !important;
    color:#000 !important;
    transition:.15s;
}

.bcp-card:hover{
    transform:translateY(-2px);
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

/* IMAGE */
.bcp-img{
    position:relative;
    padding-top:100%;
    background:#f5f5f5;
}

.bcp-img img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* BODY */
.bcp-body{
    padding:8px;
    display:flex;
    flex-direction:column;
}

/* TITLE (anti naik turun) */
.bcp-title{
    font-size:13px;
    line-height:1.3;
    height:2.6em;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    margin-bottom:6px;
    color:#000 !important;
}

/* BUTTON */
.bcp-btn{
    margin-top:auto;
    background:#ee4d2d;
    color:#fff;
    text-align:center;
    padding:6px 0;
    border-radius:4px;
    font-size:14px;
}
