.accordion {
  border-radius: 0;
  font-family: 'Arial', sans-serif;
}

/* Border pemisah antar item */
.accordion-item {
  border-bottom: 1px solid #fff;
  color: #fff;
}

/* Header accordion */
.accordion-header {
  margin: 0;
}

/* Tombol accordion (judul) */
.accordion-button {
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}

/* Ikon accordion custom */
.accordion-icon {
  transition: opacity 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.5rem;
  text-align: center;
}

/* Fokus tanpa efek shadow */
.accordion-button:focus {
  box-shadow: none;
}

/* Konten accordion */
.accordion-collapse {
  display: none;
  will-change: height, opacity;
}

.accordion-collapse.show {
  display: block;
}

/* Konten body */
.accordion-body {
  padding: 1rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================================
   PureFoam "Selengkapnya" reveal (P2.1)
   Tombol native <details> di paling bawah; isinya accordion
   yang memakai style FAQ (.accordion .accordion-item dst).
   ============================================================ */
/* Saat halaman produk pendek (belum pilih produk), jadikan <main> flex-column
   supaya tombol "Selengkapnya" terdorong ke bawah & mepet footer.
   :has() men-scope ini hanya ke halaman yg memuat .pf-more (halaman produk). */
.wrapper:has(.pf-more) { display: flex; flex-direction: column; }

.pf-more {
  /* Lebar TETAP (bukan mengikuti konten) supaya tombol tertutup & accordion
     terbuka sama lebar. align-self:center meng-center-kan tanpa margin auto
     samping (margin auto samping bikin flex-item menyusut ke lebar konten). */
  width: 90%;
  align-self: center;
  /* margin-top auto = dorong ke bawah saat konten pendek (belum pilih produk);
     margin-bottom 3rem = napas ke footer di kedua kondisi. */
  margin: auto 0 3rem;
  padding-top: 3rem;
  text-align: center;
}
/* Tombol "Selengkapnya" = <summary> luar. Full-width (100% dari .pf-more = 90%)
   supaya lebarnya SAMA dengan accordion yang muncul setelah dibuka. */
.pf-more > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  width: 100%;
  max-width: 500px;      /* tombol tetap ~500; accordion di bawah lebih lebar */
  margin: 0 auto;        /* center tombol di dalam container yg lebih lebar */
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  background: linear-gradient(135deg, #008cb9 0%, #00779c 100%);
  color: #fff !important;
  font-family: "brandon-grotesque", "brandon-fallback", sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 30px;
  box-shadow: 0 8px 18px rgba(0, 119, 156, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pf-more > summary::-webkit-details-marker { display: none; }
.pf-more > summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 119, 156, 0.34);
}
/* aksen hexagon oranye di kiri tombol (bentuk khas PureFoam) */
.pf-more > summary::before {
  content: "";
  width: 16px; height: 16px; flex: none;
  background: #f8a631;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.pf-more-chev { transition: transform 0.25s ease; }
.pf-more[open] > summary .pf-more-chev { transform: rotate(180deg); }
/* accordion FAQ di dalam reveal: rata kiri lagi + beri jarak dari tombol */
.pf-more > .accordion { margin-top: 1.8rem; text-align: left; }
