.pp-product-grid-section {
  padding: 80px 0;
  background-color: var(--bgcreame); /* Light cream background */
  position: relative;
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}

.pp-product-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../assets/images/veg-pattern.png"); /* Line art pattern */
  background-repeat: repeat;
  background-size: 400px;
  opacity: 0.15;
  z-index: 0;
}

/* Section Header */
.pp-product-grid-section .pp-section-header {
  margin-bottom: 50px;
}

.pp-section-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.pp-section-label-wrap .line {
  height: 1px;
  width: 60px;
  background-color: rgba(255, 87, 51, 0.4);
  display: inline-block;
}

.pp-product-grid-section .pp-section-label {
  color: var(--orange, #ff5733);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 15px;
}

.pp-product-grid-section .pp-section-label .dot {
  width: 6px;
  height: 6px;
  background-color: var(--orange, #ff5733);
  border-radius: 50%;
}

/* .pp-product-grid-section .pp-section-title {
  font-family: var(--global-heading-font, serif);
  color: #4a4a4a;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
} */

.pp-product-grid-section .pp-section-title img.leaf-icon {
  height: 30px;
  width: auto;
}

.pp-product-grid-section .pp-section-subtitle {
  color: var(--grey);
  font-size: 18px;
}

/* Product Card */
.pp-prod-card {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.09);
  border: 1px solid var(--white);
}

.pp-prod-card:hover {
  border-color: var(--orange);
}

.pp-prod-top-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 195, 0, 0.15); /* Light yellow/orange bg */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  z-index: 2;
}

.pp-prod-top-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Alternate top icon backgrounds faintly */
.col-xl-3:nth-child(4n + 1) .pp-prod-top-icon {
  background-color: rgba(255, 195, 0, 0.2);
}
.col-xl-3:nth-child(4n + 2) .pp-prod-top-icon {
  background-color: rgba(255, 87, 51, 0.15);
}
.col-xl-3:nth-child(4n + 3) .pp-prod-top-icon {
  background-color: rgba(139, 195, 74, 0.15);
}
.col-xl-3:nth-child(4n + 4) .pp-prod-top-icon {
  background-color: rgba(255, 152, 0, 0.15);
}

.pp-prod-image-wrap {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.pp-prod-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.pp-prod-content {
  margin-top: auto;
}

.pp-prod-title a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.pp-prod-title a:hover {
  color: var(--orange);
}

.pp-prod-pricing {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pp-prod-price-orig,
.pp-prod-price-orig span {
  color: var(--grey);
  text-decoration: line-through;
  font-size: 18px;
  opacity: 0.8;
}

.pp-prod-price-sale,
.pp-prod-price-sale span {
  color: var(--orange);
  font-weight: 700;
  font-size: 20px;
}

a.button.pp-prod-btn {
  display: block;
  width: 100%;
  padding: 12px 15px;
  background-color: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  line-height: 1.1;
  font-size: 16px;
  font-family: var(--global-body-font-family);
  transition: all 0.3s ease-in-out;
}

a.button.pp-prod-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
}

.pp-prod-btn--view {
  background-color: transparent;
  color: var(--orange, #ff5733);
  border: 2px solid var(--orange, #ff5733);
}

.pp-prod-btn--view:hover {
  background-color: var(--orange, #ff5733);
  color: #fff;
}

/* ── Product Badge ─────────────────────────────────── */
.pp-prod-badge {
  position: absolute;
  top: 14px;
  left: 12px;
  background-color: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 3;
  text-transform: uppercase;
}

.pp-prod-badge--sale {
  background-color: #568a38;
}

/* ── Empty State ───────────────────────────────────── */
.pp-pg-empty,
.pp-pg-wc-notice {
  width: 100%;
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 16px;
  font-style: italic;
}

/* ── Slider Mode ─────────────────────────────────────── */
.pp-prod-slider-wrapper {
  position: relative;
}
.pp-prod-swiper.swiper {
  padding: 0px 10px 95px;
  position: relative;
}

.pp-prod-swiper .swiper-slide {
  height: auto;
}

.pp-prod-swiper .pp-prod-card {
  margin-top: 30px;
}

.swiper-button-prev.pp-prod-prev,
.swiper-button-next.pp-prod-next {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
  margin-top: -20px;
  color: var(--orange);
  transition: all 0.3s ease-in-out;
}

.swiper-button-prev.pp-prod-prev::after,
.swiper-button-next.pp-prod-next::after {
  font-size: 20px;
  font-weight: 600;
  color: var(--orange);
  transition: all 0.3s ease-in-out;
}

.swiper-button-prev.pp-prod-prev {
  left: -45px;
}
.swiper-button-next.pp-prod-next {
  right: -45px;
}
.swiper-button-prev.pp-prod-prev:hover,
.swiper-button-next.pp-prod-next:hover {
  background: var(--orange);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.swiper-button-prev.pp-prod-prev:hover:after,
.swiper-button-next.pp-prod-next:hover:after {
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.pp-prod-pagination {
  bottom: 10px !important;
}

.pp-prod-pagination .swiper-pagination-bullet {
  /* background: var(--orange, #ff5733);
  opacity: 0.3; */
  background: #b8b2a9;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
}

.pp-prod-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 30px;
  border-radius: 5px;
  transition: width 0.3s ease;
}

@media (min-width: 1400px) {
  .pp-prod-prev {
    left: -50px;
  }
  .pp-prod-next {
    right: -50px;
  }
}
