/* ==========================================================================
   Darapoint Farm / Nimi Locust Beans — shared stylesheet
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap");

:root {
  /* ---- brand colors: white + green only, pulled from the Darapoint / Nimi logos ---- */
  --forest: #0b6b33;
  --leaf: #2f8f3d;
  --leaf-bright: #74bc34;
  --moss: #1d5c2e;
  --mint: #eaf6e6;
  --mint-deep: #dcefd6;

  --white: #ffffff;
  --ink: #10241a;
  --ink-soft: #3e5a47;

  --line: rgba(16, 36, 26, 0.13);

  /* kept as aliases so nothing referencing the old names breaks */
  --cream: var(--white);
  --cream-deep: var(--mint);

  /* ---- type: Poppins for display, Inter for body, JetBrains Mono for prices ---- */
  --font-display: "Poppins", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  /* ---- shape / rhythm ---- */
  --radius: 20px;
  --radius-sm: 12px;
  --blob: 63% 37% 54% 46% / 43% 47% 53% 57%;
  --container: 1180px;
  --shadow: 0 18px 40px -20px rgba(11, 60, 30, 0.32);
  --shadow-sm: 0 8px 20px -12px rgba(11, 60, 30, 0.28);
}

/* ---------------------------------------------------------------- reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--forest);
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.6em;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--deep {
  background: var(--cream-deep);
}

.section--forest {
  background: var(--forest);
  color: #eef7ea;
}
.section--forest h2,
.section--forest h3 {
  color: #ffffff;
}

.center {
  text-align: center;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

.center .lede {
  margin-left: auto;
  margin-right: auto;
}

:focus-visible {
  outline: 3px solid var(--leaf-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--leaf);
}

.btn--whatsapp {
  background: #1e9e52;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--whatsapp:hover {
  background: #178143;
}

.btn--outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.26);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 40px;
  width: auto;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--forest);
  line-height: 1.1;
}
.brand__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav__links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--forest);
}
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--leaf-bright);
  border-radius: 2px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.cart-link__count {
  background: var(--forest);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: fixed;
    inset: 66px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow-y: auto;
  }
  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ------------------------------------------------------------------ hero */
.hero {
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  margin-bottom: 0.35em;
}
.hero__promise {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.8em;
}
.hero__trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf-bright);
  flex-shrink: 0;
}

