:root {
  --cream: #fdf6f0;
  --paper: #fffaf6;
  --sand: #f6e4d7;
  --brown: #6f4032;
  --dark: #341e17;
  --terra: #e8947a;
  --border: #e8c4ac;
  --green: #dff5de;
  --gb: #94c98d;
  --shadow: 0 22px 60px rgba(111, 64, 50, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Jost, sans-serif;
  color: var(--brown);
  background: linear-gradient(180deg, var(--cream), #fff 45%, var(--sand));
  overflow-x: hidden;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 34px));
  margin: auto;
}
.nav {
  position: sticky;
  top: 12px;
  z-index: 30;
  width: min(1080px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(253, 246, 240, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(111, 64, 50, 0.08);
}
.brand {
  font:
    600 19px "Playfair Display",
    serif;
  color: var(--dark);
}
.navlinks {
  display: flex;
  gap: 16px;
  align-items: center;
}
.navlinks a {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn.secondary {
  background: #fff;
  color: var(--brown);
  border: 1px solid var(--border);
}
.hero {
  padding: 68px 0 46px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(232, 148, 122, 0.35);
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
  font-weight: 600;
}
h1 {
  font-size: clamp(43px, 7vw, 74px);
  line-height: 0.97;
  letter-spacing: -0.05em;
  margin: 18px 0 0;
}
h1 em {
  color: var(--terra);
}
h2 {
  font-size: clamp(31px, 5vw, 49px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 14px 0 0;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: #8e5b48;
  margin: 18px 0 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-name-field {
  max-width: 650px;
  margin-top: 20px;
}
.hero-name-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}
.hero-name-control {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
}
.hero-name-control input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  outline: none;
  background: #fff;
  color: var(--dark);
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(111, 64, 50, 0.06);
}
.hero-name-control input:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 4px rgba(232, 148, 122, 0.18);
}
.hero-name-field small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
}
.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 17px;
}
.pill {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}
.visual {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-inside-box {
  padding: 28px;
  background: linear-gradient(145deg, #fffaf6, #fff1e8);
}
.hero-inside-box .inside-box {
  width: 100%;
}
.boxart {
  min-height: 390px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(232, 148, 122, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 40%,
      rgba(148, 201, 141, 0.26),
      transparent 32%
    ),
    linear-gradient(145deg, #fff7f0, #f6e4d7);
}
.mock {
  width: min(350px, 100%);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}
.mock small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mock strong {
  display: block;
  margin-top: 10px;
  font:
    600 38px "Playfair Display",
    serif;
  color: var(--dark);
}
.mock .line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.section {
  padding: 62px 0;
  border-top: 1px solid rgba(232, 196, 172, 0.65);
}
.center {
  text-align: center;
}
.center .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.proof {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
}
.stars {
  color: var(--terra);
  font-weight: 900;
}
.proof p {
  line-height: 1.6;
  color: #8e5b48;
}
.proof strong {
  color: var(--dark);
}
.builder {
  background: linear-gradient(180deg, #fffaf5, #f6e4d7);
}
.builder-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
  margin-top: 28px;
}
.panel,
.cart {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}
.cart {
  position: sticky;
  top: 92px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.step {
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: #8e5b48;
  font-size: 12px;
  font-weight: 900;
}
.step.active {
  background: #fff1e8;
  border-color: var(--brown);
  color: var(--brown);
}
.screen {
  display: none;
}
.screen.active {
  display: block;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.field input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: var(--dark);
}
.help {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--paper);
  line-height: 1.55;
  color: #8e5b48;
}
.category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 20px 0 10px;
}
.category span {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.items {
  display: grid;
  gap: 9px;
}
.item {
  display: grid;
  grid-template-columns: 52px 1fr 126px 96px;
  gap: 10px;
  align-items: center;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.thumbwrap {
  position: relative;
}
.thumb {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.info {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--brown);
  color: #fff;
  font:
    700 14px Georgia,
    serif;
  box-shadow: 0 4px 12px rgba(52, 30, 23, 0.22);
}
.item h4 {
  margin: 0;
  font-size: 15px;
  color: var(--dark);
}
.meta {
  font-size: 12px;
  color: #8e5b48;
}
.price {
  font-size: 13px;
  font-weight: 900;
  color: var(--terra);
}
.mode {
  height: 38px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
  color: var(--brown);
}
.monthly-note {
  grid-column: 3 / -1;
  margin: -2px 2px 1px;
  color: #315b2e;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
}
.qty {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.qty button {
  width: 31px;
  height: 31px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-weight: 900;
}
.qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
  color: var(--dark);
}
.actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}
.label {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff1e8;
  font-weight: 900;
}
.label span {
  display: block;
  margin-top: 4px;
  font:
    600 25px "Playfair Display",
    serif;
  color: var(--dark);
}
.delivery-mode-choice {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  color: var(--brown);
  font-size: 13px;
}
.delivery-mode-choice > strong {
  color: var(--dark);
  font-size: 14px;
}
.delivery-mode-choice label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 800;
}
.delivery-mode-choice input {
  accent-color: var(--brown);
}
.delivery-mode-choice span {
  color: #8e5b48;
  font-size: 12px;
  line-height: 1.4;
}
.cart-lines {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #8e5b48;
}
.cart-line strong {
  color: var(--dark);
}
.empty {
  margin-top: 14px;
  color: #8e5b48;
}
.total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.big {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 8px;
}
.big strong {
  font:
    600 38px "Playfair Display",
    serif;
  color: var(--dark);
}
.delivery {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--gb);
  border-radius: 17px;
  background: var(--green);
  color: #315b2e;
  font-size: 13px;
  line-height: 1.45;
}
.delivery-title,
.delivery-detail {
  display: block;
}
.delivery-title {
  font-size: 14px;
  font-weight: 900;
}
.delivery-detail {
  margin-top: 3px;
  font-weight: 700;
}
.delivery-progress {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(49, 91, 46, 0.16);
}
.delivery-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #4f8449;
  transition: width 0.3s ease;
}
.delivery.reached {
  border-color: #75a46e;
  background: #d8f1d4;
}
.delivery.reached .delivery-progress span {
  background: #315b2e;
}
.surprise {
  margin-top: 10px;
  padding: 12px;
  border: 1px dashed var(--terra);
  border-radius: 17px;
  background: #fff8f2;
  font-size: 13px;
  font-weight: 800;
}
.doseguide {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid var(--gb);
  border-radius: 20px;
  background: var(--green);
  color: #315b2e;
  font-size: 13px;
  line-height: 1.55;
}
.doseguide strong {
  display: block;
  margin-bottom: 5px;
  color: #244722;
}
.dose-line,
.dose-warning {
  display: block;
  margin-top: 8px;
}
.dose-warning {
  font-weight: 800;
}
.introduction-guide {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid #e6b26f;
  border-radius: 20px;
  background: #fff8e8;
  color: #795025;
  font-size: 13px;
  line-height: 1.55;
}
.introduction-guide strong {
  display: block;
  margin-bottom: 5px;
  color: #5d3818;
}
.mobile-guidance {
  display: none;
}
.mobile-guidance summary {
  position: relative;
  padding: 13px 42px 13px 14px;
  border: 1px solid var(--gb);
  border-radius: 16px;
  background: var(--green);
  color: #315b2e;
  cursor: pointer;
  list-style: none;
}
.mobile-guidance summary::-webkit-details-marker {
  display: none;
}
.mobile-guidance summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  color: #315b2e;
  font-size: 18px;
  font-weight: 800;
  line-height: 23px;
  text-align: center;
  transform: translateY(-50%);
}
.mobile-guidance[open] summary::after {
  content: "−";
}
.mobile-guidance summary strong,
.mobile-guidance summary span {
  display: block;
}
.mobile-guidance summary strong {
  margin-bottom: 2px;
  font-size: 13px;
}
.mobile-guidance summary span {
  font-size: 11px;
}
.mobile-guidance-body {
  padding: 4px 14px 10px;
  border: 1px solid var(--gb);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: #f5fff3;
  color: #315b2e;
  font-size: 12px;
  line-height: 1.45;
}
.mobile-guidance[open] summary {
  border-radius: 16px 16px 0 0;
}
.mobile-guidance-body p {
  margin: 10px 0 0;
}
.mobile-guidance-alert {
  font-weight: 800;
}
.beta {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff1e8;
  font-size: 13px;
  font-weight: 800;
}
.checkout-button {
  width: 100%;
  margin-top: 12px;
}
.checkout-button:disabled {
  cursor: wait;
  opacity: 0.7;
}
.checkout-feedback {
  min-height: 0;
  margin-top: 8px;
  color: #a43f35;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}
.floating-cart {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 250, 246, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(52, 30, 23, 0.22);
  color: var(--brown);
  text-align: left;
}
.floating-cart:hover {
  transform: translateY(-2px);
}
.float-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--brown);
  color: #fff;
  font-size: 21px;
}
.float-copy {
  flex: 1;
}
.float-copy small {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8e5b48;
}
.float-copy strong {
  display: block;
  margin-top: 2px;
  color: var(--dark);
  font-size: 15px;
}
.float-total {
  font:
    600 20px "Playfair Display",
    serif;
  color: var(--dark);
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(52, 30, 23, 0.42);
}
.drawer.open {
  display: block;
}
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(430px, 100%);
  padding: 24px;
  background: #fffaf5;
  box-shadow: -24px 0 70px rgba(52, 30, 23, 0.2);
  overflow: auto;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.drawer-head h3 {
  margin: 0;
}
.drawer-name {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff1e8;
  font-weight: 900;
}
.drawer-name span {
  display: block;
  margin-top: 3px;
  font:
    600 24px "Playfair Display",
    serif;
  color: var(--dark);
}
.drawer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-size: 20px;
}
.drawer-footer {
  position: sticky;
  bottom: -24px;
  margin: 20px -24px -24px;
  padding: 16px 24px 24px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0), #fffaf5 22%);
}
@media (max-width: 640px) {
  .floating-cart {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
  }
  .float-total {
    font-size: 18px;
  }
  .drawer-panel {
    width: 100%;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(52, 30, 23, 0.5);
}
.modal.open {
  display: flex;
}
.modalbox {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fffaf5;
  box-shadow: var(--shadow);
}
.close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-size: 20px;
}
.modalbox h3 {
  font-size: 31px;
}
.modalbox p {
  line-height: 1.7;
  color: #8e5b48;
}
.fact {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.fact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark);
}
.fact span {
  line-height: 1.55;
}
.product-composition {
  background: #fff8f1;
}
.fact-alert {
  border-color: #e6b26f;
  background: #fff8e8;
}
.footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 249, 244, 0.72);
  font-size: 13px;
  color: #8e5b48;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(320px, 1.4fr) auto;
  gap: 24px;
  align-items: center;
}
.footer-brand {
  display: grid;
  gap: 5px;
}
.footer-brand strong {
  font-family: "Playfair Display", serif;
  color: var(--dark);
  font-size: 20px;
}
.footer-brand span,
.footer-meta small {
  line-height: 1.45;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}
