/* ============================================================
   STHERB — Worldwide Shipping Redesign
   Scoped to .stherb-redesign-worldwide-shipping (body class on
   template-worldwide-shipping-redesign.php). Reuses design tokens +
   base classes (.sr-container, .sr-btn) from homepage-redesign.css,
   which is always enqueued first. No accent override — uses the
   site's standard blue (--accent), same as the mockup itself.
   ============================================================ */

/* ---- Hero ---- */
.sr-ws-hero {
  background: var(--dark);
  padding: 80px 0;
}

.sr-ws-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.sr-ws-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8995B;
  margin-bottom: 18px;
}

.sr-ws-eyebrow-rule {
  width: 30px;
  height: 1.5px;
  background: #C8995B;
}

.stherb-redesign-home .sr-ws-h1 {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0;
  color: #fff;
}

.sr-ws-hero-body {
  font-size: 16.5px;
  line-height: 1.85;
  color: #c7cfd6;
  max-width: 38em;
  margin: 22px 0 0;
}

.sr-ws-media-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sr-ws-media-soft {
  background: var(--soft);
}

.sr-ws-media-icon {
  width: 25%;
  height: 25%;
  color: #fff;
  opacity: 0.28;
}

.sr-ws-media-soft .sr-ws-media-icon {
  color: var(--accent);
  opacity: 0.3;
}

/* ---- Shared tag + body copy ---- */
.sr-ws-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.sr-ws-split h2 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 34px;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.sr-ws-body {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 22px;
}

/* ---- Discreet Packaging / Worldwide Delivery split sections ---- */
.sr-ws-split {
  padding: 88px 0 0;
}

.sr-ws-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.sr-ws-split-reverse .sr-ws-media-frame {
  order: 1;
}

.sr-ws-split-reverse > div:last-child {
  order: 2;
}

.sr-ws-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sr-ws-checklist li {
  position: relative;
  padding-left: 38px;
  font-size: 14.5px;
  color: var(--ink);
}

.sr-ws-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.sr-ws-checklist li::after {
  content: '\2713';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 14px;
  height: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* ---- Shipping Costs ---- */
.sr-ws-costs-section {
  padding: 88px 0 0;
}

.sr-ws-costs-head {
  text-align: center;
  max-width: 38em;
  margin: 0 auto 44px;
}

.sr-ws-costs-head h2 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 34px;
  color: var(--ink);
  margin: 10px 0 0;
  letter-spacing: -0.5px;
}

.sr-ws-costs-head .sr-ws-body {
  margin: 14px 0 0;
  font-size: 15px;
}

.sr-ws-progress {
  position: relative;
  max-width: 920px;
  margin: 0 auto 48px;
  padding: 0 10px;
}

.sr-ws-progress-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.sr-ws-progress-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--border) 0%, var(--border) 33%, var(--accent) 33%, var(--accent) 100%);
}

.sr-ws-progress-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 14px;
  text-align: center;
}

.sr-ws-progress-labels span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}

.sr-ws-progress-labels span:not(:first-child) {
  color: var(--accent);
}

.sr-ws-costs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.sr-ws-cost-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sr-ws-cost-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(34, 30, 24, 0.08);
}

.sr-ws-cost-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 20px 40px rgba(28, 111, 171, 0.14);
}

.sr-ws-cost-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.sr-ws-cost-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
}

.sr-ws-cost-icon svg { width: 21px; height: 21px; }

.sr-ws-cost-icon-fill {
  background: var(--accent);
  color: #fff;
}

.sr-ws-cost-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.sr-ws-cost-eyebrow-accent { color: var(--accent); }

.sr-ws-cost-card h3 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  margin: 6px 0 0;
  letter-spacing: -0.3px;
}

.sr-ws-cost-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 12px;
}

.sr-ws-cost-price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.sr-ws-cost-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.7;
}

.sr-ws-cost-card p.sr-ws-cost-body-ink {
  color: var(--ink);
}

.sr-ws-costs-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin: 24px 0 0;
}

/* ---- What You'll Receive ---- */
.sr-ws-receive-section {
  background: var(--soft);
  margin-top: 88px;
  padding: 80px 0;
}

.sr-ws-receive-head {
  text-align: center;
  max-width: 34em;
  margin: 0 auto 40px;
}

.sr-ws-receive-head h2 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 34px;
  color: var(--ink);
  margin: 10px 0 0;
  letter-spacing: -0.5px;
}

.sr-ws-receive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sr-ws-receive-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sr-ws-receive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(34, 30, 24, 0.08);
}

.sr-ws-receive-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin: 0 auto 14px;
}

.sr-ws-receive-icon svg { width: 21px; height: 21px; }

.sr-ws-receive-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.sr-ws-receive-body {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.6;
}

/* ---- CTA ---- */
.sr-ws-cta-section {
  padding: 88px 0 70px;
}

.stherb-redesign-home .sr-ws-cta-grid {
  background: var(--dark);
  border-radius: 24px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sr-ws-cta-grid h2 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 30px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.5px;
}

.sr-ws-cta-grid p {
  font-size: 14.5px;
  color: #9aa6b0;
  margin: 8px 0 0;
  max-width: 32em;
}

.stherb-redesign-home .sr-ws-cta-btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--ink);
}

.stherb-redesign-home .sr-ws-cta-btn:hover {
  background: var(--accent-soft);
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .sr-ws-hero-grid,
  .sr-ws-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sr-ws-split-reverse .sr-ws-media-frame { order: 0; }
  .sr-ws-split-reverse > div:last-child { order: 1; }

  .sr-ws-costs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sr-ws-h1 { font-size: 44px; }
  .sr-ws-receive-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .sr-ws-hero { padding: 56px 0; }
  .sr-ws-split { padding: 56px 0 0; }
  .sr-ws-costs-section { padding: 56px 0 0; }
  .sr-ws-receive-section { margin-top: 56px; padding: 56px 0; }
  .sr-ws-cta-section { padding: 56px 0 48px; }

  .stherb-redesign-home .sr-ws-cta-grid {
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .stherb-redesign-home .sr-ws-cta-btn { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .sr-ws-receive-grid { grid-template-columns: 1fr; }
}
