:root {
  --fs-green: #154b37;
  --fs-green-2: #236848;
  --fs-orange: #ff9700;
  --fs-cream: #fff8ed;
  --fs-paper: #fffdf8;
  --fs-mint: #eaf6ef;
  --fs-line: rgba(21, 75, 55, 0.14);
  --fs-text: #173f31;
  --fs-muted: #766b62;
  --fs-soft: #f5eee4;
  --fs-shadow: 0 22px 70px rgba(32, 58, 42, 0.12);
  --fs-button-text: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.fs-page {
  margin: 0;
  padding-top: 74px;
  background: var(--fs-cream);
  color: var(--fs-text);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.fs-menu-open {
  overflow: hidden;
}

.fs-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 13px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.96);
  border-bottom: 1px solid var(--fs-line);
  backdrop-filter: blur(18px);
}

.fs-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fs-green);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.fs-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 18px rgba(21, 75, 55, 0.1);
}

.fs-brand-text {
  width: 118px;
  height: auto;
  display: block;
}

.fs-brand span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--fs-mint);
  font-size: 12px;
}

.fs-nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.fs-nav-links a,
.fs-mobile-menu a {
  color: #5d554e;
  font-weight: 900;
  text-decoration: none;
}

.fs-nav-links a.active,
.fs-nav-links a:hover,
.fs-mobile-menu a.active {
  color: var(--fs-green);
}

.fs-nav-cta,
.fs-mobile-cta,
.fs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--fs-green);
  color: var(--fs-button-text);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(21, 75, 55, 0.16);
}

body[data-button-radius="soft"] .fs-button,
body[data-button-radius="soft"] .fs-nav-cta,
body[data-button-radius="soft"] .fs-mobile-cta {
  border-radius: 18px;
}

body[data-button-radius="rounded"] .fs-button,
body[data-button-radius="rounded"] .fs-nav-cta,
body[data-button-radius="rounded"] .fs-mobile-cta {
  border-radius: 28px;
}

body[data-card-radius="soft"] .fs-card,
body[data-card-radius="soft"] .fs-category-card,
body[data-card-radius="soft"] .fs-store-hero-board {
  border-radius: 20px;
}

body[data-card-radius="rounded"] .fs-card,
body[data-card-radius="rounded"] .fs-category-card,
body[data-card-radius="rounded"] .fs-store-hero-board {
  border-radius: 30px;
}

body[data-store-width="wide"] .fs-shell {
  width: min(1760px, calc(100% - 48px));
}

body[data-store-width="full"] .fs-shell {
  width: min(100% - 40px, 100%);
}

.fs-button.secondary {
  background: #fff;
  color: var(--fs-green);
  border-color: var(--fs-line);
  box-shadow: none;
}

.fs-button.soft {
  background: var(--fs-mint);
  color: var(--fs-green);
  box-shadow: none;
}

.fs-menu-button,
.fs-close-menu {
  display: none;
}

.fs-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.fs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(44px, 7vw, 96px) 0 42px;
}

.fs-eyebrow,
.fs-chip,
.fs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff1cf;
  color: #9b5c00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fs-hero h1,
.fs-section-title h2,
.fs-feature h2,
.fs-page-title h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  color: var(--fs-green);
  letter-spacing: -0.045em;
}

.fs-hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
}

.fs-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--fs-muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
}

.fs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fs-chip-row,
.fs-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fs-chip {
  background: #fff;
  color: var(--fs-green);
  border: 1px solid var(--fs-line);
  text-transform: none;
  letter-spacing: 0;
}

.fs-hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 44px;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 151, 0, 0.28), transparent 30%),
    linear-gradient(145deg, #e8f5e7, #fff2dd);
  box-shadow: var(--fs-shadow);
  border: 1px solid rgba(21, 75, 55, 0.1);
}

.fs-paper-stack {
  position: absolute;
  inset: 56px 36px auto auto;
  width: min(410px, 70%);
  aspect-ratio: 1.18;
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 26px 60px rgba(21, 75, 55, 0.18);
  transform: rotate(2deg);
  padding: 28px;
}

.fs-paper-stack::before {
  content: "";
  position: absolute;
  inset: 18px 20px;
  border: 2px dashed rgba(21, 75, 55, 0.12);
  border-radius: 20px;
}

.fs-paper-logo {
  position: relative;
  width: 150px;
  height: auto;
  z-index: 1;
}

.fs-paper-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.fs-paper-lines span {
  height: 14px;
  border-radius: 999px;
  background: #e5f1e8;
}

.fs-paper-lines span:nth-child(2) {
  width: 78%;
}

.fs-paper-lines span:nth-child(3) {
  width: 62%;
  background: #fff0cc;
}

.fs-floating-note {
  position: absolute;
  left: 32px;
  bottom: 36px;
  max-width: 300px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--fs-green);
  box-shadow: 0 18px 40px rgba(21, 75, 55, 0.12);
}

.fs-floating-note strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.fs-section {
  padding: clamp(42px, 6vw, 80px) 0;
}

.fs-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.fs-section-title h2,
.fs-feature h2,
.fs-page-title h1 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
}

.fs-section-title p,
.fs-feature p,
.fs-page-title p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--fs-muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.fs-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fs-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--fs-line);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 34px rgba(21, 75, 55, 0.08);
  color: var(--fs-text);
  text-decoration: none;
}

.fs-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(21, 75, 55, 0.12);
}

.fs-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--fs-mint);
  font-size: 28px;
}

.fs-card h3 {
  margin: 18px 0 8px;
  font-size: 23px;
  color: var(--fs-green);
}

.fs-card p {
  margin: 0;
  color: var(--fs-muted);
  line-height: 1.55;
}

.fs-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
}

.fs-badge {
  padding: 6px 10px;
  background: var(--fs-mint);
  color: var(--fs-green);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.fs-badge.free {
  background: #e4f8df;
  color: #237b35;
}

.fs-badge.pro {
  background: #fff1cf;
  color: #a15c00;
}

.fs-badge.soon {
  background: #f0e8ff;
  color: #6f3ccf;
}

.fs-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 40px;
  background: linear-gradient(135deg, #123f2d, #236848);
  color: #fff;
  box-shadow: var(--fs-shadow);
}

.fs-feature h2 {
  color: #fff;
}

.fs-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.fs-feature .fs-button.secondary {
  background: #fff;
}

.fs-feature-visual {
  min-height: 300px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 30% 20%, rgba(255, 151, 0, 0.3), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px;
}

.fs-mini-sheet {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--fs-green);
}

.fs-mini-sheet span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #e8f3e7;
}

.fs-mini-sheet span:nth-child(2) {
  width: 72%;
}

.fs-mini-sheet span:nth-child(3) {
  width: 54%;
  background: #fff1cf;
}

.fs-faq details {
  border: 1px solid var(--fs-line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
  padding: 18px 22px;
}

.fs-faq details + details {
  margin-top: 12px;
}

.fs-faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--fs-green);
}

.fs-faq p {
  margin: 12px 0 0;
  color: var(--fs-muted);
  line-height: 1.55;
}

.fs-footer {
  margin-top: 40px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--fs-line);
  background: #fff;
}

.fs-footer-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--fs-muted);
}

.fs-footer a {
  color: var(--fs-green);
  font-weight: 800;
  text-decoration: none;
}

.fs-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.fs-page-title {
  padding: clamp(42px, 6vw, 80px) 0 20px;
}

.fs-callout {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--fs-line);
  background: #fff6e4;
}

.fs-empty {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--fs-line);
  color: var(--fs-muted);
}

.fs-store-band {
  margin-top: 26px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 151, 0, 0.26);
  border-radius: 26px;
  background: linear-gradient(135deg, #fff5d9, #edf8ee);
  color: var(--fs-green);
  font-weight: 900;
}

.fs-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fs-product-card {
  min-height: 100%;
  border: 1px solid var(--fs-line);
  border-radius: 32px;
  overflow: hidden;
  background: #fffdf8;
  box-shadow: 0 18px 44px rgba(21, 75, 55, 0.1);
}

.fs-product-card.recommended {
  border-color: rgba(255, 151, 0, 0.55);
  box-shadow: 0 24px 64px rgba(255, 151, 0, 0.16);
}

