@charset "UTF-8";
/* CSS Document */

:root {
  --bg: #0f172a;
  --card-bg: #111827;
  --card-border: #1f2937;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.15);
  --danger: #f97373;

  --rye_small: #fbbf24;
  --rye_large: #d97706;
  --sorghum: #a3e635;
  --dung_lover: #92400e;
  --wood_lover: #4ade80;
  --manure:  #6b8e23;
  --dry_mix: #c66a2b;
  --raw_rye: #e4c590;
  --cvg: #5b8fa8;
  --coffee: #3b2b1c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #020617 100%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: auto;
  padding: 0.4rem 1rem;
}

a {
  color: #fbbf24;                 /* wood green */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s ease, opacity 0.18s ease;
}

a:hover {
  color: #d97706;                 /* lighter green */
  opacity: 0.9;
  text-decoration: none;          /* stays clean */
}

a:active {
  opacity: 0.75;
}

.content {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.header {
  position: relative;
  display: block;
  top: 0;
  width: 100%;
  max-width: 1100px;
  padding: 0.6rem 1rem;
  clear: both;
}

.logo {
  height: 5rem;
  margin: 0;
  padding: 0;
}

.menu {
  float: right;
}

.builder {
  max-width: 1100px;
  width: 100%;
  background: radial-gradient(circle at top left, #111827, #020617 55%);
  border-radius: 1.5rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  padding: 1.75rem 2rem 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

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

@media (max-width: 480px) {
  body { padding: 0.4rem 0.6rem; }                 /* was 0.4rem 1rem */
  .builder { padding: 1.1rem 1rem 1.3rem; }        /* was 1.75rem 2rem 2.25rem */
}

h1 {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.subtitle {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.box-config {
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(55, 65, 81, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
}

.box-config label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.select-wrap {
  position: relative;
  width: 100%;
}

#boxSize {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 0.85rem 2.6rem 0.85rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);

  background: radial-gradient(circle at top left, rgba(34,197,94,0.16), rgba(255,255,255,0.06));
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;

  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.18s ease;
}

#boxSize:hover {
  border-color: rgba(134, 239, 172, 0.55);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

#boxSize:active {
  transform: translateY(0px);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.45),
    inset 0 2px 0 rgba(0, 0, 0, 0.25);
}

#boxSize:focus {
  outline: none;
  border-color: rgba(134, 239, 172, 0.7);
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.select-chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #86efac;
  font-size: 1.1rem;
  opacity: 0.95;
}
.box-size-pills {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0rem;
}
.pill {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 0.6rem 0.5rem;
  color: var(--text-main);
  cursor: pointer;

  box-shadow: 0 8px 16px rgba(0,0,0,0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.18s ease, background 0.18s ease;
  text-align: center;
}
.pill:hover {
  transform: translateY(-1px);
  border-color: rgba(134,239,172,0.45);
  background: rgba(34,197,94,0.10);
  box-shadow: 0 12px 22px rgba(0,0,0,0.45);
}

.pill.active {
  border-color: rgba(134,239,172,0.75);
  background: rgba(34,197,94,0.16);
  box-shadow:
    0 12px 26px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.pill-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #86efac;
  line-height: 1.1;
}

.pill-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.capacity {
  font-size: 0.9rem;
}

.capacity span {
  font-variant-numeric: tabular-nums;
}

.capacity.over span#unitsUsed {
  color: var(--danger);
  font-weight: 600;
}

.box-desc {
  display: none;
  color: #fff;
  text-align: right;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(31, 41, 55, 0.9);
  cursor: pointer;
}
.product-controls, .product-controls * {
  cursor: default;
}

.product-row:hover {
  transform: translateY(-1px);
  border-color: rgba(134,239,172,0.45);
  background: rgba(34,197,94,0.10);
  box-shadow: 0 12px 22px rgba(0,0,0,0.45);
}

.product-chip {
  width: 26px;
  height: 26px;
  border-radius: 0.65rem;
  border: 2px solid rgba(15, 23, 42, 0.85);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.6);
}
.product-price {
  font-size: 0.78rem;
  color: #86efac;
  font-weight: 600;
}
.product-price span {
  font-weight: 500;
  margin-left: 0.35rem;
}
.product-price-line {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.product-price-base {
  font-size: 0.78rem;
  font-weight: 700;
  color: #86efac; /* active price by default */
}

.product-price-base.strike {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.65;
}

.product-price-discount {
  font-size: 0.8rem;
  color: #86efac; /* discounted price = active */
  font-weight: 700;
}

.chip-rye_small { background: var(--rye_small); }
.chip-rye_large { background: var(--rye_large); }
.chip-sorghum {   background: var(--sorghum); }
.chip-dung_lover {      background: var(--dung_lover); }
.chip-wood_lover {      background: var(--wood_lover); }
.chip-manure {    background: var(--manure); }
.chip-dry_mix {  background: var(--dry_mix); }
.chip-raw_rye {   background: var(--raw_rye); }
.chip-coffee {   background: var(--coffee); }

.product-main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.product-name {
  font-size: 0.92rem;
}

.product-meta, .caption {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-meta span {
  opacity: 0.9;
}

.product-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.product-controls button {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  background: #020617;
  color: var(--text-main);
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-controls button:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.product-controls input[type="number"] {
  width: 52px;
  padding: 0.25rem 0.3rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: #020617;
  color: var(--text-main);
  text-align: center;
  font-size: 0.85rem;
}

.product-controls input::-webkit-outer-spin-button,
.product-controls input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-controls input[type="number"] {
  -moz-appearance: textfield;
}

.see-more {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.see-more-btn {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(31, 41, 55, 0.9);
  color: var(--text-main);
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
              background 0.15s ease, transform 0.1s ease;
}

.see-more-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

.visual-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.1rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.visual-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.visual-header h2 {
  margin: 0;
  font-size: 1.1rem;
}

.visual-badge {
  font-size: 0.8rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  color: var(--text-muted);
}

.box-shell {
  border-radius: 0.9rem;
  padding: 0.55rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), #020617);
  border: 1px solid rgba(55, 65, 81, 0.8);
}

.reset-link {
  margin-left: 0.75rem;
  font-size: 0.85rem;
  color: #fbbf24;
  opacity: 0.9;
}
.reset-link:hover { opacity: 1; }

.box-grid {
  display: grid;
  width: 100%;
  height: 150px;
  border-radius: 0.7rem;
  overflow: hidden;

  /* 2-row “box” */
  grid-template-rows: repeat(2, 1fr);

  /* columns set dynamically via JS: boxGrid.style.gridTemplateColumns */
  gap: 0.35rem;

  padding: 0.6rem;
  background: repeating-linear-gradient(
    135deg,
    rgba(15, 23, 42, 1),
    rgba(15, 23, 42, 1) 16px,
    rgba(17, 24, 39, 1) 16px,
    rgba(17, 24, 39, 1) 32px
  );
  position: relative;
}

.box-unit {
  border-radius: 0.45rem;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.35),
    0 2px 6px rgba(0,0,0,0.25);
}

.box-unit.empty {
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
}

/* Grid “items” (unified multi-slot blocks) */
.box-block {
  border-radius: 0.45rem;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.35),
    0 2px 6px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(2, 6, 23, 0.75);
  letter-spacing: 0.02em;
  overflow: hidden;
}

.block-rye_small { background: var(--rye_small); }
.block-rye_large { background: var(--rye_large); }
.block-sorghum   { background: var(--sorghum); }
.block-dung_lover      { background: var(--dung_lover); }
.block-wood_lover      { background: var(--wood_lover); }
.block-manure    { background: var(--manure); }
.block-dry_mix  { background: var(--dry_mix); }
.block-raw_rye   { background: var(--raw_rye); }
.block-cvg       { background: var(--cvg); }
.block-coffee       { background: var(--coffee); }

.box-placeholder {
  grid-column: 1 / -1;   /* span all columns */
  grid-row: 1 / -1;      /* span both rows */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: #777;
  font-style: italic;
  pointer-events: none;
}

.warning {
  font-size: 0.8rem;
  color: var(--danger);
  margin: 0.4rem 0 0;
  display: none;
}

.warning.visible {
  display: block;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.legend-item {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 0.4rem;
  border: 1px solid rgba(15, 23, 42, 0.9);
}
.add-to-cart-btn {
  margin-top: 0;
  width: 100%;
  background: #22c55e;
  color: #0f172a;
  border: 1px solid #16a34a;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.15s ease, transform 0.15s ease,
              box-shadow 0.15s ease, border-color 0.15s ease;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.35);
}

.add-to-cart-btn:hover:not(:disabled) {
  background: #16a34a;
  border-color: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.45);
}

.add-to-cart-btn:active:not(:disabled) {
  background: #15803d;
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.4);
}

