.site-main { min-height: 40vh; }

.fsh-prose {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.8;
}

.fsh-prose > * + * { margin-top: 18px; }
.fsh-prose h2,
.fsh-prose h3,
.fsh-prose h4 {
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.fsh-prose-wide { max-width: 980px; margin: 0 auto; }

.fsh-card-grid {
  display: grid;
  gap: 22px;
}

.fsh-card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fsh-card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.fsh-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r16);
  padding: 24px 22px;
  box-shadow: var(--s1);
}

a.fsh-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform var(--t2), box-shadow var(--t2), border-color var(--t2);
}

a.fsh-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s3);
  border-color: var(--navy-100);
}

.fsh-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 8px;
}

.fsh-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r12);
  background: var(--navy-50);
  color: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.fsh-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.fsh-card-text,
.fsh-card-meta {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}

.fsh-cta-band {
  border-radius: var(--r20);
  padding: 40px;
  text-align: center;
}

.fsh-cta-band--dark {
  background: var(--navy-900);
}

.fsh-shortcode-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r16);
  padding: 24px;
}

.fsh-auth-page .site-footer { display: none; }

.auth-shell {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-left {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 52px;
}

.auth-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 110% 20%, rgba(147,197,253,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at -10% 90%, rgba(22,163,74,0.08) 0%, transparent 55%);
}

.auth-left-content,
.auth-left-bottom {
  position: relative;
  z-index: 1;
}

.auth-left-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
  text-decoration: none;
}

.auth-left-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy-600);
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-left-logo-mark svg { width: 20px; height: 20px; }
.auth-left-logo-name { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.04em; }

.auth-left-h {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.auth-left-h em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 400;
  color: #93C5FD;
}

.auth-left-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.52);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 38ch;
}

.auth-proof { display: flex; flex-direction: column; gap: 14px; }

.auth-proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.60);
}

.auth-proof-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-proof-icon .material-icons-round { font-size: 15px !important; color: rgba(255,255,255,0.50); }

.auth-left-bottom {
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r16);
}

.auth-quote { font-size: 14px; font-style: italic; color: rgba(255,255,255,0.62); line-height: 1.65; margin-bottom: 12px; }
.auth-quote-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.45); }
.auth-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.auth-stars .material-icons-round { font-size: 13px !important; color: var(--amber-600); }

.auth-right {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-form-title { font-size: 1.75rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 6px; }
.auth-form-sub { font-size: 14px; color: var(--ink-3); line-height: 1.6; margin-bottom: 28px; }
.auth-form-sub a { color: var(--navy-600); font-weight: 700; text-decoration: none; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-label { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.auth-input {
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r8);
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
}

.auth-submit {
  height: 52px;
  background: var(--navy-600);
  color: #fff;
  border: none;
  border-radius: var(--r8);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.auth-forgot { text-align: right; margin-top: -8px; }
.auth-forgot a { font-size: 13px; color: var(--navy-600); font-weight: 600; text-decoration: none; }
.auth-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.fsh-auth-notice {
  padding: 14px 16px;
  border-radius: var(--r8);
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.fsh-auth-notice--error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.fsh-auth-notice--success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }

.fsh-woocommerce .woocommerce {
  color: var(--ink);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--navy-600);
  color: #fff;
  border-radius: var(--r8);
  padding: 12px 22px;
  font-weight: 700;
}

.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
  background: var(--green-600);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--line-2);
  border-radius: var(--r8);
  padding: 12px 14px;
}

.woocommerce .woocommerce-notices-wrapper {
  margin-bottom: 18px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r16);
  overflow: hidden;
  padding: 0 0 20px;
}

.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r16);
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link a {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link:last-child a { border-bottom: 0; }

.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
  background: var(--navy-600);
  color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r16);
  padding: 28px;
  box-shadow: var(--s1);
}

.woocommerce .shop_table,
.woocommerce table.shop_table {
  border: 1px solid var(--line);
  border-radius: var(--r12);
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r16);
  padding: 24px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--line);
  border-radius: var(--r16);
  padding: 24px;
  background: var(--cream);
}

