
.wdm-brand-products{margin:24px 0; direction:rtl;}
.wdm-brand-products-title{margin:0 0 16px;font-size:20px;line-height:1.4;font-weight:700;}

.wdm-brand-products{--wdm-space:24px;--wdm-per-view:5;--wdm-per-view-tablet:3;--wdm-per-view-mobile:2;}
@media (max-width:1023px){ .wdm-brand-products{--wdm-per-view:var(--wdm-per-view-tablet);} }
@media (max-width:767px){ .wdm-brand-products{--wdm-per-view:var(--wdm-per-view-mobile);} }

.wdm-slider{position:relative}
.wdm-track{
  display:flex !important;
  flex-wrap:nowrap !important;
  gap:var(--wdm-space) !important;
  justify-content:flex-start !important;
  align-items:stretch !important;
  overflow-x:auto !important;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding-bottom:10px;
}
.wdm-item{
  flex:0 0 auto !important;
  width: calc((100% - ( (var(--wdm-per-view) - 1) * var(--wdm-space) )) / var(--wdm-per-view)) !important;
  scroll-snap-align:start;
}

.wdm-nav{
  position:absolute;top:45%;transform:translateY(-50%);
  width:38px;height:38px;border-radius:999px;
  background:rgba(0,0,0,.35);
  border:none;cursor:pointer;z-index:5;
}
.wdm-nav:hover{background:rgba(0,0,0,.5)}
.wdm-prev{left:-8px}
.wdm-next{right:-8px}
.wdm-nav::after{
  content:'';position:absolute;top:50%;left:50%;width:10px;height:10px;
  border-top:2px solid #fff;border-right:2px solid #fff;
  transform:translate(-50%,-50%) rotate(45deg);
}
.wdm-prev::after{transform:translate(-50%,-50%) rotate(-135deg)}

.wdm-grid{
  display:grid;
  gap:var(--wdm-space);
  grid-template-columns: repeat(var(--wdm-per-view), minmax(0, 1fr));
}
@media (max-width:1023px){ .wdm-grid{grid-template-columns: repeat(var(--wdm-per-view-tablet), minmax(0, 1fr));} }
@media (max-width:767px){ .wdm-grid{grid-template-columns: repeat(var(--wdm-per-view-mobile), minmax(0, 1fr));} }

/* Woodmart-like card */
.wdm-card{
  height:100%;
  background: var(--wd-box-bg, #fff);
  border: 1px solid var(--wd-border-color, rgba(0,0,0,.06));
  border-radius: var(--wd-brd-radius, 12px);
  overflow:hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.wdm-card:hover{
  box-shadow: var(--wd-box-shadow, 0 10px 30px rgba(0,0,0,.08));
  transform: translateY(-2px);
}
.wdm-card-top{position:relative; padding:14px 14px 10px;}
.wdm-card-media{display:block; text-align:center}
.wdm-card-img{width:100%; height:auto; object-fit:contain}

.wdm-onsale{
  position:absolute;
  top:10px;
  inset-inline-start:10px;
  background: var(--wd-sale-badge-bg, #d3122a);
  color:#fff;
  font-weight:700;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  line-height:1;
  z-index:2;
}

.wdm-card-body{padding:0 14px 14px; display:flex; flex-direction:column; gap:8px;}
.wdm-card-title-wrap{margin:0}
.wdm-card-title{
  color:inherit; text-decoration:none;
  font-size:14px; line-height:1.6; font-weight:500;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  min-height:3.2em;
}
.wdm-card-rating .star-rating{float:none; margin:0}
.wdm-card-price.price{margin:0; font-weight:700}
.wdm-card-atc a.button, .wdm-card-atc button.button{
  width:100%;
  border-radius: var(--wd-brd-radius, 999px);
  padding: 10px 14px;
  font-weight:600;
}