.fs-product-visual {
  display: block;
  padding: 24px;
  min-height: 260px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 151, 0, 0.28), transparent 28%),
    linear-gradient(145deg, #edf8ef, #fff1d9);
  text-decoration: none;
}

.fs-book-mockup {
  position: relative;
  width: min(230px, 92%);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  perspective: 800px;
}

.fs-book-cover {
  position: absolute;
  inset: 0 14% 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(21, 75, 55, 0.92), rgba(35, 104, 72, 0.78)),
    radial-gradient(circle at 70% 24%, rgba(255, 151, 0, 0.45), transparent 32%);
  color: #fff;
  box-shadow: 22px 22px 42px rgba(21, 75, 55, 0.22);
  transform: rotateY(-8deg) rotateZ(-1deg);
}

.fs-book-cover span {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
  font-size: 12px;
}

.fs-book-cover strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 31px;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.fs-book-pages {
  position: absolute;
  right: 0;
  top: 9%;
  width: 28%;
  height: 82%;
  display: grid;
  gap: 7px;
}

.fs-book-pages i {
  display: block;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 8px 10px 22px rgba(21, 75, 55, 0.12);
}

.fs-product-copy {
  padding: 24px;
}

.fs-product-copy h3 {
  margin: 10px 0 10px;
  color: var(--fs-green);
  font-size: 25px;
}

.fs-product-copy p {
  margin: 0;
  color: var(--fs-muted);
  line-height: 1.55;
}

.fs-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.fs-product-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--fs-mint);
  color: var(--fs-green);
  font-size: 13px;
  font-weight: 900;
}

.fs-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.fs-product-bottom strong {
  color: var(--fs-green);
  font-size: 20px;
}

.fs-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 80px;
}

.fs-panel {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--fs-line);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 36px rgba(21, 75, 55, 0.08);
}

.fs-panel + .fs-panel {
  margin-top: 18px;
}

.fs-panel h2,
.fs-panel h3 {
  margin: 0 0 10px;
  color: var(--fs-green);
}

.fs-panel p {
  color: var(--fs-muted);
  line-height: 1.55;
}

.fs-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fs-field {
  display: grid;
  gap: 7px;
  color: var(--fs-green);
  font-weight: 900;
}

.fs-field input,
.fs-field select,
.fs-field textarea {
  width: 100%;
  border: 1px solid rgba(21, 75, 55, 0.16);
  border-radius: 18px;
  padding: 13px 14px;
  background: #fff;
  color: var(--fs-text);
  font: inherit;
  font-weight: 700;
}

.fs-auth-box,
.fs-status-box {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px;
  border: 1px solid var(--fs-line);
  border-radius: 22px;
  background: #fff8ec;
}

.fs-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fs-choice {
  cursor: pointer;
  min-height: 120px;
  border: 1px solid var(--fs-line);
  border-radius: 24px;
  padding: 16px;
  background: #fff;
  text-align: left;
  color: var(--fs-text);
  font: inherit;
}

.fs-choice.active {
  border-color: var(--fs-orange);
  background: #fff5dc;
  box-shadow: inset 0 0 0 2px rgba(255, 151, 0, 0.22);
}

.fs-choice strong {
  display: block;
  color: var(--fs-green);
  margin-bottom: 6px;
}

.fs-color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fs-color-button {
  cursor: pointer;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(21, 75, 55, 0.18);
}

.fs-color-button.active {
  box-shadow: 0 0 0 3px var(--fs-orange);
}

.fs-photo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.fs-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.fs-photo-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #efe8dd;
  aspect-ratio: 1 / 1;
}

.fs-photo-card.selected {
  border-color: var(--fs-orange);
  box-shadow: 0 0 0 3px rgba(255, 151, 0, 0.18);
}

.fs-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fs-photo-card span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 7px 9px;
  border-radius: 12px;
  background: rgba(21, 75, 55, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.fs-preview {
  position: sticky;
  top: 96px;
}

.fs-preview-book {
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(145deg, #e8f6ed, #fff0d2);
}

.fs-preview-cover {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  border-radius: 26px;
  color: var(--fs-green);
  background: #f8ead3;
  overflow: hidden;
}

.fs-preview-cover img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: auto;
}

.fs-preview-cover h2 {
  margin: 0;
  color: inherit;
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px;
  line-height: 0.95;
}

.fs-preview-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.fs-preview-pages div {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.fs-preview-pages img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--fs-line);
}

.fs-summary-row span {
  color: var(--fs-muted);
}

.fs-error {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff0f0;
  color: #9a1b1b;
  font-weight: 800;
}

.fs-success {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #ecf8ef;
  color: #1f6f38;
  font-weight: 800;
}

.fs-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--fs-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 980px) {
  body.fs-page {
    padding-top: 68px;
  }

  .fs-nav {
    min-height: 68px;
  }

  .fs-nav-links,
  .fs-nav-cta {
    display: none;
  }

  .fs-menu-button {
    margin-left: auto;
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .fs-menu-button span {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--fs-green);
  }

  .fs-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 220;
    padding: 80px 22px 28px;
    background: #fffaf3;
  }

  .fs-mobile-menu[hidden] {
    display: none;
  }

  .fs-mobile-menu nav {
    display: grid;
    gap: 8px;
  }

  .fs-mobile-menu a {
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--fs-line);
  }

  .fs-mobile-menu .fs-mobile-cta {
    background: var(--fs-green);
    color: #fff;
    text-align: center;
  }

  .fs-close-menu {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--fs-green);
    font-size: 28px;
  }

  .fs-shell {
    width: min(100% - 28px, 760px);
  }

  .fs-hero,
  .fs-feature {
    grid-template-columns: 1fr;
  }

  .fs-hero-card {
    min-height: 420px;
  }

  .fs-grid,
  .fs-grid.two,
  .fs-product-grid,
  .fs-builder,
  .fs-field-grid,
  .fs-choice-grid {
    grid-template-columns: 1fr;
  }

  .fs-preview {
    position: static;
  }
}

@media (max-width: 560px) {
  .fs-brand-text {
    width: 102px;
  }

  .fs-brand span {
    display: none;
  }

  .fs-hero h1 {
    font-size: clamp(42px, 15vw, 62px);
  }

  .fs-section-title {
    display: block;
  }

  .fs-button {
    width: 100%;
  }

  .fs-hero-card {
    min-height: 360px;
    border-radius: 32px;
  }

  .fs-paper-stack {
    inset: 34px 18px auto auto;
    width: 78%;
  }

  .fs-floating-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }
}

/* Storefront editorial redesign */
body.fs-page {
  padding-top: 112px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 151, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #f8f0e4 100%);
}

.fs-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 230;
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 7px clamp(18px, 4vw, 56px);
  background: #103f2d;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.fs-topbar strong {
  color: #ffe2a5;
  text-align: center;
}

.fs-topbar span:last-child {
  text-align: right;
}

.fs-nav {
  top: 34px;
  min-height: 78px;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: clamp(14px, 2vw, 28px);
}

.fs-nav-links {
  gap: clamp(12px, 1.7vw, 24px);
}

.fs-nav-links a,
.fs-mobile-menu a {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.fs-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}

.fs-nav-icon,
.fs-nav-cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--fs-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--fs-green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.fs-nav-cart {
  background: #fff8ec;
}

.fs-storefront-hero {
  min-height: min(650px, calc(100vh - 118px));
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 54px) 0 24px;
}

.fs-storefront-hero .fs-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.fs-storefront-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 5.7vw, 88px);
  line-height: 0.9;
}

.fs-storefront-hero .fs-lead {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(18px, 1.45vw, 22px);
}

.fs-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.fs-proof-row span {
  padding: 8px 12px;
  border: 1px solid rgba(21, 75, 55, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--fs-green);
  font-size: 13px;
  font-weight: 900;
}

.fs-hero-product {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(21, 75, 55, 0.12);
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 237, 0.46)),
    radial-gradient(circle at 80% 15%, rgba(255, 151, 0, 0.28), transparent 28%),
    linear-gradient(145deg, #e7f5e9, #fff1d7);
  box-shadow: 0 28px 90px rgba(21, 75, 55, 0.14);
}

.fs-product-stage {
  position: absolute;
  inset: 28px;
}

.fs-planner-card {
  position: absolute;
  left: 8%;
  top: 8%;
  width: min(440px, 72%);
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(21, 75, 55, 0.13);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 26px 60px rgba(21, 75, 55, 0.18);
  transform: rotate(-2deg);
}

