/*
 * AK Woo Carousels – compact Kadence-friendly styles
 * Version: 1.0.10
 */

:root{
  --akwc-radius:14px;
  --akwc-gap:10px;
  --akwc-img-h:160px;
  --akwc-cat-size:72px;
}

@media (min-width: 769px){
  :root{--akwc-img-h:200px;--akwc-cat-size:84px;}
}

@media (min-width: 1024px){
  :root{--akwc-img-h:240px;--akwc-cat-size:92px;}
}

.akwc-carousel-wrapper{margin:18px 0;}
.akwc-carousel-header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:0 2px 10px;}
.akwc-carousel-title{margin:0;font-size:18px;line-height:1.2;}
.akwc-carousel-view-all{font-size:14px;text-decoration:none;white-space:nowrap;}

.akwc-carousel.swiper{position:relative;padding:2px 0 10px;}
.akwc-carousel .swiper-wrapper{align-items:stretch;}
.akwc-carousel .swiper-slide{height:auto;display:flex;}

.akwc-swiper-button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:32px;
  height:32px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.12);
  z-index:10;
  cursor:pointer;
}
.akwc-swiper-button-prev{left:6px;}
.akwc-swiper-button-next{right:6px;}
.akwc-swiper-button:after{display:none;}

@media (max-width: 768px){
  .akwc-swiper-button{display:none;}
}

/* Product cards */
.akwc-product-slide .akwc-product-inner{
  width:100%;
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:var(--akwc-radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
}

.akwc-product-image-link{
  display:block;
  width:100%;
  height:var(--akwc-img-h);
  position:relative;
  overflow:hidden;
}
.akwc-product-image-link img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Desktop: show full product image (no crop / no cut off) */
@media (min-width: 769px){
  .akwc-product-image-link{background:#f3f4f6;}
  .akwc-product-image-link img{object-fit:contain !important;}
}

.akwc-sale-badge{
  position:absolute;
  top:8px;
  left:8px;
  font-size:12px;
  padding:4px 7px;
  border-radius:999px;
  background:#e11d48;
  color:#fff;
  z-index:2;
}

.akwc-product-content{
  padding:10px 10px 12px;
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
  min-height:0;
}

.akwc-product-title{
  margin:0;
  font-size:14px;
  line-height:1.25;
  font-weight:600;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  word-break:break-word;
}
.akwc-product-title a{text-decoration:none;}

.akwc-product-price{font-size:14px;line-height:1.2;margin:0;}
.akwc-product-rating{min-height:18px;}
.akwc-product-add-to-cart{margin-top:auto;display:flex;justify-content:center;}
.akwc-product-add-to-cart .button{
  width:100%;
  text-align:center;
  border-radius:12px;
  padding:.55em .8em;
  display:flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Categories */
.akwc-category-slide .akwc-category-inner{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
  gap:8px;
}
.akwc-category-image-rounded{
  width:var(--akwc-cat-size);
  height:var(--akwc-cat-size);
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.07);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.akwc-category-image-rounded img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.akwc-category-title{
  margin:0;
  font-size:13px;
  line-height:1.25;
  text-align:center;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  word-break:break-word;
}

/* Brands */
.akwc-brand-slide .akwc-brand-inner{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
  gap:8px;
}
.akwc-brand-image-rect{
  width:100%;
  max-width:var(--akwc-cat-size);
  aspect-ratio: 4 / 3;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.07);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.akwc-brand-image-rect img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.akwc-brand-title{
  margin:0;
  font-size:13px;
  line-height:1.25;
  text-align:center;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  word-break:break-word;
}

/* Mobile tighter */
@media (max-width: 480px){
  :root{--akwc-img-h:145px;--akwc-cat-size:70px;}
  .akwc-product-content{padding:9px 9px 10px;gap:5px;}
  /* Mobile: allow up to 3 lines for long titles */
  .akwc-product-title{font-size:13px;-webkit-line-clamp:3;line-height:1.28;}
  .akwc-product-price{font-size:13px;}
  /* Mobile: compact single-line add-to-cart */
  .akwc-product-add-to-cart .button{
    height:44px;
    padding:0 10px !important;
    font-size:13px !important;
    line-height:1 !important;
    white-space:nowrap !important;
  }
}
