/* Gritzo Product Recommendations — Slider Layout */

.gritzo-product-recommendations {
  background-color: #F4F5F9;
  margin-top: 24px;
  width: 100%;
  padding: 24px 16px;
  font-family: inherit;
}

.gritzo-product-rec-inner {
  max-width: 1140px;
  padding: 0 16px;
}

.gritzo-product-rec-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  font-style: normal;
  line-height: normal;
  margin: 0 0 20px;
}

/* ── Slider wrapper ── */
.gritzo-slider-outer {
  position: relative;
}

.gritzo-product-rec-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.gritzo-product-rec-grid::-webkit-scrollbar {
  display: none;
}

/* Loading / error states */
.gritzo-product-loading,
.gritzo-product-error {
  flex: 0 0 100%;
  text-align: center;
  padding: 48px;
  color: #aaa;
  font-size: 14px;
}

.gritzo-product-error {
  background: #fff3f3;
  color: #c0392b;
  border: 1px solid #f5c6c6;
  border-radius: 8px;
  padding: 16px 20px;
}

/* ── Arrow buttons ── */
.gritzo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.15s, box-shadow 0.15s;
  padding: 0;
}

.gritzo-arrow:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.gritzo-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #333;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gritzo-arrow-prev { left: -18px; }
.gritzo-arrow-next { right: -18px; }
.gritzo-arrow[disabled] { opacity: 0.35; pointer-events: none; }

/* ── Product Card ── */
.gritzo-product-card {
  flex: 0 0 calc(50% - 8px);
  min-width: 0;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;

  /* merged duplicate */
  padding: 16px;
  gap: 16px;
}

.gritzo-product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

/* Image */
.gritzo-product-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.gritzo-product-img-wrap img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Info */
.gritzo-product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.gritzo-product-info-top {
  display: flex;
  flex-direction: column;
}

.gritzo-product-info-wrap {
  display: flex;
  flex-direction: column;
  gap:4px;
}

.gritzo-product-info-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

/* Text */
.gritzo-product-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 20px;
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gritzo-product-variant {
  font-size: 12px;
  color: #646464;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

/* ── Gender / Age Badge ── */
.gritzo-product-age-badge {
  margin-top: 8px;
}

.gritzo-product-age {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  border-radius: 8px;
  padding: 4px 8px 4px 4px;
  white-space: nowrap;
}

/* Boy — navy blue tint */
.gritzo-product-age.gz-boy {
  background: #E9EAF2;
  color: #333;
}

/* Girl — soft pink */
.gritzo-product-age.gz-girl {
  background: #E9EAF2;
  color: #333;
}

/* Boy/Girl — neutral grey */
.gritzo-product-age.gz-both {
  background: #E9EAF2;
  color: #333;
}

/* Icon image inside badge */
.gritzo-gender-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

/* Price row */
.gritzo-product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gritzo-product-price {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.gritzo-product-mrp {
  font-size: 14px;
  color: #ACACAC;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  text-decoration: line-through;
}

.gritzo-product-discount {
  font-size: 14px;
  font-weight: 500;
  color: #039855;
}

/* Button */
.gritzo-product-btn {
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  border-radius: 40px;
  padding: 10px 16px;
  text-decoration: none !important;
  background: #272B60;
  color: #fff !important;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.gritzo-product-btn:hover {
  background: #333 !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* ── Responsive ── */
@media (min-width: 1024px) {
  .gritzo-product-recommendations {
    margin-top: 60px;
    padding: 60px 0;
  }

  .gritzo-product-card {
    flex: 0 0 calc(20% - 10px);
  }
}

@media (max-width: 767px) {
  .gritzo-product-card {
    flex: 0 0 calc(56% - 8px);
  }

  .gritzo-product-rec-title {
    font-size: 24px;
    margin: 0 0 16px;
  }

  .gritzo-arrow {
    display: none;
  }
}