.fs-planner-card img {
  width: 138px;
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.fs-planner-card strong {
  display: block;
  color: var(--fs-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.fs-planner-card > span {
  display: inline-flex;
  margin: 12px 0 18px;
  color: var(--fs-muted);
  font-weight: 900;
}

.fs-planner-card i {
  display: block;
  height: 13px;
  margin-top: 12px;
  border-radius: 999px;
  background: #e4f0e6;
}

.fs-planner-card i:nth-of-type(2) {
  width: 78%;
}

.fs-planner-card i:nth-of-type(3) {
  width: 60%;
  background: #fff0c9;
}

.fs-task-ticket,
.fs-clipboard {
  position: absolute;
  border: 1px solid rgba(21, 75, 55, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(21, 75, 55, 0.14);
  color: var(--fs-green);
}

.fs-task-ticket {
  right: 4%;
  width: min(230px, 40%);
  padding: 18px;
}

.fs-task-ticket.one {
  top: 22%;
}

.fs-task-ticket.two {
  bottom: 15%;
}

.fs-task-ticket strong,
.fs-clipboard b {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}

.fs-task-ticket span,
.fs-clipboard span {
  color: var(--fs-muted);
  font-weight: 800;
}

.fs-clipboard {
  left: 20%;
  bottom: 7%;
  padding: 18px 22px;
  transform: rotate(2deg);
}

.fs-how-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.fs-how-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--fs-line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.82);
}

.fs-how-strip span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fs-green);
  color: #fff;
  font-weight: 900;
}

.fs-how-strip strong {
  color: var(--fs-green);
  font-size: 17px;
}

.fs-how-strip p {
  margin: 0;
  color: var(--fs-muted);
  line-height: 1.35;
}

.fs-tight-section {
  padding: clamp(32px, 4vw, 54px) 0;
}

.fs-section-title.compact {
  align-items: center;
  margin-bottom: 18px;
}

.fs-section-title.compact h2 {
  font-size: clamp(32px, 3.8vw, 56px);
}

.fs-link-arrow {
  color: var(--fs-green);
  font-weight: 900;
  text-decoration: none;
}

.fs-link-arrow::after {
  content: " ->";
  color: var(--fs-orange);
}

.fs-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.fs-category-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--fs-line);
  border-radius: 24px;
  background: #fffdf8;
  color: var(--fs-green);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(21, 75, 55, 0.06);
}

.fs-category-card:hover {
  transform: translateY(-2px);
}

.fs-category-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--fs-mint);
  font-weight: 900;
}

.fs-category-card strong {
  font-size: 18px;
}

.fs-category-card small {
  color: var(--fs-muted);
  line-height: 1.35;
}

.fs-category-card.gold .fs-category-mark,
.fs-category-card.cream .fs-category-mark {
  background: #fff0c9;
}

.fs-category-card.blue .fs-category-mark {
  background: #e6f1ff;
}

.fs-resource-grid .fs-resource-card {
  padding: 0;
  overflow: hidden;
}

.fs-resource-card {
  gap: 0;
}

.fs-resource-mockup {
  position: relative;
  min-height: 210px;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 151, 0, 0.22), transparent 25%),
    linear-gradient(135deg, #e8f4e7, #fff1d8);
}

.fs-resource-mockup.album {
  background: linear-gradient(135deg, #f8ead3, #e8f4e7);
}

.fs-resource-mockup.school,
.fs-resource-mockup.week {
  background: linear-gradient(135deg, #e9f3ff, #fff1d8);
}

.fs-resource-mockup.guide {
  background: linear-gradient(135deg, #f0e8ff, #fff2dd);
}

.fs-mock-sheet {
  position: absolute;
  border: 1px solid rgba(21, 75, 55, 0.12);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 20px 44px rgba(21, 75, 55, 0.12);
}

.fs-mock-sheet.main {
  inset: 18px 48px 30px 18px;
  padding: 20px;
}

.fs-mock-sheet.back {
  right: 18px;
  top: 36px;
  width: 38%;
  height: 58%;
  transform: rotate(5deg);
  opacity: 0.78;
}

.fs-mock-brand {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--fs-orange);
  font-weight: 900;
}

.fs-mock-sheet strong {
  display: block;
  color: var(--fs-green);
  font-size: 20px;
  line-height: 1.08;
}

.fs-mock-sheet i {
  display: block;
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e6f1e7;
}

.fs-mock-sheet i:nth-of-type(2) {
  width: 78%;
}

.fs-mock-sheet i:nth-of-type(3) {
  width: 56%;
  background: #fff0c9;
}

.fs-mock-tags {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.fs-mock-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(21, 75, 55, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.fs-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.fs-card-kicker {
  color: #a15c00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fs-resource-card h3 {
  margin-top: 8px;
}

.fs-badge.new {
  background: #e6f1ff;
  color: #1d5c92;
}

.fs-badge.price {
  margin-left: auto;
  background: #fff8ec;
}

.fs-pro-ribbon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 151, 0, 0.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 151, 0, 0.2), transparent 28%),
    linear-gradient(135deg, #123f2d, #236848);
  color: #fff;
}

.fs-pro-ribbon h2 {
  margin: 10px 0 0;
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 0.98;
}

.fs-pro-ribbon p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.fs-price-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fs-price-compare span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.fs-price-compare strong {
  color: #fff;
  font-size: 24px;
}

.fs-split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: stretch;
  padding: 0;
}

.fs-split-copy,
.fs-split-visual {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--fs-line);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.86);
}

.fs-split-copy h2 {
  margin: 10px 0;
  color: var(--fs-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

.fs-split-copy p {
  color: var(--fs-muted);
  font-size: 18px;
  line-height: 1.55;
}

.fs-split-visual {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e9f6ec, #fff0d1);
}

.fs-mini-board {
  width: min(520px, 92%);
  padding: 28px;
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(21, 75, 55, 0.16);
}

.fs-mini-board img {
  width: 136px;
  height: auto;
}

.fs-mini-board strong {
  display: block;
  margin: 22px 0;
  color: var(--fs-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px;
}

.fs-mini-board div {
  display: grid;
  grid-template-columns: 1fr repeat(4, 28px);
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.fs-mini-board div::before {
  content: "";
  height: 12px;
  border-radius: 999px;
  background: #e4f0e6;
}

.fs-mini-board span {
  width: 28px;
  height: 28px;
  border: 2px solid #c9e5d0;
  border-radius: 9px;
}

.fs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fs-blog-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--fs-line);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--fs-green);
  text-decoration: none;
}

.fs-blog-card span {
  color: #a15c00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fs-blog-card strong {
  font-size: 22px;
  line-height: 1.08;
}

.fs-blog-card small {
  color: var(--fs-muted);
  line-height: 1.45;
}

.fs-faq {
  padding-bottom: clamp(54px, 8vw, 100px);
}

.fs-faq details {
  padding: 0;
  overflow: hidden;
}

.fs-faq summary {
  list-style: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.fs-faq summary::-webkit-details-marker {
  display: none;
}

.fs-faq summary::after {
  content: "+";
  color: var(--fs-orange);
}

.fs-faq details[open] summary::after {
  content: "−";
}

.fs-faq p {
  padding: 0 22px 20px;
}

@media (max-width: 1180px) {
  .fs-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fs-storefront-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .fs-hero-product {
    min-height: 430px;
  }
}

@media (max-width: 980px) {
  body.fs-page {
    padding-top: 102px;
  }

  .fs-topbar {
    grid-template-columns: 1fr;
    gap: 2px;
    min-height: 34px;
    text-align: center;
    font-size: 12px;
  }

  .fs-topbar span {
    display: none;
  }

  .fs-topbar span:last-child {
    text-align: center;
  }

  .fs-nav {
    top: 34px;
    min-height: 68px;
  }

  .fs-nav-actions {
    display: none;
  }

  .fs-how-strip,
  .fs-pro-ribbon,
  .fs-split-showcase,
  .fs-blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fs-storefront-hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .fs-storefront-hero .fs-lead {
    font-size: 17px;
  }

  .fs-hero-product {
    min-height: 360px;
    border-radius: 30px;
  }

  .fs-product-stage {
    inset: 16px;
  }

  .fs-planner-card {
    left: 2%;
    top: 4%;
    width: 78%;
    min-height: 250px;
    padding: 20px;
  }

  .fs-planner-card img {
    width: 110px;
    margin-bottom: 18px;
  }

  .fs-planner-card strong {
    font-size: 32px;
  }

  .fs-task-ticket {
    right: 0;
    width: 48%;
    padding: 14px;
  }

  .fs-task-ticket strong {
    font-size: 18px;
  }

  .fs-clipboard {
    left: 8%;
    bottom: 4%;
  }

  .fs-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fs-category-card {
    min-height: 136px;
    padding: 14px;
  }

  .fs-resource-mockup {
    min-height: 190px;
  }

  .fs-section-title.compact {
    display: block;
  }

  .fs-link-arrow {
    display: inline-flex;
    margin-top: 10px;
  }
}

/* Store admin */
.fs-admin-page {
  background:
    radial-gradient(circle at top left, rgba(255, 178, 66, .18), transparent 34rem),
    linear-gradient(135deg, #fbf6ed 0%, #f1eadf 100%);
}

.fs-admin-locked #fp-nav-root,
.fs-admin-locked .fs-admin-shell {
  display: none !important;
}

.fs-admin-login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.fs-admin-login-screen[hidden] {
  display: none !important;
}

.fs-admin-login-card {
  width: min(100%, 360px);
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 252, 246, .94);
  border: 1px solid rgba(18, 61, 42, .12);
  box-shadow: 0 24px 80px rgba(18, 61, 42, .12);
}

.fs-admin-login-card h1 {
  margin: 0;
  color: #103d2b;
  font-size: 34px;
  line-height: 1;
}

.fs-admin-login-card label {
  display: grid;
  gap: 8px;
  color: #103d2b;
  font-weight: 900;
}

.fs-admin-login-card input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(18, 61, 42, .16);
  border-radius: 16px;
  padding: 14px 15px;
  background: #fffdf8;
  color: #103d2b;
  font: inherit;
}

.fs-admin-login-error {
  margin: 0;
  color: #b33725;
  font-weight: 800;
}

.fs-admin-shell {
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
}

.fs-admin-sidebar,
.fs-admin-panel {
  background: rgba(255, 252, 246, .9);
  border: 1px solid rgba(18, 61, 42, .12);
  box-shadow: 0 20px 60px rgba(18, 61, 42, .08);
}

.fs-admin-sidebar {
  position: sticky;
  top: 98px;
  align-self: start;
  border-radius: 28px;
  padding: 18px;
}

.fs-admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #103d2b;
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 20px;
}

