/* ===== GENERAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f5f0;
  color: #3b2e3a;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
  text-align: center;
  padding: 100px 20px 50px;
  background: linear-gradient(135deg, #fef7f5 0%, #fce7f0 100%);
  color: #ca5d90;
}

.header h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
}

.header .subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 10px;
  color: #8c6276;
}

.header .divider {
  width: 60px;
  height: 3px;
  background: #ca5d90;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== MAIN ===== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.container h2 {
  text-align: center;
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  color: #ca5d90;
  margin-bottom: 40px;
}

/* ===== ACCORDION ===== */
.accordion {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background: #fff;
  transition: all 0.4s ease;
}

.accordion.highlight {
  border: 2px solid #ca5d90;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px 30px;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: #ca5d90;
  background: #fdf7f9;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: #fde8f2;
}

.accordion-header .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  padding: 0 30px;
}

.accordion.active .accordion-content {
  max-height: 2000px;
  opacity: 1;
  padding: 20px 30px 30px;
}

/* ===== PRICE LIST ===== */
.price-list {
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f2e6e9;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.price-list li span {
  display: inline-block;
}

.price-list li .badge {
  font-size: 0.85rem;
  padding: 2px 8px;
  border: 1px solid rgba(202,93,144,0.8);
  border-radius: 12px;
  color: #ca5d90;
  margin-left: 8px;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: #fdf7f9;
  color: #8c6276;
}

.footer .wa-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 30px;
  background: #ca5d90;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer .wa-btn:hover {
  background: #b04b7a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2.2rem;
  }
  .accordion-header {
    font-size: 1.2rem;
    padding: 15px 20px;
  }
  .accordion-content {
    padding: 15px 20px 20px;
  }
  .price-list li {
    font-size: 0.95rem;
  }
  .badge {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 10px;
  }
  .header h1 {
    font-size: 1.8rem;
  }
  .container h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .price-list li {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* jangan biarkan harga turun */
    font-size: 0.8rem; /* teks mengecil */
    gap: 5px;
  }

  .price-list li span:first-child {
    flex: 1 1 auto; /* nama treatment bisa mengecil atau wrap */
    min-width: 0;
  }

  .price-list li span:last-child {
    flex-shrink: 0; /* harga tetap di kanan */
    text-align: right;
  }

  .badge {
    font-size: 0.7rem;
    padding: 1px 5px;
    white-space: nowrap; /* jangan pecah S/M/L/XL */
  }
}
