.purchase-pause-notice{
  background:#fff8ee;
  border:1px solid rgba(242,140,24,.35);
  border-radius:var(--radius-sm);
  padding:18px 24px;
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:28px;
}
.purchase-pause-notice__icon{
  font-size:20px;
  line-height:1;
  flex-shrink:0;
  margin-top:2px;
}
.purchase-pause-notice__text{
  font-size:14px;
  font-weight:600;
  color:#7a4200;
  line-height:1.55;
}
.purchase-pause-notice--full{
  text-align:center;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:32px 24px;
}
.purchase-pause-notice--full .purchase-pause-notice__text{
  font-size:16px;
}
.btn--disabled{
  opacity:.45;
  pointer-events:none;
  cursor:not-allowed;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-bottom:28px;
}

.trust-card{
  background:var(--surface-strong);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.trust-card__number{
  display:inline-block;
  margin-bottom:16px;
  color:var(--accent);
  font-size:14px;
  font-weight:800;
}

.trust-card h3{
  margin:0 0 10px;
  font-size:28px;
  text-transform:uppercase;
  line-height:1;
}

.trust-card p{
  margin:0;
  color:#3d352d;
  line-height:1.7;
}

.results-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:24px;
}

.results-strip__item{
  padding:18px 20px;
  border-top:1px solid var(--border-strong);
  border-bottom:1px solid var(--border);
}

.results-strip__item strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
}

.results-strip__item span{
  color:var(--muted);
  font-size:14px;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.testimonial-card{
  margin:0;
  padding:28px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
}

.testimonial-card p{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.7;
}

.testimonial-card footer{
  color:var(--muted);
  font-size:14px;
}

.program-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

/* Fix secondary button inside product cards */

.program-card__buttons{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.program-card__buttons .btn{
  flex:1;
  text-align:center;
}

.program-card__buttons .btn-secondary{
  background:#fff;
  border:1px solid var(--border);
  color:var(--text);
  font-weight:700;
}

.program-card__buttons .btn-secondary:hover{
  background:#f5f3ef;
  transform:translateY(-1px);
}

.program-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease;
}

.program-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.program-card__image img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}

.program-card__body{
  padding:20px;
}

.program-card__category{
  margin:0 0 10px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
}

.program-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1;
  text-transform:uppercase;
}

.program-card__desc{
  margin:0 0 18px;
  color:#3d352d;
  line-height:1.6;
}

.program-card__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.program-card__price{
  margin:0;
  font-size:20px;
  font-weight:800;
}

.coaching-section__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.coaching-section__content p{
  font-size:16px;
  line-height:1.75;
  color:rgba(255,255,255,.82);
}

.feature-list{
  margin:22px 0 28px;
  padding:0;
  list-style:none;
}

.feature-list li{
  position:relative;
  padding-left:18px;
  margin-bottom:12px;
  color:rgba(255,255,255,.82);
}

.feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--accent);
}

.coaching-section__media img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:24px;
}

.recipe-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.recipe-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
}

.recipe-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.recipe-card__body{
  padding:20px;
}

.recipe-card__tag{
  margin:0 0 8px;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.1em;
  color:var(--muted);
}

.recipe-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1;
  text-transform:uppercase;
}

.recipe-card p{
  margin:0;
  line-height:1.65;
  color:#3d352d;
}

.newsletter-box{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:center;
  padding:36px;
  border:1px solid var(--border);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.newsletter-box__content p:last-child{
  margin:12px 0 0;
  color:#3d352d;
  line-height:1.7;
}

.newsletter-form-wrap{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.newsletter-form{
  display:flex;
  gap:12px;
  align-items:center;
}

.newsletter-msg{
  font-size:13px;
  font-weight:600;
  padding:9px 14px;
  border-radius:8px;
  line-height:1.5;
}
.newsletter-msg--success{
  background:rgba(16,185,129,.1);
  color:#047857;
  border:1px solid rgba(16,185,129,.25);
}
.newsletter-msg--info{
  background:rgba(59,130,246,.08);
  color:#1d4ed8;
  border:1px solid rgba(59,130,246,.2);
}
.newsletter-msg--error{
  background:rgba(239,68,68,.08);
  color:#b91c1c;
  border:1px solid rgba(239,68,68,.2);
}

.newsletter-form input{
  flex:1;
  min-height:56px;
  padding:0 18px;
  border:1px solid var(--border);
  border-radius:999px;
  font:inherit;
  color:#1a1a1a;
  background:#faf8f5;
}

@media (max-width: 1100px){
  .program-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 900px){
  .trust-grid,
  .results-strip,
  .testimonial-grid,
  .coaching-section__grid,
  .recipe-grid,
  .newsletter-box{
    grid-template-columns:1fr;
  }

  .newsletter-form{
    flex-direction:column;
    align-items:stretch;
  }
}

@media (max-width: 720px){
  .program-grid{
    grid-template-columns:1fr;
  }

  .program-card__bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .program-card__bottom .btn{
    width:100%;
  }
}