.fs-admin-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.fs-admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.fs-admin-sidebar nav a {
  padding: 12px 14px;
  border-radius: 16px;
  color: #5d5045;
  text-decoration: none;
  font-weight: 800;
}

.fs-admin-sidebar nav a.active,
.fs-admin-sidebar nav a:hover {
  color: #103d2b;
  background: #edf7ef;
}

.fs-admin-help {
  margin-top: 22px;
  padding: 14px;
  border-radius: 18px;
  background: #fff5df;
  color: #6b543b;
  font-size: 14px;
}

.fs-admin-help strong {
  display: block;
  color: #103d2b;
  margin-bottom: 6px;
}

.fs-admin-main {
  min-width: 0;
}

.fs-admin-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.fs-admin-kicker {
  margin: 0 0 8px;
  color: #c46f00;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.fs-admin-header h1 {
  margin: 0;
  font-family: var(--fs-serif);
  font-size: clamp(34px, 4vw, 64px);
  line-height: .94;
  color: #103d2b;
}

.fs-admin-header p {
  max-width: 760px;
  color: #735f4b;
  font-size: 18px;
  line-height: 1.45;
}

.fs-admin-panel {
  border-radius: 28px;
  padding: 22px;
}

.fs-admin-auth-panel {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 16px;
}

.fs-admin-locked .fs-admin-private {
  display: none !important;
}

.fs-admin-lock-notice {
  display: none;
  margin-top: 16px;
  border-color: rgba(212, 145, 38, .28);
  background: linear-gradient(135deg, #fff8e9, #fffdf8);
}

.fs-admin-locked .fs-admin-lock-notice {
  display: block;
}

.fs-admin-lock-notice strong {
  display: block;
  color: #103d2b;
  font-size: 22px;
  margin-bottom: 8px;
}

.fs-admin-lock-notice p {
  max-width: 780px;
  margin: 0;
  color: #735f4b;
  line-height: 1.5;
}

.fs-admin-auth-panel strong,
.fs-admin-section-head h2,
.fs-admin-assets h3 {
  color: #103d2b;
}

.fs-admin-auth-panel p,
.fs-admin-section-head p {
  margin: 4px 0 0;
  color: #806c58;
}

.fs-admin-message {
  margin: 12px 0;
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 800;
}

.fs-admin-message.success {
  background: #e7f7e9;
  color: #16733b;
}

.fs-admin-message.error {
  background: #fff0ee;
  color: #b33725;
}

.fs-admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.fs-admin-stats article {
  padding: 18px;
  border-radius: 22px;
  background: #103d2b;
  color: #fff;
}

.fs-admin-stats span {
  display: block;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}

.fs-admin-stats strong {
  display: block;
  font-size: 34px;
  margin-top: 4px;
}

.fs-admin-grid {
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1.2fr);
  gap: 18px;
  margin-top: 18px;
}

.fs-admin-grid.compact {
  grid-template-columns: 1fr 1fr;
}

.fs-admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.fs-admin-section-head h2 {
  margin: 0;
  font-size: 24px;
}

.fs-admin-filters,
.fs-admin-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fs-admin-filters {
  grid-template-columns: 1fr 150px 150px;
  margin-bottom: 14px;
}

.fs-admin-form {
  display: grid;
  gap: 14px;
}

.fs-admin-form.inline {
  grid-template-columns: 1fr 1.2fr auto;
  align-items: end;
}

.fs-admin-form label,
.fs-admin-auth-panel label,
.fs-admin-assets label {
  display: grid;
  gap: 7px;
  color: #103d2b;
  font-weight: 900;
  font-size: 13px;
}

.fs-admin-form input,
.fs-admin-form textarea,
.fs-admin-form select,
.fs-admin-auth-panel input,
.fs-admin-filters input,
.fs-admin-filters select,
.fs-admin-assets input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(18, 61, 42, .14);
  border-radius: 16px;
  background: #fffaf3;
  color: #103d2b;
  padding: 12px 14px;
  font: inherit;
  font-weight: 700;
}

.fs-admin-form textarea {
  resize: vertical;
}

.fs-admin-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}

.fs-admin-check input {
  width: 20px;
  height: 20px;
}

.fs-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fs-button.ghost {
  background: #fffaf3;
  color: #103d2b;
  border: 1px solid rgba(18, 61, 42, .16);
}

.fs-button.danger {
  background: #fff1ed;
  color: #b33725;
}

.fs-admin-status,
.fs-admin-row-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 900;
  font-size: 12px;
  background: #fff3cf;
  color: #9b5b00;
}

.fs-admin-row-status.PUBLISHED {
  background: #e5f8e8;
  color: #16733b;
}

.fs-admin-row-status.ARCHIVED {
  background: #eee6dc;
  color: #756657;
}

.fs-admin-product-list {
  display: grid;
  gap: 10px;
  max-height: 640px;
  overflow: auto;
  padding-right: 4px;
}

.fs-admin-product-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  text-align: left;
  border: 1px solid rgba(18, 61, 42, .12);
  border-radius: 18px;
  padding: 14px;
  background: #fffaf3;
  cursor: pointer;
}

.fs-admin-product-row.active {
  border-color: #0f5132;
  box-shadow: 0 0 0 3px rgba(15, 81, 50, .12);
}

.fs-admin-product-row strong {
  color: #103d2b;
}

.fs-admin-product-row small,
.fs-admin-product-row em {
  grid-column: 2;
  color: #7b6a5a;
  font-style: normal;
}

.fs-admin-empty,
.fs-admin-note {
  padding: 14px;
  border-radius: 16px;
  background: #fff5df;
  color: #806345;
  font-weight: 700;
}

.fs-admin-note.success {
  background: #e7f7e9;
  color: #16733b;
}