.add-to-cart-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #1f2937;
  border-color: #374151;
  color: #9ca3af;
  box-shadow: none;
}

/* ——— Menu Button (top-right) ——— */
.fs-menu-btn {
  position: absolute;
  display: block;
  right: 0.5rem;
  top: 1rem;
  height: 4rem;
  width: 4rem;
  padding: 0.75rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.fs-menu-btn img {
  height: 100%;
  width: 100%;
  margin: 0rem;
  filter: brightness(0) invert(1);
}

/* ——— Overlay behind menu ——— */
.fs-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 2980;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.fs-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
/* ——— Slide-Out Menu Panel ——— */
.fs-menu-panel {
  position: fixed;
  top: 0;
  right: -360px;
  width: 340px;
  height: 100%;
  z-index: 3001;

  background: radial-gradient(
    circle at top left,
    #111827,
    #020617 65%
  );

  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -20px 0 40px rgba(0,0,0,0.6);

  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;

  transition: right 0.3s ease;
}

/* Active state */
.fs-menu-panel.active {
  right: 0;
}

/* ——— Header / Logo ——— */
.fs-menu-header {
  display: block;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
}

.fs-menu-logo {
  width: auto;
  height: 5rem;
  opacity: 0.95;
  margin-bottom: 1rem;
}

/* ——— Button Container ——— */
.fs-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;            /* more space between buttons */
}

