:root {
  --navy: #213253;
  --navy-soft: #3a4a6b;
  --magenta: #a23794;
  --magenta-dark: #872f7c;
  --blush: #f6ebf4;
  --blush-deep: #efddec;
  --peach-1: #fde9dc;
  --peach-2: #fbd7bd;
  --ink: #1f2435;
  --muted: #6a667a;
  --line: #e8dee5;
  --error: #b3261e;
  --success: #1f7a4d;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 2px rgba(33, 50, 83, 0.04), 0 8px 24px rgba(33, 50, 83, 0.06);
  --shadow-card-hover: 0 2px 4px rgba(33, 50, 83, 0.06), 0 14px 36px rgba(33, 50, 83, 0.1);
  --t-fast: 120ms ease;
  --t-base: 200ms ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #faf7f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--magenta);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

/* ---------- Hero / brand band ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
}

.hero-left {
  background: linear-gradient(135deg, var(--peach-1) 0%, var(--peach-2) 100%);
  padding: 40px 36px;
  position: relative;
}

.hero-logo {
  width: 240px;
  max-width: 100%;
  height: auto;
  margin-bottom: 12px;
  position: relative;
}

.hero-products {
  font-size: 24px;
  font-weight: 700;
  color: var(--magenta);
  margin: 0 0 28px;
  line-height: 1.2;
  position: relative;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
  position: relative;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 400;
}

.hero-bullets li::before {
  content: "•";
  position: absolute;
  left: 2px;
  top: -1px;
  color: var(--magenta);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.hero-bullets strong {
  font-weight: 700;
  color: var(--navy);
}

.hero-bullets sup {
  font-size: 0.7em;
  vertical-align: super;
  line-height: 0;
}

.hero-right {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.online-badge {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.online-pill {
  align-self: flex-start;
  background: var(--magenta);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.online-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.online-note strong {
  font-size: 16px;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.online-url {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 4px;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.online-url:hover {
  color: var(--magenta-soft, #d8a6cf);
  text-decoration-color: currentColor;
}

.wholesale-cta {
  margin-top: 12px;
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wholesale-cta__blurb {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 700;
}

.wholesale-cta__btn {
  align-self: flex-start;
  background: var(--magenta);
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  box-shadow: 0 4px 10px rgba(162, 55, 148, 0.22);
}

.wholesale-cta__btn:hover {
  background: var(--magenta-dark);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(162, 55, 148, 0.32);
}

.wholesale-cta__btn:active {
  transform: translateY(1px);
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-left,
  .hero-right {
    padding: 28px 24px;
  }
  .hero-title {
    font-size: 24px;
  }
}

/* ---------- Form cards ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.section-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 4px;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--magenta);
  border-radius: 2px;
}

.section-hint {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 20px;
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 20px 22px;
  background: var(--blush);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-fast);
}

.product-card:hover {
  background: var(--blush-deep);
}

.product-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-check {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--navy-soft);
  background: var(--white);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.product-check::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 12px;
  border-right: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: rotate(45deg) scale(0);
  transition: transform var(--t-base);
}

.product-card:has(input:checked) {
  border-color: var(--magenta);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(162, 55, 148, 0.1);
}

.product-card:has(input:checked) .product-check {
  background: var(--magenta);
  border-color: var(--magenta);
}

.product-card:has(input:checked) .product-check::after {
  transform: rotate(45deg) scale(1);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 4px;
}

.product-info p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

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

/* ---------- Form fields ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-top: 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.field-full {
  grid-column: 1 / -1;
}

.label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.label em {
  color: var(--magenta);
  font-style: normal;
  font-weight: 900;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--blush);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
  width: 100%;
}

input:focus {
  border-color: var(--magenta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(162, 55, 148, 0.12);
}

input.invalid {
  border-color: var(--error);
  background: #fdf3f2;
}

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

/* ---------- Address autocomplete ---------- */
.address-field {
  position: relative;
}

.suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  list-style: none;
  margin: 0;
  padding: 6px;
  max-height: 320px;
  overflow-y: auto;
}

.suggestions li {
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--t-fast);
}

.suggestions li:hover,
.suggestions li.active {
  background: var(--blush);
}

.suggestion-text {
  font-size: 14px;
  color: var(--ink);
}

.suggestion-secondary {
  font-size: 12px;
  color: var(--muted);
  background: var(--blush);
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* ---------- Email status ---------- */
.email-field {
  position: relative;
}

.email-status {
  position: absolute;
  right: 14px;
  top: 38px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.email-status.checking { color: var(--muted); }
.email-status.valid { color: var(--success); }
.email-status.invalid { color: var(--error); }

.address-status {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 700;
  min-height: 18px;
}
.address-status.checking { color: var(--muted); }
.address-status.valid { color: var(--success); }
.address-status.invalid { color: var(--error); }

.field-error {
  font-size: 13px;
  color: var(--error);
  margin: 8px 0 0;
  min-height: 18px;
}

/* ---------- Radio + checkbox ---------- */
.radio-group {
  border: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.radio-group legend {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  width: 100%;
  padding: 0;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink);
  background: var(--blush);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--t-base);
}

.radio-group label:hover {
  background: var(--blush-deep);
}

.radio-group input[type="radio"] {
  accent-color: var(--magenta);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  margin-top: 4px;
  line-height: 1.5;
}

.checkbox-row input[type="checkbox"] {
  accent-color: var(--magenta);
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

/* ---------- Submit ---------- */
.form-actions {
  margin-top: 8px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--magenta);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  width: 100%;
  max-width: 360px;
  box-shadow: 0 6px 14px rgba(162, 55, 148, 0.25);
}

.btn-primary:hover:not(:disabled) {
  background: var(--magenta-dark);
  box-shadow: 0 8px 20px rgba(162, 55, 148, 0.32);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-primary:disabled {
  background: #b8a4b3;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.85;
}

.btn-primary.is-submitting:disabled {
  cursor: progress;
}

.submit-hint {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-primary.is-submitting .btn-spinner {
  display: inline-block;
}

.btn-primary.is-submitting .btn-label {
  opacity: 0.8;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-error {
  margin-top: 14px;
  color: var(--error);
  background: #fdf3f2;
  border: 1px solid #f3c8c4;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
}

/* ---------- Success ---------- */
.success {
  text-align: center;
  padding: 48px 28px;
}

.success h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 12px;
}

.success p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 8px;
}

/* ---------- Footer ---------- */
.legal {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  font-size: 12px;
  color: var(--muted);
}

.references-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.references ol {
  padding-left: 18px;
  margin: 0 0 8px;
  line-height: 1.5;
}

.references li {
  margin-bottom: 4px;
}

.references-link {
  margin-top: 4px;
}

.copyright p {
  margin: 0 0 6px;
  line-height: 1.5;
}

.fineprint {
  font-size: 11px;
  color: #999;
}

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