.hero__art {
  position: relative;
  border-radius: var(--blob);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__art {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* --------------------------------------------------------- variant grid */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.variant-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.variant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.variant-card__art {
  border-radius: var(--blob);
  background: var(--cream-deep);
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
  overflow: hidden;
}
.variant-card__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.variant-card h3 {
  margin-bottom: 0.3em;
}
.variant-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  flex-grow: 1;
}
.variant-card .btn {
  align-self: flex-start;
  margin-top: 10px;
}

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

/* --------------------------------------------------------- process list */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.process__step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 28px 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.process__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--leaf);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.process__bean {
  width: 34px;
  height: 22px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--leaf-bright), var(--forest));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
}
.process__bean::after {
  content: "";
  position: absolute;
  inset: 4px 15px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.process__step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.process__step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 880px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .process {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------- split band */
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-card {
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.split-card--retail {
  background: var(--white);
  border: 2px solid var(--leaf-bright);
}
.split-card--bulk {
  background: var(--forest);
  color: #eef7ea;
}
.split-card--bulk h3 {
  color: #fff;
}
.split-card p {
  color: inherit;
  opacity: 0.9;
}
.split-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-weight: 600;
}
.split-card--retail .split-card__icon {
  background: var(--cream-deep);
  color: var(--forest);
}
.split-card--bulk .split-card__icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

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

/* ------------------------------------------------------------ testimonial */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 0.6em;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--leaf);
}
.testimonial--placeholder {
  border: 2px dashed var(--line);
  background: var(--cream-deep);
}
.testimonial--placeholder p {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------- footer */
.site-footer {
  background: var(--forest);
  color: #d9ecd6;
  padding: 56px 0 26px;
  margin-top: 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer__brand img {
  height: 40px;
  margin-bottom: 14px;
}
.footer__brand p {
  color: #bcd9b7;
  font-size: 0.9rem;
  max-width: 32ch;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer li {
  margin-bottom: 9px;
}
.footer a {
  color: #cfe6cb;
  font-size: 0.92rem;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #a9cca4;
}

@media (max-width: 820px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------- whatsapp floater */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1e9e52;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(20, 40, 20, 0.55);
  transition: transform 0.15s ease;
}
.wa-float:hover {
  transform: scale(1.06);
}
.wa-float svg {
  width: 28px;
  height: 28px;
}

/* -------------------------------------------------------- page headers */
.page-header {
  padding: 52px 0 36px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.breadcrumb a:hover {
  color: var(--forest);
  text-decoration: underline;
}

/* ------------------------------------------------------------- shop grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 780px) {
  .shop-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* --------------------------------------------------------- product page */
.product-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}
.product-hero__art {
  position: sticky;
  top: 90px;
  border-radius: var(--blob);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
}
.product-hero__meta h1 {
  margin-bottom: 0.2em;
}
.product-hero__tagline {
  color: var(--leaf);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 1em;
}
.variant-switch {
  display: flex;
  gap: 10px;
  margin: 6px 0 22px;
}
.variant-switch a {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
}
.variant-switch a[aria-current="page"] {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.variant-switch a:hover:not([aria-current="page"]) {
  border-color: var(--forest);
  color: var(--forest);
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
  }
  .product-hero__art {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------ size table */
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 8px;
  font-size: 0.94rem;
}
.size-table caption {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 10px;
  font-weight: 600;
}
.size-table th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding: 10px 12px;
  border-bottom: 2px solid var(--line);
}
.size-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.size-table tr:last-child td {
  border-bottom: none;
}
.size-table .size-label {
  font-weight: 600;
}
.size-table .price {
  font-family: var(--font-mono);
  font-weight: 600;
}
.size-table .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.tag--retail {
  background: #e4f3da;
  color: var(--forest);
}
.tag--bulk {
  background: var(--moss);
  color: #eaf6e6;
}
.qty-input {
  width: 56px;
  padding: 7px 8px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  font-family: var(--font-mono);
  text-align: center;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0;
}
.stack--row {
  flex-direction: row;
  flex-wrap: wrap;
}
.info-box {
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.info-box h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 6px;
}
.info-box p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.cross-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cross-links a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--forest);
  border-bottom: 1.5px solid var(--leaf-bright);
  padding-bottom: 2px;
}

/* --------------------------------------------------------------- forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid--single {
  grid-template-columns: 1fr;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--leaf-bright);
}
.field--radio {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.field-hint {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--cream-deep);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
}

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

/* ---------------------------------------------------------------- cart */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding: 10px 12px;
  border-bottom: 2px solid var(--line);
}
.cart-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-item__art {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--cream-deep);
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.cart-item__name {
  font-weight: 600;
}
.cart-item__size {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.remove-btn {
  background: none;
  border: none;
  color: var(--moss);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.summary-row--total {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 6px;
}
.summary-row .price {
  font-family: var(--font-mono);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 34px;
  align-items: start;
}
@media (max-width: 880px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.empty-state .btn {
  margin-top: 18px;
}

/* ------------------------------------------------------------- checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 34px;
  align-items: start;
}
@media (max-width: 880px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}
.payment-option {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 12px;
  cursor: pointer;
}
.payment-option:has(input:checked) {
  border-color: var(--leaf-bright);
  background: var(--cream-deep);
}
.payment-option__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 4px;
}
.payment-option p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.confirm-panel {
  text-align: center;
  padding: 50px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.confirm-panel__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--leaf-bright);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
}

/* --------------------------------------------------------------- misc */
.tick-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.tick-list li::before {
  content: "✓";
  color: var(--leaf);
  font-weight: 700;
  flex-shrink: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.placeholder-block {
  border: 2px dashed var(--line);
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  padding: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: none;
  width: 100%;
  height: 280px;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 80;
  box-shadow: var(--shadow-sm);
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
