/* ============================================================
   STHERB — Private Labeling Redesign (cream/gold, blue accent)
   Loaded on template-private-labeling-redesign.php only, on top of
   homepage-redesign.css (shared header/footer/buttons/vars/.sr-trust-icon)
   and contact-redesign.css (shared .sr-contact-card / .sr-contact-form-card
   / WPForms reskin rules — reused wholesale, no new field-type CSS needed:
   form 10224 has no checkbox/radio groups, unlike Dropshipper's form).
   ============================================================ */

.sr-pl-head {
  text-align: center;
  margin-bottom: 40px;
}
.sr-pl-head .sr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sr-pl-head h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin-top: 10px;
}

/* ---------- Hero (split: text left on page bg, real product photo right) ---------- */
.sr-pl-hero {
  padding: 48px 0 64px;
}
.sr-pl-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.sr-pl-hero-copy .sr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sr-pl-hero-copy .sr-kicker::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: currentColor;
}
.sr-pl-hero-copy h1 {
  font-size: clamp(38px, 5.2vw, 54px);
  margin: 14px 0 18px;
}
.sr-pl-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 28px;
}
.sr-pl-hero-media {
  border-radius: 24px;
  overflow: hidden;
  background: var(--soft);
  aspect-ratio: 4 / 5;
  max-height: 520px;
  width: 100%;
}
.sr-pl-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Alternating image/copy rows ---------- */
.sr-pl-row {
  padding: 56px 0;
}
.sr-pl-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sr-pl-row-alt {
  background: var(--soft);
}
.sr-pl-row-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 18px rgba(34, 30, 24, 0.08);
}
.sr-pl-row-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sr-pl-row-copy .sr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sr-pl-row-copy .sr-kicker::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: currentColor;
}
.sr-pl-row-copy h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  margin: 10px 0 14px;
}
.sr-pl-row-copy h2 + h2 {
  margin-top: 28px;
}
.sr-pl-row-copy p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 4px;
}

/* Checklist */
.sr-pl-checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.sr-pl-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}
.sr-pl-checklist svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Benefits (6-card grid) ---------- */
.sr-pl-benefits {
  padding: 64px 0;
}
.sr-pl-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sr-pl-benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 6px 18px rgba(34, 30, 24, 0.04);
}
.sr-pl-benefit-card .sr-trust-icon {
  flex-shrink: 0;
}
.sr-pl-benefit-card .sr-trust-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.sr-pl-benefit-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

/* ---------- Apply form ---------- */
.sr-pl-apply {
  background: var(--soft);
  padding: 72px 0;
  scroll-margin-top: 90px;
}
.sr-pl-form-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.sr-pl-form-card .sr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sr-pl-form-card .sr-kicker::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: currentColor;
}
.sr-pl-form-card h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  margin: 14px 0 10px;
}

/* ---------- Contact cards footer section ---------- */
.sr-pl-contact {
  padding: 0 0 84px;
}
.sr-pl-contact-grid {
  grid-template-columns: repeat(3, 1fr);
}
.sr-pl-contact .sr-contact-card {
  text-align: left;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .sr-pl-hero {
    padding: 24px 0 40px;
  }
  .sr-pl-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sr-pl-hero-media {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
  .sr-pl-row-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sr-pl-row-alt .sr-pl-row-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .sr-pl-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sr-pl-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sr-pl-benefits-grid,
  .sr-pl-contact-grid {
    grid-template-columns: 1fr;
  }
  .sr-pl-form-card {
    padding: 28px 20px;
  }
}