.footer-links a {
  color: var(--brown);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(111, 64, 50, 0.28);
  text-underline-offset: 4px;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--dark);
  text-decoration-color: currentColor;
}
.footer-meta {
  display: grid;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}
.footer-meta small {
  color: #9b6c5a;
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-meta {
    text-align: center;
    white-space: normal;
  }
}
@media (max-width: 980px) {
  .hero-grid,
  .builder-grid {
    grid-template-columns: 1fr;
  }
  .cart {
    position: relative;
    top: 0;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .item {
    grid-template-columns: 52px 1fr;
  }
  .mode,
  .qty {
    grid-column: 2;
  }
  .item .monthly-note {
    grid-column: 2;
    margin-top: 0;
  }
  .qty {
    justify-content: flex-start;
  }
  .navlinks a:not(.btn) {
    display: none;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }
  .hero {
    padding-top: 42px;
  }
  h1 {
    font-size: 41px;
  }
  .lead {
    font-size: 15px;
  }
  .btn {
    width: 100%;
  }
  .hero-actions,
  .actions {
    flex-direction: column;
  }
  .hero-name-control {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .panel,
  .cart {
    padding: 16px;
    border-radius: 24px;
  }
  .screen h2 {
    margin-bottom: 8px;
    font-size: 27px;
  }
  .help {
    margin: 8px 0 10px;
    padding: 10px 12px;
    border-radius: 15px;
    font-size: 13px;
  }
  .help-detail {
    display: none;
  }
  .desktop-guidance {
    display: none;
  }
  .mobile-guidance {
    display: block;
    margin: 10px 0 14px;
  }
  .category {
    margin-top: 16px;
  }
  .boxart {
    min-height: 310px;
  }
}
.reason-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.reason-card,
.trust-card {
  padding: 21px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
  box-shadow: 0 12px 34px rgba(111, 64, 50, 0.06);
}
.reason-card h3,
.trust-card h3 {
  font-size: 23px;
  margin: 10px 0 0;
}
.reason-card p,
.trust-card p {
  margin: 9px 0 0;
  line-height: 1.62;
  color: #8e5b48;
}
.reason-icon,
.trust-card > span {
  font-size: 27px;
}
.variety-section {
  background: linear-gradient(145deg, #f5f4e8, #fffaf5);
}
.variety-section .lead {
  max-width: 820px;
  margin-inline: auto;
}
.variety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.variety-card {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  text-align: left;
  box-shadow: 0 14px 38px rgba(111, 64, 50, 0.07);
}
.variety-card > span {
  font-size: 31px;
}
.variety-card h3 {
  margin: 12px 0 0;
  font-size: 25px;
}
.variety-card p {
  margin: 10px 0 0;
  color: #8e5b48;
  line-height: 1.65;
}
.flowers-card {
  border-top: 4px solid #e8a35f;
}
.leaves-card {
  border-top: 4px solid #75a66c;
}
.treats-card {
  border-top: 4px solid #d96f75;
}
.variety-rule {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--gb);
  border-radius: 22px;
  background: var(--green);
  color: #315b2e;
}
.variety-rule strong {
  margin-right: 4px;
}
.variety-rule span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.variety-rule i {
  font-style: normal;
  font-weight: 900;
}
.health-note {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 15px 18px;
  border: 1px solid #e6b26f;
  border-radius: 20px;
  background: #fff8e8;
  color: #795025;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}
.photo-proof {
  background: #fffaf5;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: #fff;
  text-align: left;
}
.photo-card img,
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.photo-card.client-proof img {
  object-fit: contain;
  object-position: center;
  background: #f6eee7;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: linear-gradient(145deg, #fff1e8, #f6e4d7);
  text-align: center;
}
.photo-placeholder > span {
  font-size: 38px;
}
.photo-placeholder strong {
  margin-top: 10px;
  color: var(--dark);
}
.photo-placeholder small {
  margin-top: 7px;
  line-height: 1.5;
  color: #8e5b48;
}
.photo-card figcaption {
  padding: 16px;
}
.photo-card figcaption strong {
  display: block;
  color: var(--dark);
}
.photo-card figcaption span {
  display: block;
  margin-top: 5px;
  color: #8e5b48;
  font-size: 13px;
}
.trust-section {
  background: linear-gradient(180deg, #fff, #fdf6f0);
}
.payment-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--gb);
  border-radius: 20px;
  background: var(--green);
  color: #315b2e;
}
.payment-strip span {
  font-size: 13px;
}
.story-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: center;
}
.story-visual {
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fff;
}
.story-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 23px;
}
.story-copy p {
  margin: 14px 0 0;
  line-height: 1.75;
  color: #8e5b48;
}
.story-signature {
  margin-top: 20px;
  font-weight: 900;
  color: var(--dark);
}
.faq-section {
  background: #fffaf5;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  padding: 17px 19px;
  list-style: none;
  font-weight: 900;
  color: var(--dark);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  float: right;
  font-size: 20px;
}
.faq-item[open] summary:after {
  content: "−";
}
.faq-item p {
  margin: 0;
  padding: 0 19px 18px;
  line-height: 1.65;
  color: #8e5b48;
}
@media (max-width: 980px) {
  .reason-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .variety-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .reason-grid,
  .trust-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .section {
    scroll-margin-top: 84px;
  }
  .story-visual img {
    aspect-ratio: 16/11;
  }
  .variety-rule {
    align-items: stretch;
    flex-direction: column;
  }
  .variety-rule i {
    transform: rotate(90deg);
  }
}
.quick-add {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff1e8;
}
.quick-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.quick-head small {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8e5b48;
}
.quick-head strong {
  color: var(--dark);
}
.quick-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}
.quick-controls .mode {
  width: 100%;
  height: 44px;
}
.quick-monthly-note {
  margin: 9px 0 0;
  text-align: left;
}
.quick-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-qty button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-weight: 900;
}
.quick-qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
  color: var(--dark);
}
.quick-button {
  width: 100%;
  margin-top: 12px;
}
.quick-feedback {
  min-height: 20px;
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: #315b2e;
}
@media (max-width: 520px) {
  .quick-controls {
    grid-template-columns: 1fr;
  }
  .quick-qty {
    justify-content: center;
  }
}
.mobile-order-cta {
  display: none;
  width: 100%;
  margin-top: 12px;
}
@media (max-width: 640px) {
  .mobile-order-cta {
    display: flex;
  }
  .cart {
    scroll-margin-top: 100px;
  }
}

