/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: #4E6191;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; }

h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

h2 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2rem;
}

h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.25rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 2rem;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background-color: #371F15;
  color: #fff;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.top-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.top-banner-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #FFFFFF29;
}

.top-banner-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.625rem;
}

.top-banner-right .badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-banner-right .badge span { font-weight: 600; }

.top-banner svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== HEADER ===== */
.site-header {
  background-color: #FFF6E7;
  border-bottom: 2px solid #62151414;
  position: relative;
  z-index: 10;
}

.site-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 1.25rem 1rem;
}

.logo-svg { flex-shrink: 0; }

.nav-link {
  display: none;
  color: #4A1F0F;
  font-size: 1rem;
}
.nav-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ===== HERO ===== */
.hero {
  background-color: #FFF6E7;
  padding: 1.5rem 0 2.5rem;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hero-image {
  width: 343px;
  height: 343px;
  border-radius: 1rem;
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #210B02;
  text-align: center;
}

.hero-content h4 { font-size: 18px; }

.hero-content .cta-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #ED9700;
  color: #fff;
  text-transform: uppercase;
  min-height: 3.5rem;
  padding: 1.25rem 1rem;
  width: 100%;
  border-radius: 1rem;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  transition: all 0.15s;
  user-select: none;
}
.btn-cta:hover { background-color: rgba(237, 151, 0, 0.8); }

/* ===== FEATURE BADGES BAR ===== */
.badges-bar {
  background-color: #621514;
  padding: 1.75rem 0;
}

.badges-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-basis: calc(50% - 8px);
}

.badge-item img { width: 30px; height: 30px; }

.badge-item span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 26px;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  background-color: #fff;
  padding: 2.5rem 0 4rem;
}

.benefits .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.benefits-top-text {
  text-align: center;
  color: #210B02;
}
.benefits-top-text h1 { margin-bottom: 0.5rem; }
.benefits-top-text p { line-height: 26px; }

.benefits-top-img {
  width: 343px;
  height: 343px;
  object-fit: cover;
  border-radius: 1rem;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-card .benefit-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.benefit-card .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.5rem;
}

.benefit-card h3 {
  color: #210B02;
  font-weight: 600;
  font-size: 22px;
}

.benefit-card p {
  color: #210B02;
  font-size: 18px;
  margin-top: 0.5rem;
}

/* ===== INGREDIENTS SECTION ===== */
.ingredients {
  background-color: #FFF6E7;
  padding: 2.5rem 0 5rem;
  color: #210B02;
}

.ingredients .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ingredients-image {
  width: 100%;
  max-width: 600px;
  border-radius: 1rem;
  object-fit: contain;
}

.ingredients-content h1 { text-align: center; margin-bottom: 1.5rem; }

.accordion-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid #F0EDE1;
}

.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  width: 100%;
  padding: 0;
  text-align: left;
}

.accordion-header h2 {
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  max-width: 80%;
  color: #210B02;
}

.accordion-toggle {
  font-size: 1.5rem;
  color: #210B02;
  transition: transform 0.3s;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body p { margin-top: 0.75rem; }

.accordion-item.active .accordion-body { max-height: 1000px; }
.accordion-item.active .accordion-toggle { transform: rotate(45deg); }

/* ===== HEALTH INSIGHT ===== */
.health-insight {
  background-color: #FFF6E7;
  padding: 2.5rem 0 5rem;
  color: #210B02;
}

.health-insight .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.health-insight-img {
  width: 100%;
  max-width: 600px;
  border-radius: 1rem;
  object-fit: contain;
  margin: 0 auto;
}

.health-insight-content h1 { margin-bottom: 1rem; text-align: center; }
.health-insight-content p { line-height: 26px; }

/* ===== STATS SECTION ===== */
.stats-section {
  background-color: #FFF6E7;
  padding: 2.5rem 0 5rem;
  color: #210B02;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ED9700;
  line-height: 1;
}

.stat-card h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0.5rem 0 0.25rem;
  color: #210B02;
}

.stat-card p {
  font-size: 0.875rem;
  color: #4A1F0FCC;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background-color: #FFF6E7;
  padding: 2.5rem 0 5rem;
  color: #210B02;
}

.faq-section h2 {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  border-bottom: 1px solid #F0EDE1;
  padding-bottom: 1rem;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0.75rem 0;
  text-align: left;
}

.faq-question h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #210B02;
  max-width: 90%;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
  color: #210B02;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p { padding-bottom: 0.75rem; color: #4A1F0FCC; font-size: 1rem; }

.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ===== FOOTER ===== */
.site-footer {
  background-color: #FFF6E7;
  padding: 2rem 0;
  border-top: 1px solid #F0EDE1;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer-nav a {
  padding: 0 0.75rem;
  opacity: 0.75;
  font-size: 0.875rem;
  transition: all 0.15s;
  border-left: 1px solid currentColor;
}
.footer-nav a:first-child { border-left: none; }
.footer-nav a:hover { opacity: 1; }

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
}

/* ============================== */
/* ===== CHECKOUT PAGE ===== */
/* ============================== */

.checkout-hero {
  background-color: #FFF6E7;
  padding: 2rem 0 2.5rem;
  color: #210B02;
  text-align: center;
}

