:root {
  --bg: #fff7dc;
  --bg-soft: #fffdf4;
  --text: #17202a;
  --muted: #5c6570;
  --accent: #ff8a00;
  --accent-dark: #e25f00;
  --green: #45c6a7;
  --blue: #3e7bdd;
  --card: #ffffff;
  --border: rgba(23, 32, 42, .12);
  --shadow: 0 22px 70px rgba(31, 45, 61, .13);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 38%, #e9fff8 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 76px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.center { align-items: center; }
.center-text { text-align: center; }
.narrow { max-width: 760px; }
.alt { background: rgba(255,255,255,.58); }
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px max(16px, calc((100vw - 1120px) / 2));
  background: rgba(255, 253, 244, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.brand img { height: 50px; width: auto; }
.nav { display: flex; gap: 20px; font-weight: 800; font-size: .95rem; }
.nav a:hover { color: var(--accent-dark); }
.hero { padding-top: 62px; position: relative; overflow: hidden; }
.hero:before {
  content: ""; position: absolute; inset: 0 0 auto auto;
  width: 44vw; height: 44vw; border-radius: 999px;
  background: radial-gradient(circle, rgba(69,198,167,.35), transparent 70%);
  transform: translate(20%, -28%);
  pointer-events: none;
}
.eyebrow { text-transform: uppercase; letter-spacing: .14em; color: var(--accent-dark); font-weight: 900; font-size: .82rem; margin: 0 0 12px; }
h1 { font-size: clamp(3.4rem, 9vw, 6.8rem); line-height: .88; margin: 0; letter-spacing: -.06em; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.02; margin: 0 0 20px; letter-spacing: -.04em; }
h3 { margin: 0 0 8px; font-size: 1.18rem; }
p { color: var(--muted); font-size: 1.08rem; }
.hero-copy h2 { margin-top: 16px; color: #27313b; }
.checklist { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 34px; font-weight: 800; color: #27313b; }
.checklist li:before {
  content: "✓"; position: absolute; left: 0; top: -2px;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green), var(--blue)); color: #fff; font-size: .88rem;
}
.compact { margin: 18px 0 0; }
.price-box {
  display: inline-flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  background: #fff; padding: 16px 20px; border-radius: 22px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.price-box .small { width: 100%; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.price-box strong { color: var(--accent-dark); font-size: 2.7rem; line-height: 1; }
.old-price { color: var(--muted); text-decoration: line-through; font-weight: 800; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  font-weight: 900; text-transform: uppercase; letter-spacing: .04em;
  border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--accent), #ff3d00); color: white; box-shadow: 0 14px 38px rgba(226,95,0,.28); }
.button.ghost { background: #fff; color: var(--accent-dark); border: 1px solid var(--border); }
.button.full { width: 100%; }
.hero-visual { position: relative; min-height: 600px; display: grid; place-items: end center; }
.hero-visual:before {
  content: ""; position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, #ffe674, #ffb75e 48%, #62d6c4 49%, #4a8bff);
  filter: saturate(1.1); z-index: 0;
}
.hero-model { position: relative; z-index: 1; max-height: 640px; object-fit: contain; filter: drop-shadow(0 26px 30px rgba(0,0,0,.18)); }
.trust-strip { padding: 18px 0; background: #152238; color: #fff; }
.badges { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.badges span { padding: 10px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-weight: 800; }
.media-card, .product-card, .lead-form, .feature-grid article {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.media-card { padding: 12px; }
.media-card img { border-radius: calc(var(--radius) - 10px); width: 100%; object-fit: cover; }
.media-card.tall { max-width: 430px; justify-self: center; }
.media-card.tall img { max-height: 640px; object-fit: contain; margin: auto; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 28px 0; }
.feature-grid article { padding: 22px; }
.feature-grid p { font-size: .96rem; margin: 0; }
.highlight { background: #fff; border-left: 5px solid var(--accent); padding: 18px; border-radius: 18px; box-shadow: 0 12px 34px rgba(31,45,61,.08); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 34px; }
.product-card img { width: 100%; aspect-ratio: 1.05; object-fit: contain; background: #fff; padding: 14px; }
.product-card div { padding: 24px; }
.order-section { background: linear-gradient(135deg, #152238, #24425f); color: #fff; }
.order-section p, .order-section .checklist li { color: rgba(255,255,255,.86); }
.order-section .eyebrow { color: #ffd65a; }
.lead-form { padding: 28px; color: var(--text); }
.lead-form h3 { font-size: 1.55rem; margin-bottom: 18px; }
.lead-form label { display: grid; gap: 7px; margin-bottom: 14px; font-weight: 850; color: #27313b; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 14px;
  min-height: 48px; padding: 12px 14px; font: inherit; color: var(--text); background: #fffdf8;
  outline: none;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,138,0,.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.privacy { grid-template-columns: auto 1fr !important; align-items: start; gap: 10px !important; font-size: .9rem; font-weight: 650 !important; }
.privacy input { width: 18px; min-height: 18px; margin-top: 2px; }
.form-message { min-height: 24px; margin: 12px 0 0; font-weight: 800; color: var(--accent-dark); }
.form-message.ok { color: #137a55; }
.form-message.err { color: #bf1f1f; }
.footer { background: #101723; color: rgba(255,255,255,.75); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer a { color: #fff; font-weight: 800; }
@media (max-width: 880px) {
  .grid-2, .product-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; order: -1; }
  .hero-model { max-height: 500px; }
  .nav { display: none; }
  .section { padding: 56px 0; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1120px); }
  .topbar { padding: 8px 12px; }
  .brand img { height: 42px; }
  .hero { padding-top: 36px; }
  .hero-visual { min-height: 370px; }
  h1 { font-size: 3.2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .price-box strong { font-size: 2.2rem; }
  .lead-form { padding: 20px; border-radius: 22px; }
}


/* SwimShader Woman overrides */
:root {
  --bg: #fff1f7;
  --bg-soft: #fffafd;
  --accent: #ff5c9a;
  --accent-dark: #df2f78;
  --green: #38d6bd;
  --blue: #30a8ff;
}
body { background: linear-gradient(180deg, #fff1f7 0%, #ffffff 42%, #effffb 100%); }
.hero-visual:before { background: linear-gradient(135deg, #ffde59, #ff7bac 48%, #73e8dc 49%, #48aaff); }
.hero-model { border-radius: 34px; max-height: 520px; background: rgba(255,255,255,.72); padding: 12px; box-shadow: var(--shadow); }
.price-box strong { color: var(--accent-dark); }
.order-section { background: linear-gradient(135deg, #1a1938, #194a66); }
.offer-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; margin-top: 22px; }
.offer-card img { margin: 0 auto; max-height: 360px; object-fit: contain; }
.product-card img { aspect-ratio: .92; }
@media (max-width: 880px) { .hero-model { max-height: 420px; } }
