/* Woo Products Slider — frontend */
.wps-slider{
  --wps-brand:#2563eb;
  --wps-ink:#1f2937;
  --wps-muted:#6b7280;
  --wps-line:#e5e7eb;
  max-width:1200px;margin:0 auto;
}

/* ---- Category filter (icon on top, centered) ---- */
.wps-filter-wrap{
  display:flex;align-items:center;gap:6px;margin:0 0 32px;position:relative;
}
.wps-filter{
  display:flex;gap:14px;flex-wrap:wrap;justify-content:center;flex:1;
}
/* arrows: hidden on desktop (filters wrap & center) */
.wps-fnav{
  display:none;flex:0 0 auto;width:38px;height:38px;border-radius:50%;
  border:1px solid var(--wps-line);background:#fff;color:var(--wps-brand);
  font-size:22px;line-height:1;cursor:pointer;align-items:center;justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,.08);transition:.15s;
}
.wps-fnav:hover{background:var(--wps-brand);color:#fff;}
.wps-fnav[disabled]{opacity:.35;cursor:default;}
.wps-fbtn{
  display:inline-flex;flex-direction:column;align-items:center;gap:10px;
  border:1px solid var(--wps-line);background:#fff;color:var(--wps-ink);
  padding:18px 28px;border-radius:18px;font-size:17px;font-weight:600;
  cursor:pointer;transition:.18s;min-width:124px;line-height:1.2;
}
.wps-fbtn:hover{border-color:var(--wps-brand);}
.wps-fbtn.active{background:var(--wps-brand);border-color:var(--wps-brand);color:#fff;}
.wps-fbtn .wps-ico{
  width:56px;height:56px;font-size:48px;line-height:1;
  display:inline-flex;align-items:center;justify-content:center;
}
.wps-fbtn .wps-ico img{width:100%;height:100%;object-fit:contain;}

/* ---- Slider ---- */
.wps-shell{position:relative;}
.wps-swiper{padding:6px 4px 44px;}
.wps-slider[data-dots="0"] .wps-swiper{padding-bottom:10px;}
.wps-card{
  background:#fff;border:1px solid var(--wps-line);border-radius:14px;
  overflow:hidden;display:flex;flex-direction:column;height:100%;transition:.18s;
}
.wps-card:hover{box-shadow:0 8px 24px rgba(0,0,0,.08);transform:translateY(-3px);}
.wps-thumb{position:relative;aspect-ratio:1/1;background:#f3f4f6;overflow:hidden;}
.wps-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.wps-badge{position:absolute;top:10px;left:10px;background:#ef4444;color:#fff;
  font-size:11px;font-weight:700;padding:3px 9px;border-radius:6px;z-index:2;}
.wps-body{padding:14px 16px 18px;display:flex;flex-direction:column;gap:8px;flex:1;}
.wps-title{font-size:15px;font-weight:600;line-height:1.3;color:var(--wps-ink);text-decoration:none;}
.wps-title:hover{color:var(--wps-brand);}
.wps-desc{font-size:13px;color:var(--wps-muted);line-height:1.4;}
.wps-price{font-size:16px;font-weight:700;color:var(--wps-brand);margin-top:auto;}
.wps-price del{color:var(--wps-muted);font-weight:500;font-size:13px;margin-right:6px;}
.wps-cart .button{display:block;width:100%;text-align:center;margin-top:6px;}

/* Swiper nav */
.wps-shell .swiper-button-next,
.wps-shell .swiper-button-prev{
  color:var(--wps-brand);background:#fff;width:42px;height:42px;border-radius:50%;
  box-shadow:0 4px 14px rgba(0,0,0,.12);
}
.wps-shell .swiper-button-next:after,
.wps-shell .swiper-button-prev:after{font-size:16px;font-weight:800;}
.wps-shell .swiper-pagination-bullet-active{background:var(--wps-brand);}

.wps-empty{display:none;text-align:center;padding:50px;color:var(--wps-muted);}

/* ---- Mobile: filters become a horizontal scroller (~3 visible) ---- */
@media (max-width:768px){
  .wps-fnav{display:inline-flex;}
  .wps-filter{
    flex-wrap:nowrap;justify-content:flex-start;
    gap:10px;overflow-x:auto;scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;
  }
  .wps-filter::-webkit-scrollbar{display:none;}      /* Chrome/Safari */
  .wps-filter{scrollbar-width:none;-ms-overflow-style:none;} /* Firefox/IE */
  .wps-fbtn{
    flex:0 0 calc((100% - 10px) / 2);  /* exactly 2 fit (1 gap of 10px) */
    min-width:0;padding:14px 10px;font-size:14px;gap:8px;border-radius:14px;
    scroll-snap-align:start;
  }
  .wps-fbtn .wps-ico{width:44px;height:44px;font-size:38px;}
  .wps-fbtn .wps-flabel{
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;
  }
}