.checkout-hero h1 { margin-bottom: 0.5rem; }
.checkout-hero p { font-size: 1.125rem; color: #4A1F0FCC; }

/* Package Cards */
.packages-section {
  background-color: #FFF6E7;
  padding: 0 0 2.5rem;
}

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.package-card {
  border: 2px solid #E3E3E3;
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.package-card.selected {
  border-color: #ED9700;
  box-shadow: 0 0 0 2px #ED9700;
}

.package-card .package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ED9700;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.package-header h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #210B02;
}

.package-supply {
  font-size: 0.875rem;
  color: #4A1F0FCC;
  font-weight: 500;
}

.package-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #4A1F0F;
}

.package-details .price-per-day {
  font-weight: 600;
  color: #ED9700;
}

.package-details .free-shipping {
  color: #37923A;
  font-weight: 600;
}

.package-radio {
  width: 20px;
  height: 20px;
  accent-color: #ED9700;
}

/* ===== CHECKOUT FORM ===== */
.checkout-form-section {
  background-color: #FFF6E7;
  padding: 0 0 2.5rem;
}

.checkout-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.form-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #210B02;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F0EDE1;
}

.form-subtitle {
  font-size: 0.875rem;
  color: #4A1F0FCC;
  margin-bottom: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-row.two-col { grid-template-columns: 1fr 1fr; }

.form-group { position: relative; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4A1F0F;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #E3E3E3;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #210B02;
  background: #fff;
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4A1F0F;
  box-shadow: 0 0 0 1px #4A1F0F;
}

.form-group input::placeholder { color: #4A1F0F8F; }

/* Payment methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #E3E3E3;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.15s;
}

.payment-option.selected { border-color: #4A1F0F; }

.payment-option input[type="radio"] { accent-color: #ED9700; }

.payment-option img { height: 24px; }

.payment-option span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #210B02;
}

/* Terms checkbox */
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 0;
  font-size: 0.8rem;
  color: #4A1F0FCC;
}

.terms-check input { margin-top: 3px; accent-color: #ED9700; }
.terms-check a { text-decoration: underline; color: #4A1F0F; }

/* SSL Badge */
.ssl-badge {
  text-align: center;
  font-size: 0.75rem;
  color: #37923A;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Trust badges row */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid #F0EDE1;
  margin-top: 1rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #4A1F0FCC;
  text-align: center;
  max-width: 100px;
}

.trust-badge svg { width: 24px; height: 24px; color: #37923A; }

/* ===== CHECKOUT FEATURES ===== */
.checkout-features {
  background-color: #FFF6E7;
  padding: 2.5rem 0;
}

.checkout-features h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #210B02;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 1rem;
}

.feature-item svg {
  width: 32px;
  height: 32px;
  color: #ED9700;
  margin: 0 auto 0.5rem;
}

.feature-item h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #210B02;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.75rem;
  color: #4A1F0FCC;
  line-height: 1.4;
}

/* ===== INFO CARDS (Checkout) ===== */
.info-cards {
  background-color: #FFF6E7;
  padding: 0 0 2.5rem;
}

.info-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.info-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #210B02;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.875rem;
  color: #4A1F0FCC;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 854px) {
  .container { padding: 0 2.5rem; }
  
  h1 { font-size: 48px; line-height: 48px; }
  h2 { font-size: 3rem; line-height: 1; }
  
  .top-banner { font-size: 0.875rem; }
  .top-banner .container { flex-direction: row; justify-content: space-between; gap: 1rem; }
  .top-banner-left { padding-bottom: 0; border-bottom: none; }
  .top-banner-right { font-size: 0.875rem; }
  .top-banner svg { width: 24px; height: 24px; }
  
  .site-header .container { height: 76.79px; justify-content: space-between; }
  .nav-link { display: flex; }
  
  .hero { padding: 2.5rem 0; }
  .hero .container { flex-direction: row; gap: 5rem; }
  .hero-image { width: 600px; height: 600px; }
  .hero-content { text-align: left; align-items: flex-start; }
  .btn-cta { width: fit-content; padding: 1.25rem 2rem; font-size: 1.125rem; min-width: 300px; }
  
  .badges-bar .container { justify-content: space-between; gap: 1rem; }
  .badge-item { flex-basis: auto; }
  .badge-item span { font-size: 1.125rem; }
  
  .benefits { padding: 4rem 0; }
  .benefits .container { gap: 2.5rem; }
  .benefits-top { flex-direction: row; gap: 74px; }
  .benefits-top-text { text-align: left; max-width: 800px; }
  .benefits-top-img { width: 668px; height: 668px; }
  .benefits-grid { flex-direction: row; gap: 2.5rem; }
  .benefit-card h3 { font-size: 24px; }
  .btn-cta.center { margin: 0 auto; }
  
  .ingredients { padding: 5rem 0; }
  .ingredients .container { grid-template-columns: 1fr 1fr; gap: 5rem; }
  
  .health-insight { padding: 5rem 0; }
  .health-insight .container { grid-template-columns: 1fr 1fr; gap: 5rem; }
  
  .stats-grid { flex-direction: row; justify-content: center; gap: 2.5rem; }
  .stat-card { flex: 1; max-width: 300px; }
  
  .faq-section { padding: 5rem 0; }
  
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
  
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1281px) {
  .container { max-width: 1280px; padding: 0 2.5rem; }
}

@media (min-width: 1440px) {
  .container { max-width: 1280px; padding: 0; }
}