/* ——— Menu Buttons ——— */
.fs-menu-link {
  display: block;
  width: 100%;
  text-align: center;

  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;

  border-radius: 1.1rem;   /* rounder */
  cursor: pointer;
  text-decoration: none;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.fs-menu-link.primary {
  background: #3f7f5f;                 /* moss green */
  color: #f0fdf4;                      /* soft off-white */
  border: 1px solid #356c52;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fs-menu-link.primary:hover {
  background: #356c52;
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Secondary action — warm slate */
.fs-menu-link.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.35);
}

.fs-menu-link.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.45);
}

/* ---------- Product Modal ---------- */
.fs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.fs-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  width: min(900px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;

  z-index: 4010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;

  background: radial-gradient(circle at top left, #111827, #020617 70%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 1.25rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}

.fs-modal.active,
.fs-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.fs-modal.active {
  transform: translate(-50%, -50%);
}

.fs-modal-inner {
  padding: 1.4rem 1.5rem 1.5rem;
}

.fs-modal-close {
  position: sticky;
  top: 0.75rem;
  margin-left: auto;
  right: 0.75rem;
  display: block;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
}

.fs-modal-title {
  margin: 0.75rem 0 0.25rem;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
}

.fs-modal-tagline {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.fs-modal-image-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.fs-modal-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.fs-modal-desc {
  margin-top: 1rem;
  color: #d1d5db;
  line-height: 1.5;
}
.fs-modal-desc p { margin: 0.75rem 0; }
.fs-modal-desc ul { margin: 0.6rem 0 0.9rem 1.2rem; }
.fs-modal-desc li { margin: 0.25rem 0; }
.fs-modal-desc .fineprint { opacity: 0.85; font-size: 0.9rem; }

.fs-modal-add {
  margin-top: 1.25rem;
  width: 100%;
  background: #22c55e;
  color: #0f172a;
  border: 1px solid #16a34a;
  padding: 0.85rem 1.2rem;
  font-size: 1.05rem;
  border-radius: 0.9rem;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.35);
}

.fs-modal-add:hover {
  background: #16a34a;
  border-color: #15803d;
}

.price-infographic {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 0 auto;
  padding: 1.5rem 1rem 0.8rem 1rem;
  font-family: system-ui, sans-serif;
  color: #e5e7eb;
}

/* === Slider Bar === */
.price-bar {
  position: relative;
  height: 0.8rem;
  margin: 2.5rem 0 1.5rem;
}

/* Gradient track */
.price-gradient {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #4b5563,     /* muted gray */
    #4ade80,     /* wood green */
    #a3e635      /* sorghum green */
  );
  opacity: 0.85;
}

/* --- Range input limited to marker span (10%..90%) --- */
.price-range {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  transform: translateY(-50%);
  margin: 0;
  height: 2.2rem;     /* big hit area */
  opacity: 0;         /* invisible control */
  z-index: 20;
  cursor: pointer;
}

/* Visible handle that follows range value */
.price-handle {
  position: absolute;
  top: 50%;
  left: 50%; /* JS sets precisely */
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #4ade80; /* wood green */
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.9),
    0 6px 14px rgba(0, 0, 0, 0.45);
  z-index: 19;
  pointer-events: none;
}