.fs-admin-assets {
  margin-top: 20px;
  border-top: 1px solid rgba(18, 61, 42, .12);
  padding-top: 18px;
}

.fs-admin-asset-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.fs-admin-asset-summary strong,
.fs-admin-asset-summary span {
  border-radius: 999px;
  padding: 8px 12px;
  background: #edf7ef;
  color: #103d2b;
}

.fs-admin-collection-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.fs-admin-collection-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fffaf3;
  border: 1px solid rgba(18, 61, 42, .12);
}

.fs-admin-collection-row strong,
.fs-admin-collection-row small {
  display: block;
}

.fs-admin-collection-row small {
  color: #7b6a5a;
}

.fs-admin-public-preview .fs-card {
  pointer-events: none;
}

.fs-resource-image-mockup {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: #f3eadb;
  border: 1px solid rgba(18, 61, 42, .12);
}

.fs-resource-image-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fs-resource-image-mockup span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(16, 61, 43, .86);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.fs-product-detail {
  padding: 42px 0 70px;
}

.fs-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.fs-product-detail-media {
  min-height: 460px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 173, 51, .28), transparent 18rem),
    linear-gradient(135deg, #fff9ed, #e6f3e5);
  border: 1px solid rgba(18, 61, 42, .12);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(18, 61, 42, .12);
}

.fs-product-detail-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-product-detail-placeholder {
  width: min(420px, 82%);
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(18, 61, 42, .12);
}

.fs-product-detail-placeholder img {
  width: min(220px, 70%);
}

.fs-product-detail-placeholder span {
  color: #8a745f;
  font-weight: 900;
}

.fs-product-detail-copy h1 {
  margin: 0;
  font-family: var(--fs-serif);
  font-size: clamp(42px, 5vw, 82px);
  line-height: .92;
  color: #103d2b;
}

.fs-product-detail-price {
  margin: 20px 0;
  padding: 18px;
  border-radius: 22px;
  background: #fff5df;
  border: 1px solid rgba(201, 126, 0, .18);
}

.fs-product-detail-price strong,
.fs-product-detail-price span {
  display: block;
}

.fs-product-detail-price strong {
  color: #103d2b;
  font-size: 24px;
}

.fs-product-detail-price span {
  color: #7b6a5a;
  margin-top: 4px;
}

.fs-variant-box {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(18, 61, 42, .12);
  border-radius: 24px;
  background: rgba(255, 250, 243, .82);
}

.fs-variant-label {
  display: block;
  margin-bottom: 10px;
  color: #103d2b;
  font-weight: 900;
}

.fs-variant-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fs-variant-button {
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(18, 61, 42, .14);
  background: #fffdf8;
  color: #103d2b;
  text-align: left;
  cursor: pointer;
}

.fs-variant-button.active {
  border-color: rgba(255, 151, 0, .65);
  box-shadow: inset 0 0 0 2px rgba(255, 151, 0, .2);
}

.fs-variant-button strong,
.fs-variant-button small {
  display: block;
}

.fs-variant-button small {
  margin-top: 4px;
  color: #7b6a5a;
  font-weight: 800;
}

.fs-cart-image {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--fs-mint);
}

.fs-cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-product-detail-copy details {
  margin-top: 12px;
  border: 1px solid rgba(18, 61, 42, .12);
  border-radius: 18px;
  background: #fffaf3;
  padding: 14px 16px;
}

.fs-product-detail-copy summary {
  cursor: pointer;
  color: #103d2b;
  font-weight: 900;
}

.fs-product-detail-copy details p {
  color: #735f4b;
}

/* Product-first store direction */
.fs-store-hero-pro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  padding: clamp(32px, 5vw, 72px) 0 22px;
}

.fs-store-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fs-store-hero-copy h1 {
  margin: 0;
  max-width: 820px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: .9;
  letter-spacing: -.055em;
  color: var(--fs-green);
}

.fs-store-hero-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--fs-muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
}

.fs-store-hero-board {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(21, 75, 55, .13);
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 151, 0, .28), transparent 24rem),
    radial-gradient(circle at 8% 86%, rgba(35, 104, 72, .22), transparent 20rem),
    linear-gradient(135deg, #f7ead7 0%, #edf8ee 100%);
  box-shadow: 0 34px 90px rgba(21, 75, 55, .16);
}

.fs-store-hero-board.has-config-image {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 500px;
  padding: 0;
  background: var(--fs-paper);
}

.fs-store-hero-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.fs-board-product {
  position: absolute;
  left: 10%;
  top: 12%;
  width: min(430px, 72%);
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(21, 75, 55, .13);
  border-radius: 30px;
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 28px 70px rgba(21, 75, 55, .18);
  transform: rotate(-2deg);
}

.fs-board-product img {
  width: 138px;
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.fs-board-product strong {
  display: block;
  max-width: 320px;
  color: var(--fs-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 42px;
  line-height: .94;
  letter-spacing: -.045em;
}

.fs-board-product > span {
  display: inline-flex;
  margin: 12px 0 18px;
  color: var(--fs-muted);
  font-weight: 900;
}

.fs-board-product i {
  display: block;
  height: 13px;
  margin-top: 12px;
  border-radius: 999px;
  background: #e4f0e6;
}

.fs-board-product i:nth-of-type(2) {
  width: 78%;
}

.fs-board-product i:nth-of-type(3) {
  width: 58%;
  background: #fff0c9;
}

.fs-board-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(21, 75, 55, .14);
  box-shadow: 0 18px 42px rgba(21, 75, 55, .12);
  color: var(--fs-green);
  font-weight: 900;
  text-decoration: none;
}

.fs-board-chip.rutinas {
  right: 8%;
  top: 18%;
}

.fs-board-chip.organizacion {
  right: 10%;
  bottom: 22%;
}

.fs-board-chip.albumes {
  left: 16%;
  bottom: 8%;
}

.fs-store-slides {
  padding: 8px 0 26px;
}

.fs-home-slide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fs-home-slide {
  min-height: 196px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(21, 75, 55, .13);
  border-radius: 28px;
  background: rgba(255, 253, 248, .88);
  color: var(--fs-green);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(21, 75, 55, .08);
}

.fs-home-slide.active {
  background: linear-gradient(135deg, #123f2d, #236848);
  color: #fff;
}

.fs-home-slide.active small,
.fs-home-slide.active span {
  color: rgba(255, 255, 255, .78);
}

.fs-slide-copy {
  display: grid;
  gap: 8px;
}

.fs-slide-copy span {
  color: #a15c00;
  font-weight: 900;
}

.fs-slide-copy strong {
  font-size: 25px;
  line-height: 1.02;
}

.fs-slide-copy small {
  color: var(--fs-muted);
  font-size: 15px;
  line-height: 1.35;
}

.fs-slide-mock {
  aspect-ratio: 1 / 1.12;
  display: grid;
  gap: 8px;
  align-content: end;
  padding: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 151, 0, .34), transparent 38%),
    #fff8ec;
}

.fs-slide-mock i {
  height: 12px;
  border-radius: 999px;
  background: rgba(21, 75, 55, .18);
}

.fs-slide-mock i:nth-child(2) {
  width: 74%;
}

.fs-slide-mock i:nth-child(3) {
  width: 52%;
}

.fs-store-category-strip {
  padding: 32px 0 20px;
}

.fs-store-feature-row {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 10px 0 clamp(34px, 5vw, 66px);
}

.fs-store-feature-row article {
  padding: 24px;
  border: 1px solid var(--fs-line);
  border-radius: 30px;
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 14px 34px rgba(21, 75, 55, .07);
}

.fs-store-feature-row h2 {
  margin: 0 0 10px;
  color: var(--fs-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: .98;
}

.fs-store-feature-row p {
  color: var(--fs-muted);
  line-height: 1.5;
}

.fs-category-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
  padding: clamp(34px, 5vw, 72px) 0 26px;
}

.fs-category-hero h1 {
  margin: 14px 0 0;
  max-width: 820px;
  color: var(--fs-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(48px, 6vw, 92px);
  line-height: .9;
  letter-spacing: -.055em;
}

.fs-category-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--fs-muted);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
}

.fs-back-link,
.fs-category-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-right: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--fs-line);
  color: var(--fs-green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.fs-category-label {
  background: #fff1cf;
  color: #9b5c00;
}

.fs-category-visual {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(21, 75, 55, .13);
  border-radius: 36px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 151, 0, .24), transparent 16rem),
    linear-gradient(135deg, #e7f5ea, #fff2d8);
  box-shadow: 0 24px 70px rgba(21, 75, 55, .12);
  overflow: hidden;
}

