.product-section {
  padding: 55px 5%;
  background: linear-gradient(
    205deg,
    #ffffff 0%,
    #ffffff  50%,
    #FAF8F8 50%,
    #FAF8F8 100%
  );
}

.product-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.product-header {
  text-align: center;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 500;
}

.product-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #ffe5e5;
  color: #d71920;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  margin-bottom: 30px;
}

/* IMAGE */
.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

/* CONTENT */
.product-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* BUTTON */
.product-btn {
  display: inline-block;
  background: #f4b000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.product-btn:hover {
  background: rgba(255, 176, 0, 0.7);
  color: white;
}

/* LEFT EDGE OF PAGE */
.slide-arrow.left {
  left: 0;
  transform: translate(-50%, -50%);
}

.product-row {
  display: grid;
  grid-template-columns: auto 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
  justify-content: center;   /* ✅ CENTER GRID */
  margin: 0 auto;            /* ✅ CENTER CONTAINER */
}

/* ARROWS */
.slide-arrow {
  background: #d71920;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT EDGE OF PAGE */
.slide-arrow.right {
  right: 0;
  transform: translate(50%, -50%);
}

/* DOTS */
.product-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.dot.active {
  background: #d71920;
}

.product-header h1 {
  font-size: 30px;
  font-weight: 700;
}

.product-header p {
  font-size: 15px;
  font-weight: 500;
  margin-top: 1rem;
}

/* MOBILE */
@media (max-width: 1019px) {
  .product-row {
    grid-template-columns: 1fr;
  }

  .product-image img {
    height: 240px;
  }

  .product-content {
    text-align: center;
  }

  /* HIDE ARROWS */
  .slide-arrow {
    display: none;
  }

  /* SHOW DOTS */
  .product-dots {
    display: flex;
  }

  .product-badge {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
  }

  .product-header {
    font-size: 12px;
    font-weight: 400;
  }

  .product-content h3 {
    font-size: 20px;
  }

  .product-content p {
    font-size: 12px;
    font-weight: 400;
  }

  .product-header h1 {
    font-size: 25px;
    font-weight: 700;
    padding: 10px;
  }

  .product-header p {
    font-size: 12px;
    font-weight: 400;
  }

  .product-section {
    padding: 30px 5%;
  }

  .product-badge {
    margin-bottom: 10px;
  }

  .product-btn {
    font-weight: 600;
    font-size: 12px;
  }

}