/* Big selected price above the bar (replaces the old standard price display) */
.price-selected-float {
  position: absolute;
  top: -2.4rem;       /* similar to your old marker text height */
  left: 50%;          /* JS sets precisely */
  transform: translateX(-50%);
  font-size: 1.6rem;  /* same as your old highlight */
  font-weight: 700;
  line-height: 1.6rem;
  color: #e5e7eb;
  z-index: 21;
  pointer-events: none;
}

/* Markers */
.price-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 600;
}

/* Positions */
.price-marker.community { left: 10%; }
.price-marker.standard  { left: 50%; }
.price-marker.supporter { left: 90%; }

.price-amount.highlight {
  font-size: 1.6rem;
  opacity: 1;
  line-height: 1.6rem;
}

/* === Price dots === */
.price-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin: 0;
  background: #9ca3af; /* fallback */
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.9),
    0 4px 10px rgba(0, 0, 0, 0.45);
}

/* Tier-specific colors */
.price-marker.community .price-dot {
  background: #9ca3af; /* muted gray */
}

.price-marker.standard .price-dot {
  background: #4ade80; /* wood green */
}

.price-marker.supporter .price-dot {
  background: #a3e635; /* sorghum green */
}

/* === Tier labels === */

.tier-meta {
  position: relative;
  margin-top: 0.4rem;
  height: 3.2rem; /* enough room for price + label */
}
.tier-meta-item {
  position: absolute;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  color: #e5e7eb;
}
.tier-meta-item.community {
  left: var(--pos-community, 10%);
}

.tier-meta-item.standard {
  left: var(--pos-standard, 50%);
}

.tier-meta-item.supporter {
  left: var(--pos-supporter, 90%);
}
.tier-price {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.tier-label {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.1;
}

#priceStandard {
  font-weight: bolder;
  color: #4ade80;
}

/* === Shipping notes === */
.shipping-notes {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  margin-top: 0rem;
  color: #d1d5db;
}

.shipping-notes span:last-child {
  color: #86efac;
  font-weight: 600;
}
.shipping-price.strikethrough {
  text-decoration: line-through;
  opacity: 0.5;
}
.bulk-discount-line {
  font-weight: 600;
  opacity: 0.5;
}
.bulk-discount-line.hidden {
  display: none;
}