.fs-category-visual strong {
  display: block;
  max-width: 360px;
  color: var(--fs-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .96;
  letter-spacing: -.045em;
}

.fs-category-visual p {
  max-width: 380px;
  color: var(--fs-muted);
}

.fs-category-mock {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: min(340px, 62%);
  aspect-ratio: .82 / 1;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 253, 248, .96);
  border: 1px solid rgba(21, 75, 55, .12);
  box-shadow: 0 30px 70px rgba(21, 75, 55, .16);
  transform: rotate(4deg);
}

.fs-category-mock i {
  height: 14px;
  border-radius: 999px;
  background: #e5f1e8;
}

.fs-category-mock i:nth-child(2) {
  width: 76%;
}

.fs-category-mock i:nth-child(3) {
  width: 58%;
  background: #fff0c9;
}

.fs-category-mock span {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: var(--fs-orange);
}

.fs-store-faq details[open] summary::after,
.fs-faq details[open] summary::after {
  content: "−";
}

@media (max-width: 1180px) {
  .fs-store-hero-pro,
  .fs-category-hero {
    grid-template-columns: 1fr;
  }

  .fs-store-hero-board {
    min-height: 430px;
  }

  .fs-home-slide-grid,
  .fs-store-feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .fs-store-hero-pro,
  .fs-category-hero {
    padding-top: 28px;
  }

  .fs-store-hero-copy h1,
  .fs-category-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .fs-store-hero-board {
    min-height: 360px;
    border-radius: 30px;
  }

  .fs-board-product {
    left: 5%;
    top: 8%;
    width: 78%;
    min-height: 250px;
    padding: 20px;
  }

  .fs-board-product img {
    width: 112px;
    margin-bottom: 18px;
  }

  .fs-board-product strong {
    font-size: 32px;
  }

  .fs-board-chip {
    min-height: 44px;
    padding: 9px 13px;
    font-size: 13px;
  }

  .fs-home-slide {
    grid-template-columns: 1fr;
  }

  .fs-slide-mock {
    display: none;
  }

  .fs-category-visual {
    min-height: 310px;
  }

  .fs-category-mock {
    width: 54%;
    padding: 18px;
  }

  .fs-store-feature-row {
    width: min(100% - 28px, 760px);
  }
}

@media (max-width: 980px) {
  .fs-admin-shell {
    grid-template-columns: 1fr;
  }

  .fs-admin-sidebar {
    position: static;
  }

  .fs-admin-auth-panel,
  .fs-admin-grid,
  .fs-admin-grid.compact,
  .fs-admin-filters,
  .fs-admin-form.inline,
  .fs-product-detail-grid {
    grid-template-columns: 1fr;
  }

  .fs-product-detail-media {
    min-height: 320px;
  }

  .fs-variant-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fs-admin-shell {
    width: min(100% - 20px, 1480px);
    padding-top: 16px;
  }

  .fs-admin-header {
    display: grid;
  }

  .fs-admin-stats,
  .fs-admin-two {
    grid-template-columns: 1fr 1fr;
  }

  .fs-admin-panel,
  .fs-admin-sidebar {
    border-radius: 22px;
    padding: 16px;
  }

  .fs-admin-header h1 {
    font-size: 34px;
  }
}

/* ==========================================================================
   Storefront renderer (store-page.js) — safe media & predictable layout
   ========================================================================== */

/* --- No-flash chrome shell --- */
.fs-topbar:empty { display: none; }
.fs-nav { top: 0; }
body.fs-has-topbar .fs-nav { top: 34px; }
body.fs-page { padding-top: 80px; }
body.fs-page.fs-has-topbar { padding-top: 114px; }
body.fs-page { --fs-default-section-padding: clamp(32px, 3.4vw, 48px); }
body.fs-page[data-section-spacing="compact"] { --fs-default-section-padding: clamp(16px, 2.6vw, 32px); }
body.fs-page[data-section-spacing="spacious"] { --fs-default-section-padding: clamp(44px, 4.6vw, 64px); }

/* --- Shared safe image wrapper --- */
.fs-media {
  position: relative;
  overflow: hidden;
  background: var(--fs-mint);
}
.fs-media > img,
.fs-media > picture,
.fs-media > picture > img {
  display: block;
  width: 100%;
  height: 100%;
}
.fs-media > img,
.fs-media > picture > img {
  object-fit: cover;
  object-position: center;
}
.fs-media[data-ratio="1-1"] { aspect-ratio: 1 / 1; }
.fs-media[data-ratio="4-3"] { aspect-ratio: 4 / 3; }
.fs-media[data-ratio="3-4"] { aspect-ratio: 3 / 4; }
.fs-media[data-ratio="16-9"] { aspect-ratio: 16 / 9; }
.fs-media[data-ratio="3-2"] { aspect-ratio: 3 / 2; }
.fs-media[data-ratio="2-3"] { aspect-ratio: 2 / 3; }
.fs-media[data-media-size="compact"] { max-height: 360px; }
.fs-media[data-media-size="standard"] { max-height: 480px; }
.fs-media[data-media-size="large"] { max-height: 600px; }
.fs-media > img[data-fit="contain"],
.fs-media > picture > img[data-fit="contain"] { object-fit: contain; }
.fs-media > img[data-focal="top"], .fs-media > picture > img[data-focal="top"] { object-position: top center; }
.fs-media > img[data-focal="bottom"], .fs-media > picture > img[data-focal="bottom"] { object-position: bottom center; }
.fs-media > img[data-focal="left"], .fs-media > picture > img[data-focal="left"] { object-position: left center; }
.fs-media > img[data-focal="right"], .fs-media > picture > img[data-focal="right"] { object-position: right center; }
.fs-media > img[data-focal="top-left"], .fs-media > picture > img[data-focal="top-left"] { object-position: left top; }
.fs-media > img[data-focal="top-right"], .fs-media > picture > img[data-focal="top-right"] { object-position: right top; }
.fs-media > img[data-focal="bottom-left"], .fs-media > picture > img[data-focal="bottom-left"] { object-position: left bottom; }
.fs-media > img[data-focal="bottom-right"], .fs-media > picture > img[data-focal="bottom-right"] { object-position: right bottom; }

/* --- Hero: real 50/50, bounded height --- */
.fs-store-hero-pro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px) 0;
}
.fs-store-hero--left .fs-store-hero-copy { order: 2; }
.fs-store-hero--left .fs-store-hero-board { order: 1; }

.fs-store-hero-board.has-config-image {
  display: block;
  height: clamp(440px, 56vh, 600px);
  max-height: 600px;
  min-height: 0;
  padding: 0;
  border-radius: 32px;
  overflow: hidden;
  background: var(--fs-mint);
  border: 1px solid var(--fs-line);
  box-shadow: var(--fs-shadow);
}
.fs-store-hero-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fs-store-hero-board > picture { display: block; width: 100%; height: 100%; }
.fs-store-hero-board > picture > .fs-store-hero-image { width: 100%; height: 100%; }
.fs-store-hero-image[data-fit="contain"] { object-fit: contain; }
.fs-store-hero-image[data-focal="top"] { object-position: top center; }
.fs-store-hero-image[data-focal="bottom"] { object-position: bottom center; }
.fs-store-hero-image[data-focal="left"] { object-position: left center; }
.fs-store-hero-image[data-focal="right"] { object-position: right center; }
.fs-store-hero-image[data-focal="top-left"] { object-position: left top; }
.fs-store-hero-image[data-focal="top-right"] { object-position: right top; }
.fs-store-hero-image[data-focal="bottom-left"] { object-position: left bottom; }
.fs-store-hero-image[data-focal="bottom-right"] { object-position: right bottom; }

