/* ================= SECTION ================= */
.product-list-section {
  position: relative;
  padding: 100px 0;

  background: linear-gradient(180deg,
      #f4e3cf 0%,
      #f7ead9 40%,
      #f2dfc6 100%);

  overflow: hidden;
}

/* ================= BACKGROUND PATTERN ================= */
.product-list-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../img/pattern-light.webp");
  background-repeat: repeat;
  background-size: 240px;

  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* ================= TOP SHADOW ================= */
.product-list-section::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;

  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.08),
      transparent);

  opacity: 0.15;
  position: relative;
  z-index: 1;
}

/* ================= HEADER ================= */
.product-header .product-tag {
  color: #ff6a00;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.product-header h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 14px 0;
  line-height: 1.3;
}

.product-header .product-sub {
  color: #666;
  max-width: 650px;
  margin: auto;
  font-size: 15px;
  line-height: 1.6;
}

.product-header {
  margin-bottom: 70px;
}

/* BADGE */
.product-badge {
  display: inline-block;
  background: rgba(255, 122, 0, 0.1);
  color: #ff6a00;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* SUBTEXT */
.product-sub {
  color: #666;
  max-width: 700px;
  margin: auto;
  font-size: 15px;
  line-height: 1.7;
}

/* HIGHLIGHTS */
.product-highlights {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product-highlights span {
  background: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  color: #2f4e7c;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


/* ================= PRODUCT CARD ================= */
.product-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 90px 25px 30px;
  text-align: center;
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-list-section .row {
  row-gap: 60px;
  display: flex;
  flex-wrap: wrap;
  /* vertical spacing */
}

.product-list-section .row>div {
  flex: 1 1 300px;
}

/* HOVER */
.product-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, #ff7a00, #ff3b3b);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.product-card:hover h3 {
  color: #ffffff;
}

.product-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* when card is hovered */
.product-card:hover p .heading {
  color: rgba(255, 255, 255, 0.95);
}

.product-card:hover p .value {
  color: rgba(255, 255, 255, 0.8);
}


/* ================= IMAGE ================= */
.product-img {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ================= CONTENT ================= */
.product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  min-height: 48px;
}

.product-content p {
  font-size: 14px;
  color: #777;
  margin-bottom: 18px;
  line-height: 1.6;
  min-height: 80px;
}

.heading {
  color: #1f140d;
  /* deep rich espresso brown */
  font-weight: 600;
  transition: color 0.3s ease;
}

.value {
  color: #777;
    font-weight: 500;
  transition: color 0.3s ease;
}

/* HOVER EFFECT */
.heading:hover {
  color: #3a2416;
  /* slightly lighter warm espresso highlight */
}

.value:hover {
  color: #7a5a45;
  /* soft warm lift for readability */
}

/* ================= BUTTON ================= */


/* ================= EXPLORE BUTTON ================= */
.product-explore-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #2f4e7c;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-explore-btn:hover {
  background: #ff6a00;
  color: #fff;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE DESIGN ================= */

/* ----------- LARGE DEVICES (≤1200px) ----------- */
@media (max-width: 1200px) {
  .product-header h2 {
    font-size: 36px;
  }
}

/* ----------- TABLETS (≤992px) ----------- */
@media (max-width: 992px) {

  .product-list-section {
    padding: 80px 0;
  }

  .product-header h2 {
    font-size: 32px;
  }

  .product-header .product-sub {
    font-size: 14px;
    padding: 0 15px;
  }

  .product-card {
    padding: 80px 20px 25px;
  }

  .product-img {
    width: 110px;
    height: 110px;
    top: -60px;
  }
}

/* ----------- MOBILE (≤768px) ----------- */
@media (max-width: 768px) {

  .product-list-section {
    padding: 60px 0;
  }

  .product-header {
    margin-bottom: 50px;
  }

  .product-header h2 {
    font-size: 26px;
  }

  .product-tag {
    font-size: 12px;
  }

  .product-highlights {
    gap: 10px;
  }

  .product-highlights span {
    font-size: 12px;
    padding: 6px 12px;
  }

  .product-card {
    min-height: auto;
    padding: 70px 18px 22px;
  }

  .product-content h3 {
    font-size: 18px;
    min-height: auto;
  }

  .product-content p {
    font-size: 13px;
    min-height: auto;
  }

  .product-img {
    width: 150px;
    height: 150px;
    top: -70px;
  }

  .product-btn {
    font-size: 12px;
    padding: 8px 18px;
  }
}

/* ----------- SMALL MOBILE (≤480px) ----------- */
@media (max-width: 480px) {

  .product-header h2 {
    font-size: 22px;
  }

  .product-sub {
    font-size: 13px;
  }

  .product-list-section .row {
    row-gap: 50px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-img {
    width: 130px;
    height: 130px;
    top: -65px;
  }
}