/* ==========================================================================
   Marji V12 — products section refinements
   1. Show prev / next cards (Swiper slidesPerView lowered to ~1.35 in v2.js)
   2. Enlarge the active product card with two truly-equal columns
   3. Keep Sizing Guide on the same line as the Capacity chips
   ========================================================================== */

/* Enlarged active card */
.product-card-v3 {
  grid-template-columns: 1fr 1fr !important;     /* two perfectly equal columns */
  gap: 40px !important;
  padding: 48px !important;
  min-height: 560px !important;
}

/* Equal-column behaviour */
.product-card-v3 .pv3-info {
  padding-right: 0 !important;
  border-right: none !important;
  display: flex !important;
  flex-direction: column;
}
.product-card-v3 .pv3-media {
  padding: 0 !important;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-v3 .pv3-media > img {
  width: 100% !important;
  height: 100% !important;
  max-height: 460px;
  object-fit: contain;
}

/* Slightly larger typography to match the larger card */
.product-card-v3 .pv3-title {
  font-size: 28px !important;
  margin-bottom: 14px;
}
.product-card-v3 .pv3-desc {
  font-size: 14px;
  margin-bottom: 22px;
}

/* Capacity row — keep everything on a single line, no wrapping */
.product-card-v3 .pv3-capacity {
  flex-wrap: nowrap !important;
  white-space: nowrap;
  gap: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.product-card-v3 .pv3-capacity .lbl {
  flex-shrink: 0;
}
.product-card-v3 .pv3-capacity .pv3-chip {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 13px;
}
.product-card-v3 .pv3-capacity .pv3-sizing {
  flex-shrink: 0;
  margin-inline-start: 8px;
}

/* Arrows: bump them outward to sit on the new (larger) card edges.
   Active card is now ~74% of viewport at 1200+, so each card edge is
   roughly 50% ± 37% of viewport. We position arrows just inside that. */
.products-slider .swiper-button-prev,
.products-slider .swiper-button-next {
  width: 56px !important;
  height: 56px !important;
}
.products-slider .swiper-button-prev { left: calc(50% - 36vw) !important; }
.products-slider .swiper-button-next { right: calc(50% - 36vw) !important; }

@media (max-width: 1199px) {
  .products-slider .swiper-button-prev { left: calc(50% - 39vw) !important; }
  .products-slider .swiper-button-next { right: calc(50% - 39vw) !important; }
  .product-card-v3 { padding: 32px !important; gap: 24px !important; min-height: 460px !important; }
  .product-card-v3 .pv3-title { font-size: 24px !important; }
}
@media (max-width: 991px) {
  .products-slider .swiper-button-prev { left: 8px !important; }
  .products-slider .swiper-button-next { right: 8px !important; }
  .product-card-v3 .pv3-capacity { flex-wrap: wrap !important; white-space: normal; }
}
/* BUY NOW button — slightly larger than ADD TO CART */
.product-card-v3 .pv3-actions .btn-buy {
  padding: 18px 26px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: .6px;
  flex: 1.2;
}
.product-card-v3 .pv3-actions .btn-buy i {
  font-size: 14px;
}

@media (max-width: 767px) {
  .product-card-v3 {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    padding: 20px !important;
  }
  .product-card-v3 .pv3-media { aspect-ratio: 4/3; }
  .product-card-v3 .pv3-title { font-size: 20px !important; }
}