.fs-store-hero--background {
  position: relative;
  display: block;
  min-height: clamp(440px, 56vh, 600px);
  border-radius: 32px;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--fs-shadow);
}
.fs-store-hero--background .fs-store-hero-board.has-config-image {
  position: absolute;
  inset: 0;
  height: 100%;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.fs-store-hero--background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 75, 55, 0.86), rgba(21, 75, 55, 0.34));
}
.fs-store-hero--background .fs-store-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(28px, 5vw, 64px);
}
.fs-store-hero--background .fs-store-hero-copy h1,
.fs-store-hero--background .fs-store-hero-copy p { color: #fff; }

/* --- text_image / split_feature: 50/50 --- */
.fs-text-image {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.fs-text-image--left .fs-text-image-copy { order: 2; }
.fs-text-image--left .fs-text-image-media { order: 1; }
.fs-text-image-media {
  aspect-ratio: 4 / 3;
  max-height: 520px;
  border-radius: 28px;
}
.fs-text-image-media[data-media-size="large"] { max-height: 560px; }
.fs-text-image-copy h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fs-green);
}
.fs-text-image-copy p {
  margin: 18px 0 0;
  color: var(--fs-muted);
  font-size: 17px;
  line-height: 1.55;
}
.fs-text-image-copy .fs-actions { margin-top: 22px; }

/* --- category grid & collection cards --- */
.fs-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fs-cat-media {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}
.fs-cat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--fs-mint);
  color: var(--fs-green);
  font-weight: 900;
  font-size: 20px;
}
.fs-category-card { min-height: 0; }
.fs-category-card .fs-card-copy { padding: 12px 4px 2px; }
.fs-category-card h3 {
  margin: 0;
  font-size: 19px;
  color: var(--fs-green);
}
.fs-category-card p {
  margin: 6px 0 0;
  color: var(--fs-muted);
  line-height: 1.4;
}

/* --- product cards --- */
.fs-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fs-card-media {
  aspect-ratio: 4 / 3;
  max-height: 420px;
  background: #fff;
}
.fs-card-media > img[data-fit="contain"] { background: var(--fs-paper); }
.fs-product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.fs-product-card .fs-card-copy { padding: 18px 20px 4px; }
.fs-product-card .fs-card-copy h3 {
  margin: 0;
  font-size: 20px;
  color: var(--fs-green);
}
.fs-product-card .fs-card-copy p {
  margin: 8px 0 0;
  color: var(--fs-muted);
  line-height: 1.45;
}
.fs-product-card .fs-card-footer { padding: 14px 20px 20px; }

/* --- editorial --- */
.fs-editorial-media {
  aspect-ratio: 16 / 9;
  max-height: 480px;
  border-radius: 28px;
}
.fs-editorial { max-width: 820px; }
.fs-editorial p {
  margin: 18px 0 0;
  color: var(--fs-muted);
  font-size: 17px;
  line-height: 1.6;
}

/* --- banner / image_banner --- */
.fs-banner,
.fs-image-banner {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--fs-line);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 44px rgba(21, 75, 55, 0.08);
}
.fs-banner-media {
  aspect-ratio: 21 / 9;
  max-height: 460px;
}
.fs-banner-copy { padding: clamp(22px, 3vw, 36px); }
.fs-banner-copy h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fs-green);
}
.fs-banner-copy p {
  margin: 14px 0 0;
  color: var(--fs-muted);
  line-height: 1.55;
}
.fs-banner-copy .fs-actions { margin-top: 20px; }
.fs-pro-banner {
  background: linear-gradient(135deg, #123f2d, #236848);
  border: 0;
}
.fs-pro-banner .fs-banner-copy h2 { color: #fff; }
.fs-pro-banner .fs-banner-copy p { color: rgba(255, 255, 255, 0.8); }

/* --- mosaic --- */
.fs-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.fs-mosaic-cell {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  background: var(--fs-mint);
}
.fs-mosaic-media {
  aspect-ratio: 4 / 3;
  max-height: 380px;
}
.fs-mosaic-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(21, 75, 55, 0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

/* --- trust bar / how it works / custom content --- */
.fs-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.fs-trust-bar span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--fs-line);
  background: #fff;
  color: var(--fs-green);
  font-weight: 900;
  font-size: 14px;
}
.fs-step-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--fs-orange);
  color: #fff;
  font-weight: 900;
}
.fs-custom-content { max-width: 760px; }
.fs-custom-content p {
  color: var(--fs-muted);
  line-height: 1.6;
}

/* --- Product configurator (store-page.js → window.StoreConfigurator) --- */
.fs-config-option { margin-bottom: 18px; }
.fs-config-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  color: var(--fs-green);
  font-size: 15px;
}
.fs-config-values { display: flex; flex-wrap: wrap; gap: 10px; }
.fs-config-value {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--fs-line);
  background: #fff;
  color: var(--fs-text);
  font-weight: 800;
  cursor: pointer;
}
.fs-config-value.is-selected {
  background: var(--fs-green);
  color: var(--fs-button-text);
  border-color: var(--fs-green);
}
.fs-config-input {
  width: 100%;
  max-width: 220px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--fs-line);
  background: #fff;
  color: var(--fs-text);
  font-weight: 800;
}
.fs-config-help { margin: 8px 0 0; color: var(--fs-muted); font-size: 13px; }
.fs-config-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--fs-mint);
  color: var(--fs-green);
  font-weight: 900;
}

/* --- Storefront renderer responsive --- */
#store-main.fs-store-renderer .fs-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}
#store-main.fs-store-renderer .fs-section-inner {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  padding: var(--fs-default-section-padding) 0;
}
#store-main.fs-store-renderer .fs-container { width: min(100%, 1440px); }
#store-main.fs-store-renderer .fs-section[data-section-padding="theme"] > .fs-section-inner { padding-block: var(--fs-default-section-padding); }
#store-main.fs-store-renderer .fs-section[data-section-padding="none"] > .fs-section-inner { padding-block: 0; }
#store-main.fs-store-renderer .fs-section[data-section-padding="xs"] > .fs-section-inner { padding-block: clamp(16px, 2vw, 24px); }
#store-main.fs-store-renderer .fs-section[data-section-padding="sm"] > .fs-section-inner { padding-block: clamp(24px, 2.6vw, 32px); }
#store-main.fs-store-renderer .fs-section[data-section-padding="md"] > .fs-section-inner { padding-block: clamp(32px, 3.4vw, 48px); }
#store-main.fs-store-renderer .fs-section[data-section-padding="lg"] > .fs-section-inner { padding-block: clamp(44px, 4.6vw, 64px); }

#store-main.fs-store-renderer .fs-section[data-section-background="background"] { background: var(--fs-cream); }
#store-main.fs-store-renderer .fs-section[data-section-background="surface"] { background: var(--fs-paper); }
#store-main.fs-store-renderer .fs-section[data-section-background="warm"] { background: var(--fs-soft); }
#store-main.fs-store-renderer .fs-section[data-section-background="brand-soft"] { background: var(--fs-mint); }
#store-main.fs-store-renderer .fs-section[data-section-background="brand"] { background: var(--fs-green); color: #fff; }
#store-main.fs-store-renderer .fs-section[data-section-background="brand"] .fs-section-title h2,
#store-main.fs-store-renderer .fs-section[data-section-background="brand"] .fs-section-title p,
#store-main.fs-store-renderer .fs-section[data-section-background="brand"] .fs-text-image-copy h2,
#store-main.fs-store-renderer .fs-section[data-section-background="brand"] .fs-text-image-copy p { color: #fff; }

#store-main.fs-store-renderer .fs-section[data-container-width="full"] > .fs-section-inner { width: 100%; max-width: none; padding-inline: clamp(16px, 4vw, 64px); }
#store-main.fs-store-renderer .fs-section[data-container-width="wide"] > .fs-section-inner { width: min(100% - 32px, 1760px); }
#store-main.fs-store-renderer .fs-section[data-container-width="contained"] > .fs-section-inner { width: min(100% - 48px, 1440px); }
#store-main.fs-store-renderer .fs-section[data-container-width="narrow"] > .fs-section-inner { width: min(100% - 48px, 960px); }
#store-main.fs-store-renderer .fs-section[data-edge-to-edge="true"] > .fs-section-inner { width: 100%; max-width: none; padding-inline: 0; }