/* V3.15: name personalization preview, integrated into the hero. */
.inside-box {
  position: relative;
  padding-top: 74px;
  filter: drop-shadow(0 24px 35px rgba(111, 64, 50, 0.16));
}
.inside-box-lid {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 115px;
  display: grid;
  place-items: center;
  border: 1px solid #d4ad91;
  border-radius: 28px 28px 10px 10px;
  background: linear-gradient(160deg, #eed4c0, #f9e9dc);
  transform: perspective(450px) rotateX(-38deg);
  transform-origin: bottom;
}
.inside-box-lid span {
  color: var(--dark);
  font:
    600 21px "Playfair Display",
    serif;
  letter-spacing: 0.03em;
}
.inside-box-base {
  position: relative;
  min-height: 255px;
  padding: 45px 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4ad91;
  border-radius: 16px 16px 32px 32px;
  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(232, 148, 122, 0.2),
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(148, 201, 141, 0.23),
      transparent 28%
    ),
    #fff;
  text-align: center;
  overflow: hidden;
}
.inside-box-base::before,
.inside-box-base::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 26px;
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, #e8c6aa 0 4px, #f6dfcc 4px 8px);
  opacity: 0.7;
}
.inside-box-base::before {
  left: -24px;
  bottom: 25px;
  transform: rotate(22deg);
}
.inside-box-base::after {
  right: -24px;
  top: 30px;
  transform: rotate(-18deg);
}
.inside-box-base small {
  color: #8e5b48;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.inside-box-base strong {
  position: relative;
  z-index: 1;
  margin: 10px 0 8px;
  color: var(--terra);
  font:
    600 clamp(42px, 7vw, 66px) "Playfair Display",
    serif;
  line-height: 1;
}
.inside-box-base > span {
  color: var(--brown);
  font-size: 14px;
  font-weight: 800;
}
@media (max-width: 880px) {
  .inside-box {
    width: min(520px, 100%);
    margin: 4px auto 0;
  }
}
@media (max-width: 640px) {
  .inside-box-base {
    min-height: 225px;
    padding-inline: 18px;
  }
}

/* Native product image rendering. */
.thumb {
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(52, 30, 23, 0.14);
}
.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin: 8px 0 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
}
.product-modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -7px 0 6px;
  color: #8e5b48;
  font-size: 13px;
  font-weight: 800;
}
@media (min-width: 981px) {
  .item {
    grid-template-columns: 68px 1fr 126px 96px;
  }
  .thumb {
    width: 68px;
    height: 68px;
  }
}
@media (max-width: 980px) {
  .thumb {
    width: 62px;
    height: 62px;
  }
  .item {
    grid-template-columns: 62px 1fr;
  }
}
@media (max-width: 640px) {
  .product-modal-image {
    aspect-ratio: 4/3;
  }
  .modalbox {
    padding: 22px;
  }
  .modalbox h3 {
    font-size: 28px;
  }
}