.fsh-account-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fsh-account-actions {
  margin-top: 22px;
}

.fsh-dashboard-gate {
  max-width: 480px;
  margin: 0 auto;
}

.fsh-dashboard-gate-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r20);
  padding: 36px;
  text-align: center;
  margin-bottom: 24px;
}

.fsh-dashboard-gate-icon {
  width: 64px;
  height: 64px;
  background: var(--navy-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.fsh-dashboard-gate-icon .material-icons-round {
  font-size: 28px !important;
  color: var(--navy-600);
}

.fsh-dashboard-gate-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.fsh-dashboard-gate-copy {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 24px;
  line-height: 1.7;
}

.fsh-dashboard-login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.fsh-dashboard-gate-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-3);
}

.fsh-dashboard-gate-footer a {
  color: var(--navy-600);
  font-weight: 700;
  text-decoration: none;
}

.fsh-dashboard-quick-grid,
.fsh-dashboard-benefits-grid {
  display: grid;
  gap: 16px;
}

.fsh-dashboard-quick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fsh-dashboard-quick-card,
.fsh-dashboard-benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r12);
  padding: 18px;
  text-align: center;
}

.fsh-dashboard-quick-card .material-icons-round,
.fsh-dashboard-benefit .material-icons-round {
  font-size: 28px !important;
  color: var(--navy-600);
  margin-bottom: 8px;
}

.fsh-dashboard-quick-card-icon--green,
.fsh-dashboard-benefit-icon--green {
  color: var(--green-600) !important;
}

.fsh-dashboard-benefit-icon--amber {
  color: var(--amber-600) !important;
}

.fsh-dashboard-benefit-icon--red {
  color: #DC2626 !important;
}

.fsh-dashboard-quick-title,
.fsh-dashboard-benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.fsh-dashboard-quick-copy,
.fsh-dashboard-benefit-copy {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.6;
}

.fsh-dashboard-quick-card .btn {
  margin-top: 12px;
}

.fsh-dashboard-benefits {
  margin-top: 64px;
}

.fsh-dashboard-benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fsh-order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.fsh-order-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fsh-order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.fsh-order-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fsh-order-status--completed,
.fsh-order-status--processing {
  background: #DCFCE7;
  color: #166534;
}

.fsh-order-status--pending,
.fsh-order-status--on-hold {
  background: #FEF3C7;
  color: #92400E;
}

.fsh-order-status--cancelled,
.fsh-order-status--failed,
.fsh-order-status--refunded {
  background: #FEE2E2;
  color: #991B1B;
}

.fsh-order-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.fsh-order-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-3);
}

.fsh-order-meta .material-icons-round {
  font-size: 16px !important;
  color: var(--ink-4);
}

.pp-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8,15,28,0.56);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.pp-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pp-card {
  position: relative;
  width: min(100%, 980px);
  min-height: 580px;
  border-radius: 28px;
  overflow: hidden;
  background: #0A1424;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.pp-bg,
.pp-bg img,
.pp-bg-overlay {
  position: absolute;
  inset: 0;
}

.pp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-bg-overlay {
  background:
    linear-gradient(90deg, rgba(8,15,28,0.92) 0%, rgba(8,15,28,0.74) 48%, rgba(8,15,28,0.58) 100%),
    radial-gradient(circle at top right, rgba(22,163,74,0.18), transparent 35%);
}

.pp-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.14;
}

.pp-grid-lines span {
  position: absolute;
  background: rgba(255,255,255,0.2);
}

.pp-grid-lines span:nth-child(1),
.pp-grid-lines span:nth-child(2) {
  width: 1px;
  top: 0;
  bottom: 0;
}

.pp-grid-lines span:nth-child(1) { left: 32%; }
.pp-grid-lines span:nth-child(2) { right: 18%; }

.pp-grid-lines span:nth-child(3),
.pp-grid-lines span:nth-child(4) {
  height: 1px;
  left: 0;
  right: 0;
}

.pp-grid-lines span:nth-child(3) { top: 26%; }
.pp-grid-lines span:nth-child(4) { bottom: 18%; }

.pp-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
  padding: 34px 32px 28px;
}

