/* =====================================================================
   OneChoice — Category Product Grid — auto-installed
   PC: 4 কলাম, Mobile: 2 কলাম; carousel-এর বদলে grid।
   ===================================================================== */
.product_grid_oc{
  display:grid!important;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  width:100%;
}
.product_grid_oc .product_item{
  width:auto!important;
  margin:0!important;
  float:none!important;
}
/* owl-carousel কোনো অবশিষ্ট স্টাইল নিউট্রালাইজ */
.product_grid_oc.owl-loaded,.product_grid_oc .owl-stage,.product_grid_oc .owl-item{
  all:unset;
}
/* "More" বাটন */
.oc-cat-more-wrap{width:100%;text-align:center;margin:18px 0 4px;}
.oc-cat-more{
  display:inline-block;
  background:#1d5b50;
  color:#fff!important;
  font-size:15px;font-weight:600;
  padding:11px 40px;
  border-radius:8px;
  text-decoration:none;
  transition:.2s;
}
.oc-cat-more:hover{background:#13988a;color:#fff!important;}

/* ট্যাবলেট: 3 কলাম */
@media (max-width:991px){
  .product_grid_oc{grid-template-columns:repeat(3,1fr);gap:12px;}
}
/* মোবাইল: 2 কলাম */
@media (max-width:767px){
  .product_grid_oc{grid-template-columns:repeat(2,1fr);gap:10px;}
  .oc-cat-more{padding:11px 30px;width:100%;}
}