* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff8fb;
  color: #203020;
}

.topbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 50px;
  background: #fff0f5;
  font-size: 14px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 55px;
  background: white;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand h1 {
  margin: 0;
  font-size: 24px;
  color: #2f6b3f;
}

.brand p {
  margin: 0;
  color: #5d8b68;
}

nav {
  display: flex;
  gap: 25px;
  font-weight: bold;
}

nav a {
  cursor: pointer;
  text-decoration: none;
  color: #222;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 90px;
  background: linear-gradient(to right, #ffffff, #fff2f7);
}

.hero h2 {
  font-size: 52px;
  line-height: 1.1;
  color: #2f6b3f;
}

.hero h2 span {
  color: #eb5f91;
}

.hero p {
  font-size: 18px;
  max-width: 450px;
}

.hero img {
  width: 420px;
  border-radius: 30px;
}

.btn,
.cta button,
.popup-content button {
  display: inline-block;
  background: #2f8f5b;
  color: white;
  padding: 14px 25px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.promo {
  margin: 40px auto;
  width: 88%;
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff0f6;
  border-radius: 25px;
  padding: 25px 40px;
}

.discount {
  background: #eb5f91;
  color: white;
  padding: 25px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
}

.discount b {
  font-size: 36px;
}

.produk {
  padding: 40px 40px;
  text-align: center;
}

.produk h2,
.testimoni h2 {
  font-size: 32px;
  color: #2f6b3f;
}

.produk-list {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  width: 230px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  padding-bottom: 18px;
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card h3 {
  color: #2f6b3f;
  font-size: 20px;
}

.card p {
  font-size: 18px;
}

.card b {
  color: #eb5f91;
}

.card button {
  width: 85%;
  margin: 6px 0;
  padding: 12px;
  background: #2f8f5b;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

.card button:hover,
.cta button:hover,
.popup-content button:hover {
  background: #246f47;
}

.benefits {
  width: 88%;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefits div {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.testimoni {
  padding: 40px;
  text-align: center;
}

.testimoni-list {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimoni-list img {
  width: 150px;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.cta {
  width: 88%;
  margin: 30px auto;
  background: #fff0f6;
  padding: 30px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer {
  text-align: center;
  background: #2f6b3f;
  color: white;
  padding: 18px;
}

/* POPUP QR */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: white;
  width: 330px;
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
}

.qr {
  width: 230px;
  margin: 10px auto;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .topbar,
  header,
  .hero,
  .promo,
  .cta {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h2 {
    font-size: 38px;
  }

  .hero img {
    width: 100%;
    margin-top: 20px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }
}
.testimoni-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
}

.testimoni-list img {
  width: 280px;   /* BESARKAN sini */
  height: auto;   /* bagi ikut proportion */
  border-radius: 15px;
  flex-shrink: 0;
  object-fit: contain; /* penting untuk nampak full */
}.testimoni {
  padding: 60px 20px;
  text-align: center;
}

.testimoni-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimoni-list img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background: white;
}@media (max-width: 768px) {
  .testimoni-list {
    grid-template-columns: 1fr;
  }
}.produk-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 950px;
  margin: 0 auto;
}

.card {
  width: 100%;
  padding: 18px;
}

.card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}@media (max-width: 768px) {
  .produk-list {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 320px;
  }
}
.desc {
  font-size: 14px;
  color: #444;
  text-align: left;
  margin: 10px 15px;
  line-height: 1.5;
}
.produk-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
.video-btn {
  margin-top: 8px;
  background: #e88aa8;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-box {
  background: white;
  padding: 15px;
  border-radius: 18px;
  width: 90%;
  max-width: 420px;
  position: relative;
}

.video-box video {
  width: 100%;
  border-radius: 12px;
}

.close-video {
  position: absolute;
  top: -15px;
  right: -10px;
  background: #fff;
  color: #333;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  padding: 0 10px;
  cursor: pointer;
}
.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.video-box {
  background: white;
  padding: 15px;
  border-radius: 18px;
  width: 90%;
  max-width: 420px;
  position: relative;
}

.video-box video {
  width: 100%;
  border-radius: 12px;
}

.close-video {
  position: absolute;
  top: -18px;
  right: -10px;
  background: white;
  color: black;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  padding: 0 10px;
  cursor: pointer;
}
.video-btn {
  display: block;
  margin-top: 10px;
  background: #0b6b3a;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: bold;
  text-align: center;
}