.pp-topbar,
.pp-proof,
.pp-success-code-row,
.pp-courses {
  display: flex;
  align-items: center;
}

.pp-topbar {
  justify-content: space-between;
  gap: 16px;
}

.pp-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pp-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.16);
}

.pp-timer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.pp-timer-block {
  min-width: 56px;
  padding: 7px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  text-align: center;
  color: #fff;
}

.pp-timer-block span {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.pp-timer-block small,
.pp-success-label,
.pp-proof-copy,
.pp-fine {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pp-timer-colon {
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

.pp-off-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(22,163,74,0.16);
  color: #86EFAC;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.pp-title {
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
}

.pp-title em {
  font-family: var(--serif-italic);
  font-weight: 400;
  color: #93C5FD;
}

.pp-sub {
  margin-top: 14px;
  color: rgba(255,255,255,0.66);
  line-height: 1.75;
  font-size: 14.5px;
}

.pp-proof {
  gap: 14px;
}

.pp-proof-avs {
  display: flex;
  align-items: center;
}

.pp-proof-avs img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(10,20,36,0.9);
  margin-right: -9px;
}

.pp-proof-text {
  color: rgba(255,255,255,0.68);
  font-size: 12.5px;
}

.pp-proof-stars {
  color: #FBBF24;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.popup-form-host .wpcf7 {
  margin: 0;
}

.popup-form-host .wpcf7-form,
.popup-form-host .pp-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-form-host p {
  margin: 0;
}

.popup-form-host .pp-input-wrap {
  position: relative;
}

.popup-form-host .pp-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.28);
  font-size: 16px !important;
  pointer-events: none;
}

.popup-form-host .pp-input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  font-size: 14px;
  color: #fff;
}

.popup-form-host .pp-input::placeholder {
  color: rgba(255,255,255,0.34);
}

.popup-form-host .wpcf7-not-valid {
  border-color: #F87171 !important;
}

.popup-form-host .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #FECACA;
  font-size: 12px;
}

.popup-form-host .pp-submit {
  height: 50px;
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(22,163,74,0.32);
}

.popup-form-host .wpcf7-spinner,
.popup-form-host .wpcf7-response-output {
  display: none !important;
}

.pp-fine {
  color: rgba(255,255,255,0.32);
  text-align: center;
  margin-top: 2px;
}

.pp-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 0;
}

.pp-success-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(22,163,74,0.15);
  border: 2px solid rgba(22,163,74,0.3);
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-success-heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.pp-success-code-row {
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1.5px dashed rgba(255,255,255,0.18);
  padding: 10px 16px;
  border-radius: 10px;
}

.pp-success-label,
.pp-proof-copy,
.pp-fine {
  color: rgba(255,255,255,0.38);
}

.pp-success-code {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.14em;
}

.pp-copy-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-success-note {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.pp-success-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 800;
}

.pp-courses {
  flex-wrap: wrap;
  gap: 10px;
}

.pp-courses span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.74);
  font-size: 12.5px;
}

@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { min-height: calc(100vh - var(--nav-h)); padding: 40px 24px; }
  .fsh-card-grid--3,
  .fsh-card-grid--4,
  .woocommerce ul.products,
  .fsh-order-grid,
  .fsh-dashboard-benefits-grid { grid-template-columns: 1fr 1fr; }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  .pp-card { min-height: auto; }
  .pp-content { max-width: 100%; padding: 28px 22px 24px; }
}

@media (max-width: 640px) {
  .fsh-card-grid--3,
  .fsh-card-grid--4,
  .woocommerce ul.products,
  .fsh-order-grid,
  .fsh-dashboard-quick-grid,
  .fsh-dashboard-benefits-grid { grid-template-columns: 1fr; }
  .auth-name-row { grid-template-columns: 1fr; }
  .fsh-cta-band { padding: 28px 22px; }
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce { padding: 20px; }
  .pp-topbar,
  .pp-proof { flex-direction: column; align-items: flex-start; }
  .pp-success-code-row { flex-wrap: wrap; justify-content: center; }
  .fsh-dashboard-gate-card { padding: 24px 18px; }
}