#store-main.fs-store-renderer .fs-section:not(:last-child)[data-section-gap="none"] { margin-bottom: 0; }
#store-main.fs-store-renderer .fs-section:not(:last-child)[data-section-gap="xs"] { margin-bottom: 8px; }
#store-main.fs-store-renderer .fs-section:not(:last-child)[data-section-gap="sm"] { margin-bottom: 16px; }
#store-main.fs-store-renderer .fs-section:not(:last-child)[data-section-gap="md"] { margin-bottom: 24px; }
#store-main.fs-store-renderer .fs-section[data-stack-gap="none"] { --fs-stack-gap: 0px; }
#store-main.fs-store-renderer .fs-section[data-stack-gap="xs"] { --fs-stack-gap: 8px; }
#store-main.fs-store-renderer .fs-section[data-stack-gap="sm"] { --fs-stack-gap: 16px; }
#store-main.fs-store-renderer .fs-section[data-stack-gap="md"] { --fs-stack-gap: 24px; }
#store-main.fs-store-renderer .fs-section > .fs-section-inner > .fs-section-title { margin-bottom: var(--fs-stack-gap, 16px); }

#store-main.fs-store-renderer .fs-section[data-media-width="40"] .fs-text-image { grid-template-columns: minmax(0, 40fr) minmax(0, 60fr); }
#store-main.fs-store-renderer .fs-section[data-media-width="50"] .fs-text-image { grid-template-columns: minmax(0, 50fr) minmax(0, 50fr); }
#store-main.fs-store-renderer .fs-section[data-media-width="60"] .fs-text-image { grid-template-columns: minmax(0, 60fr) minmax(0, 40fr); }
#store-main.fs-store-renderer .fs-section[data-vertical-align="start"] .fs-text-image { align-items: start; }

#store-main.fs-store-renderer .fs-category-card.fs-card-chrome-none {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
#store-main.fs-store-renderer .fs-category-card.fs-card-chrome-none:hover { transform: none; box-shadow: none; }
#store-main.fs-store-renderer .fs-card.fs-card-chrome-clean { background: transparent; border-color: transparent; box-shadow: none; }
#store-main.fs-store-renderer .fs-card.fs-card-chrome-bordered { box-shadow: none; }
#store-main.fs-store-renderer .fs-card.fs-card-chrome-elevated { box-shadow: 0 18px 44px rgba(21, 75, 55, 0.1); }
#store-main.fs-store-renderer .fs-section[data-card-chrome="none"] .fs-card { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
#store-main.fs-store-renderer .fs-section[data-card-chrome="none"] .fs-card:hover { transform: none; box-shadow: none; }

/* The renderer owns spacing for configurable sections. These overrides prevent
   legacy component padding from being added on top of sectionPadding. */
#store-main.fs-store-renderer .fs-section .fs-tight-section,
#store-main.fs-store-renderer .fs-section .fs-store-hero-pro { padding-block: 0; }
#store-main.fs-store-renderer .fs-section .fs-text-image,
#store-main.fs-store-renderer .fs-section .fs-editorial,
#store-main.fs-store-renderer .fs-section .fs-banner,
#store-main.fs-store-renderer .fs-section .fs-image-banner,
#store-main.fs-store-renderer .fs-section .fs-mosaic { margin-block: 0; }

@media (max-width: 1180px) {
  .fs-store-hero-pro,
  .fs-text-image { grid-template-columns: 1fr; }
  #store-main.fs-store-renderer .fs-section[data-media-width="40"] .fs-text-image,
  #store-main.fs-store-renderer .fs-section[data-media-width="50"] .fs-text-image,
  #store-main.fs-store-renderer .fs-section[data-media-width="60"] .fs-text-image { grid-template-columns: 1fr; }
  .fs-store-hero--left .fs-store-hero-copy { order: 0; }
  .fs-store-hero--left .fs-store-hero-board { order: 0; }
  .fs-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fs-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fs-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fs-store-hero-board.has-config-image { height: clamp(360px, 44vw, 520px); }
}

@media (max-width: 980px) {
  body.fs-page { padding-top: 70px; }
  body.fs-page.fs-has-topbar { padding-top: 102px; }
  .fs-nav { min-height: 68px; }
}

@media (max-width: 640px) {
  #store-main.fs-store-renderer .fs-section-inner { width: min(100% - 32px, 1440px); padding-block: 28px; }
  #store-main.fs-store-renderer .fs-section[data-section-padding="none"] > .fs-section-inner { padding-block: 0; }
  #store-main.fs-store-renderer .fs-section[data-section-padding="xs"] > .fs-section-inner { padding-block: 12px; }
  #store-main.fs-store-renderer .fs-section[data-section-padding="sm"] > .fs-section-inner { padding-block: 18px; }
  #store-main.fs-store-renderer .fs-section[data-section-padding="md"] > .fs-section-inner { padding-block: 28px; }
  #store-main.fs-store-renderer .fs-section[data-section-padding="lg"] > .fs-section-inner { padding-block: 38px; }
  #store-main.fs-store-renderer .fs-section[data-container-width="full"] > .fs-section-inner { padding-inline: 16px; }
  #store-main.fs-store-renderer .fs-section[data-edge-to-edge="true"] > .fs-section-inner { padding-inline: 0; }
  .fs-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fs-product-grid { grid-template-columns: 1fr; }
  .fs-mosaic { grid-template-columns: 1fr; }
  .fs-store-hero-board.has-config-image {
    height: clamp(280px, 62vw, 380px);
    border-radius: 24px;
  }
  .fs-store-hero--background { min-height: 420px; }
  .fs-text-image-media,
  .fs-editorial-media { max-height: 340px; }
  .fs-banner-media { max-height: 300px; }
}

/* ==========================================================================
   Global typography scale correction — contained, data-driven
   ========================================================================== */
:root {
  --fs-h1: clamp(34px, 4.5vw, 48px);
  --fs-h2: clamp(26px, 3vw, 34px);
  --fs-h3: clamp(19px, 1.6vw, 24px);
  --fs-body: clamp(16px, 1.4vw, 18px);
}
body[data-heading-scale="small"] { --fs-h1: clamp(32px, 4vw, 42px); }
body[data-heading-scale="large"] { --fs-h1: clamp(38px, 5vw, 52px); }
body[data-section-title-scale="small"] { --fs-h2: clamp(24px, 2.6vw, 30px); }
body[data-section-title-scale="large"] { --fs-h2: clamp(28px, 3.2vw, 38px); }
body[data-card-title-scale="small"] { --fs-h3: clamp(18px, 1.4vw, 22px); }
body[data-card-title-scale="large"] { --fs-h3: clamp(20px, 1.8vw, 26px); }
body[data-body-scale="small"] { --fs-body: clamp(15px, 1.2vw, 17px); }
body[data-body-scale="large"] { --fs-body: clamp(17px, 1.6vw, 19px); }

.fs-store-hero-copy h1,
.fs-category-hero h1,
.fs-hero h1,
.fs-page-title h1 {
  font-size: var(--fs-h1);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.fs-section-title h2,
.fs-section-title.compact h2,
.fs-feature h2,
.fs-text-image-copy h2,
.fs-banner-copy h2,
.fs-image-banner .fs-banner-copy h2 {
  font-size: var(--fs-h2);
  line-height: 1.05;
}

.fs-card h3,
.fs-category-card h3,
.fs-product-card .fs-card-copy h3 {
  font-size: var(--fs-h3);
  line-height: 1.15;
}

.fs-lead,
.fs-section-title p,
.fs-feature p,
.fs-page-title p,
.fs-text-image-copy p,
.fs-editorial p,
.fs-banner-copy p {
  font-size: var(--fs-body);
}

@media (max-width: 640px) {
  .fs-store-hero-copy h1,
  .fs-category-hero h1,
  .fs-hero h1,
  .fs-page-title h1 { font-size: clamp(32px, 9vw, 40px); }
  .fs-section-title h2,
  .fs-section-title.compact h2,
  .fs-feature h2,
  .fs-text-image-copy h2,
  .fs-banner-copy h2,
  .fs-image-banner .fs-banner-copy h2 { font-size: clamp(24px, 6.5vw, 30px); }
  .fs-card h3,
  .fs-category-card h3,
  .fs-product-card .fs-card-copy h3 { font-size: clamp(18px, 4.5vw, 22px); }
  .fs-lead,
  .fs-section-title p,
  .fs-feature p,
  .fs-page-title p,
  .fs-text-image-copy p,
  .fs-editorial p,
  .fs-banner-copy p { font-size: clamp(15px, 3.8vw, 17px); }
}

/* Hero subtitle/lead — contained, on every hero (global + page heroes). */
.fs-store-hero-copy p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.5;
}

