@font-face{font-family:"FDD Sans";src:url("/assets/fonts/NimbusSans-Regular.otf") format("opentype");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"FDD Sans";src:url("/assets/fonts/NimbusSans-Bold.otf") format("opentype");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"FDD Condensed";src:url("/assets/fonts/NimbusSansNarrow-Regular.otf") format("opentype");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"FDD Condensed";src:url("/assets/fonts/NimbusSansNarrow-Bold.otf") format("opentype");font-weight:700;font-style:normal;font-display:swap}

:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef8ef;
  color: #17211c;
  --ink: #17211c;
  --muted: #66746c;
  --paper: #fffdf8;
  --wash: #eef8ef;
  --line: #eadfce;
  --green: #1f6f5a;
  --green-dark: #123026;
  --mint: #dff2e8;
  --gold: #efbd45;
  --gold-soft: #fff0bd;
  --coral: #d96f52;
  --teal: #3d8ca3;
  --lavender: #ece8ff;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { overflow-x: hidden; }
body { margin: 0; }

.site-header {
  align-items: center;
  background: var(--green-dark);
  color: white;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 30px clamp(18px, 4vw, 56px);
}

.eyebrow {
  color: #aee0c4;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1, h2, p { margin: 0; }
h1 { font-size: clamp(30px, 5vw, 56px); line-height: 1.02; max-width: 820px; }
h2 { font-size: 22px; }

button {
  background: var(--gold);
  border: 0;
  border-radius: 7px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 44px;
  padding: 0 16px;
}

button.secondary { background: #e8f2ee; color: var(--green-dark); }
button:hover { filter: brightness(.985); }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible {
  outline: 3px solid rgba(61, 140, 163, 0.35);
  outline-offset: 2px;
}

main {
  margin: 0 auto;
  max-width: 1380px;
  padding: 22px clamp(14px, 3vw, 36px) 42px;
}

section {
  margin-top: 18px;
}

.ai-panel, .search-panel, .location-panel, .florida-panel, .pricing-panel, .summary div, .category-card, .category-detail, .store-source-card, .empty-panel, .admin-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(56, 42, 24, 0.06);
}

.category-detail {
  padding: 18px;
}

.expandable-panel {
  overflow: hidden;
}

.ai-toggle {
  align-items: center;
  background: linear-gradient(90deg, #fffdf8, #f5fbf4);
  border-radius: 8px;
  color: var(--green-dark);
  display: grid;
  gap: 12px;
  grid-template-columns: auto auto minmax(0, 1fr);
  justify-content: start;
  min-height: 54px;
  padding: 0 16px;
  text-align: left;
  width: 100%;
}

.ai-toggle:hover {
  background: #f3fbf2;
}

.ai-toggle span {
  font-size: 18px;
}

.ai-toggle small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-toggle strong {
  align-items: center;
  background: var(--mint);
  border: 1px solid #b9ddcb;
  border-radius: 6px;
  color: var(--green);
  display: inline-flex;
  font-size: 22px;
  height: 32px;
  justify-content: center;
  line-height: 1;
  order: -1;
  width: 32px;
}

.ai-panel-body {
  border-top: 1px solid #f0e6d7;
  padding: 16px;
}

.panel-body {
  border-top: 1px solid #f0e6d7;
  padding: 16px;
}

.panel-body > section:first-child {
  margin-top: 0;
}

.ai-panel-body .section-head {
  justify-content: start;
}

.section-head {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-head p, .summary span, .mini-product small, .product-row span, .site-footer p {
  color: var(--muted);
  font-size: 13px;
}

.ask-row, .search-panel, .location-panel {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

textarea, input, select {
  background: #fffdf8;
  border: 1px solid #d8cdbb;
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

textarea { min-height: 92px; resize: vertical; }
label { color: #4b5a52; display: grid; font-size: 13px; font-weight: 800; gap: 6px; }
.search-panel { grid-template-columns: minmax(240px, 1fr) minmax(190px, 260px); padding: 14px; }
.location-panel {
  align-items: center;
  background: linear-gradient(135deg, #fbfff9 0%, #e7f6eb 100%);
  border-color: #dfd0b8;
  box-shadow: 0 10px 28px rgba(56, 42, 24, 0.07), inset 0 0 0 1px rgba(239, 189, 69, 0.12);
  grid-template-columns: minmax(230px, 320px) auto minmax(220px, 1fr);
  padding: 16px;
}
.location-panel p {
  align-self: center;
  color: var(--muted);
  font-size: 13px;
}

.zip-card {
  background: linear-gradient(180deg, #e9f8ef, #d9f0e5);
  border: 1px solid #a9cfb8;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(18, 48, 38, 0.04);
  color: #244b3f;
  padding: 10px 12px 12px;
  text-align: center;
}

.zip-card input {
  background: #ffffff;
  border: 2px solid #65a97f;
  color: #10241d;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  min-height: 54px;
  text-align: center;
}

.location-actions {
  display: flex;
  gap: 10px;
}

.location-actions button {
  min-width: 128px;
}

#locationApplyButton {
  background: linear-gradient(180deg, #f2c85d, #e0a832);
}

.answer {
  background: #f5fbf4;
  border: 1px solid #dcebdc;
  border-radius: 7px;
  line-height: 1.45;
  margin-top: 12px;
  min-height: 44px;
  padding: 12px;
}

.answer p {
  margin: 6px 0 0;
}

.compact-answer {
  font-size: 12px;
  margin-top: 0;
  min-height: 54px;
  padding: 9px 10px;
}

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

.summary div { padding: 13px 14px; }
.summary strong { display: block; font-size: 22px; line-height: 1.1; }
.summary div:nth-child(1) { border-top: 4px solid var(--green); }
.summary div:nth-child(2) { border-top: 4px solid var(--teal); }
.summary div:nth-child(3) { border-top: 4px solid var(--gold); }
.summary div:nth-child(4) { border-top: 4px solid var(--coral); }

.chain-grid,
.directory-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.zip-bubble-map {
  align-items: center;
  background: linear-gradient(180deg, #fffdf8, #f4fbf3);
  border: 1px solid #ebdec8;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  min-height: 180px;
  padding: 14px;
}

.zip-bubble {
  align-items: center;
  background: transparent;
  border: 0;
  color: #173328;
  cursor: pointer;
  display: inline-grid;
  font: inherit;
  gap: 5px;
  justify-items: center;
  line-height: 1.05;
  min-height: auto;
  min-width: 74px;
  padding: 4px;
  text-align: center;
}

.zip-bubble:hover .zip-bubble-circle {
  box-shadow: 0 0 0 3px rgba(240, 199, 93, 0.26);
  transform: translateY(-1px);
}

.zip-bubble-circle {
  align-items: center;
  background: radial-gradient(circle at 35% 30%, #fff9dc 0%, #efbd45 46%, #d96f52 100%);
  border: 1px solid rgba(135, 87, 23, 0.26);
  border-radius: 999px;
  display: inline-grid;
  height: var(--bubble-size);
  justify-content: center;
  min-height: 29px;
  min-width: 29px;
  padding: 8px;
  transition: box-shadow .15s ease, transform .15s ease;
  width: var(--bubble-size);
}

.zip-bubble.active .zip-bubble-circle {
  background: radial-gradient(circle at 35% 30%, #e9fff5 0%, #50b987 48%, #1f6f5a 100%);
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(40, 109, 88, 0.18);
  color: white;
}

.zip-bubble strong {
  font-size: 18px;
}

.zip-bubble span,
.zip-bubble small {
  display: block;
  font-size: 10px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.zip-bubble small {
  color: var(--muted);
  opacity: .82;
}

.chain-grid {
  margin-top: 12px;
}

.chain-card,
.directory-row {
  background: #fffdf8;
  border: 1px solid #efe4d4;
  border-radius: 8px;
  display: grid;
  gap: 3px;
  padding: 11px 12px;
}

.chain-card strong,
.directory-row strong {
  font-size: 14px;
}

.chain-card span,
.chain-card small,
.directory-row span,
.directory-row small {
  color: var(--muted);
  font-size: 12px;
}

.chain-card strong {
  color: var(--green-dark);
}

.category-sections {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.ad-slot {
  background: #fffdf8;
  border: 1px solid #dfceb3;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(56, 42, 24, 0.06);
  overflow: hidden;
}

.ad-slot-top,
.ad-slot-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 970px;
  width: 100%;
}

.ad-slot-top {
  min-height: 90px;
}

.ad-slot-bottom {
  min-height: 120px;
}

.ad-slot-card {
  background: #edf8ef;
  min-height: 280px;
  padding: 50px;
}

.ad-slot-card .ad-placeholder,
.ad-slot-card .ad-creative {
  border-radius: 7px;
  min-height: 180px;
}

.ad-placeholder {
  align-items: center;
  background:
    linear-gradient(24deg, transparent calc(50% - 1px), rgba(31, 111, 90, .34) 50%, transparent calc(50% + 1px)),
    linear-gradient(156deg, transparent calc(50% - 1px), rgba(31, 111, 90, .34) 50%, transparent calc(50% + 1px)),
    linear-gradient(135deg, #fffdf8 0%, #edf8ef 52%, #fff6d7 100%);
  display: grid;
  height: 100%;
  justify-items: center;
  min-height: inherit;
  padding: 22px;
  position: relative;
  text-align: center;
}

.ad-placeholder::after {
  border: 1px solid rgba(31, 111, 90, .16);
  border-radius: 7px;
  content: "";
  inset: 10px;
  pointer-events: none;
  position: absolute;
}

.ad-placeholder span,
.ad-placeholder strong {
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(223, 206, 179, .75);
  border-radius: 7px;
  color: var(--green-dark);
  padding: 6px 10px;
  position: relative;
  z-index: 1;
}

.ad-placeholder span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ad-placeholder strong {
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1;
  margin-top: 6px;
}

.ad-slot-card .ad-placeholder strong {
  font-size: 25px;
}

.ad-creative {
  align-items: center;
  background: #fffdf8;
  color: inherit;
  display: grid;
  height: 100%;
  justify-items: center;
  position: relative;
  text-decoration: none;
}

.ad-creative img {
  display: block;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  width: 100%;
}

.ad-creative span {
  background: rgba(18, 48, 38, .82);
  border-radius: 999px;
  bottom: 10px;
  color: white;
  font-size: 11px;
  font-weight: 850;
  left: 10px;
  padding: 4px 8px;
  position: absolute;
  text-transform: uppercase;
}

.market-trend-panel {
  background: linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(241, 250, 240, .9));
  border: 0;
  border-bottom: 1px solid rgba(18, 48, 38, .14);
  border-radius: 0;
  box-shadow: none;
  display: block;
  margin-left: calc(50% - 50%);
  margin-right: calc(50% - 50%);
  margin-top: 10px;
  overflow: hidden;
  padding: 8px clamp(10px, 2.2vw, 34px) 7px;
  position: relative;
  width: 100%;
}

.market-trend-head {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  min-height: 28px;
  position: relative;
  z-index: 2;
}

.market-trend-title {
  color: var(--green-dark);
  font-family: "FDD Sans", Inter, sans-serif;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  line-height: 1;
  margin: 0;
  opacity: .86;
  text-transform: uppercase;
}

.market-trend-controls {
  align-items: center;
  display: flex;
  gap: 8px;
}

.market-trend-controls label {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 10px;
  font-weight: 950;
  gap: 5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.market-trend-controls select {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(18, 48, 38, .16);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  min-height: 30px;
  padding: 4px 26px 4px 10px;
}

.market-trend-empty {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.market-trend-chart {
  align-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  min-height: 86px;
  overflow: visible;
  padding-top: 0;
  position: relative;
}

.market-trend-svg {
  display: block;
  height: auto;
  width: 100%;
}

.market-trend-svg text {
  fill: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.market-trend-grid {
  stroke: rgba(18, 48, 38, .075);
  stroke-width: 1;
}

.market-trend-day {
  stroke: rgba(18, 48, 38, .045);
  stroke-dasharray: 1 7;
  stroke-width: 1;
}

.market-trend-day.major {
  stroke: rgba(18, 48, 38, .085);
  stroke-dasharray: 2 5;
}

.market-trend-day.edge {
  stroke: rgba(18, 48, 38, .09);
  stroke-dasharray: none;
}

.market-trend-date {
  opacity: .62;
}

.market-trend-line {
  fill: none;
  opacity: .78;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.market-trend-point {
  opacity: .86;
}

.market-trend-legend {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: center;
  padding: 0 4px 1px;
}

.market-trend-legend span {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 6px;
}

.market-trend-legend strong {
  color: var(--green-dark);
  font-size: 12px;
}

.market-trend-legend i {
  border-radius: 999px;
  display: inline-block;
  height: 6px;
  opacity: .78;
  width: 18px;
}

.market-trend-stats {
  align-items: center;
  border-top: 1px solid rgba(18, 48, 38, .08);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 850;
  gap: 4px 15px;
  justify-content: center;
  letter-spacing: .02em;
  margin: 3px auto 0;
  max-width: 1180px;
  padding-top: 5px;
  text-transform: uppercase;
}

.market-trend-stats strong {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  margin-right: 3px;
}

.market-trend-hover-line {
  background: rgba(18, 48, 38, .26);
  bottom: 23px;
  pointer-events: none;
  position: absolute;
  top: 34px;
  transform: translateX(-.5px);
  width: 1px;
  z-index: 3;
}

.market-trend-tooltip {
  background: rgba(255, 253, 248, .97);
  border: 1px solid rgba(18, 48, 38, .18);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(18, 48, 38, .13);
  display: grid;
  gap: 3px;
  min-width: 176px;
  padding: 8px 9px;
  pointer-events: none;
  position: absolute;
  top: 18px;
  z-index: 4;
}

.market-trend-tooltip strong {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.market-trend-tooltip span {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 11px;
  font-weight: 850;
  gap: 6px;
  justify-content: space-between;
}

.market-trend-tooltip i {
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 auto;
  height: 6px;
  width: 15px;
}

.market-trend-tooltip b {
  margin-left: auto;
}

.market-trend-empty {
  align-self: center;
  justify-self: center;
  text-align: center;
}

.stores-sources-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.store-source-card {
  display: grid;
  overflow: hidden;
}

.store-source-head {
  align-items: start;
  border-bottom: 1px solid #f0e6d7;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px;
}

.store-source-head h3 {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  gap: 8px;
  line-height: 1.2;
  margin: 0 0 4px;
}

.store-source-head p,
.source-row small {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

.source-status,
.source-row em {
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  padding: 4px 8px;
}

.source-status.ok,
.source-row.ok em {
  background: var(--mint);
  color: #145437;
}

.source-status.warn,
.source-row.failed em {
  background: #ffe0d7;
  color: #7f1d1d;
}

.source-status.muted,
.source-row.muted em {
  background: #efe8dc;
  color: #415048;
}

.partner-badge {
  background: #fff2c6;
  border: 1px solid #e6b539;
  border-radius: 999px;
  color: #5b4200;
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .03em;
  line-height: 1;
  padding: 5px 8px;
  text-transform: uppercase;
  vertical-align: middle;
}

.source-list {
  display: grid;
}

.store-type-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 12px;
}

.store-type-pill {
  align-items: center;
  background: #fffdf8;
  border: 1px solid #efe4d4;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 48px;
  padding: 8px;
}

.store-type-pill .cat-icon {
  border-radius: 8px;
  flex-basis: 32px;
  height: 32px;
  width: 32px;
}

.store-type-pill .cat-icon img {
  height: 20px;
  object-fit: contain;
  width: 20px;
}

.store-type-pill span {
  font-size: 13px;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-type-pill strong {
  font-size: 15px;
}

.deal-signup-card {
  align-items: end;
  background: linear-gradient(135deg, #F7FBF6, #EEF8EF);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(220px, 1fr) minmax(140px, 180px) minmax(100px, 130px) auto;
  margin-bottom: 18px;
  padding: 16px;
}

.deal-signup-card strong,
.review-details summary {
  color: var(--green-dark);
  font-weight: 900;
}

.deal-signup-card span,
.deal-signup-card p,
.muted-note,
.review-status {
  color: var(--muted);
  font-size: 12px;
}

.deal-signup-card p {
  grid-column: 1 / -1;
  margin: 0;
}

.store-review-block {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding: 14px;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-snippet {
  background: #F7FBF6;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 6px;
  padding: 10px;
}

.review-snippet div {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.review-snippet span,
.review-snippet p {
  color: var(--muted);
  font-size: 12px;
}

.review-snippet p {
  margin: 0;
}

.review-details {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.review-details summary {
  cursor: pointer;
}

.review-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

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

.review-form textarea {
  resize: vertical;
}

.review-check {
  justify-content: start;
}

.source-row {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 14px;
  text-decoration: none;
}

.source-row + .source-row {
  border-top: 1px solid #f0e6d7;
}

.source-row:hover {
  background: #f3fbf2;
}

.empty-panel {
  color: var(--muted);
  padding: 16px;
}

.category-card {
  display: grid;
  overflow: hidden;
}

.category-open {
  align-items: center;
  background: #fffdf8;
  border-bottom: 1px solid #f0e6d7;
  border-radius: 0;
  display: flex;
  gap: 12px;
  justify-content: start;
  min-height: 76px;
  padding: 14px;
  text-align: left;
}

.category-open:hover, .see-more:hover { background: #f3fbf2; }
.category-open small { color: var(--muted); display: block; font-size: 12px; margin-top: 3px; }

.cat-icon {
  align-items: center;
  background: var(--mint);
  border: 1px solid #b9ddcb;
  border-radius: 10px;
  color: var(--green);
  display: inline-flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
}

.cat-icon svg {
  fill: none;
  height: 27px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 27px;
}

.mini-list, .answer-list {
  display: grid;
}

.mini-product {
  border-bottom: 1px solid #f0e6d7;
  display: grid;
  gap: 2px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px 14px;
}

.mini-product span {
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-product small { grid-column: 1 / -1; }

.see-more {
  background: #fffdf8;
  border-radius: 0;
  color: var(--green);
  min-height: 42px;
  text-align: left;
}

.hidden { display: none; }

.detail-head {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.product-list {
  display: grid;
  gap: 0;
  overflow-x: auto;
}

.product-row {
  align-items: center;
  border-bottom: 1px solid #f0e6d7;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 1.4fr) minmax(170px, 1fr) minmax(110px, .7fr) minmax(105px, .6fr) minmax(110px, .6fr);
  min-width: 880px;
  padding: 12px;
}

.detail-grid-head {
  background: #f7eddf;
  border-bottom: 1px solid #eadfce;
  color: #415048;
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 14px;
  grid-template-columns: minmax(220px, 1.4fr) minmax(170px, 1fr) minmax(110px, .7fr) minmax(105px, .6fr) minmax(110px, .6fr);
  min-width: 880px;
  padding: 0 12px;
  text-transform: uppercase;
}

.detail-grid-head button,
.detail-grid-head span {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  display: flex;
  font-size: inherit;
  font-weight: inherit;
  min-height: 42px;
  padding: 0;
  text-align: left;
  text-transform: inherit;
}

.detail-grid-head button::after {
  color: #809087;
  content: "\2195";
  font-size: 11px;
  margin-left: 8px;
}

.detail-grid-head button.active::after {
  color: var(--green-dark);
  content: "\2191";
}

.detail-grid-head button.active.desc::after {
  content: "\2193";
}

.product-row:hover {
  background: #f6fcf4;
}

.product-row strong, .product-row span { display: block; }
.price-box { text-align: left; }
.price-box a { color: var(--green); display: block; font-size: 13px; font-weight: 800; margin-top: 4px; }

.source-link-block {
  display: grid;
  gap: 3px;
  justify-items: start;
}

.source-link-block small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.change {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-left: 6px;
  padding: 2px 7px;
}
.change.up { background: #f9d7d7; color: #7f1d1d; }
.change.down { background: var(--mint); color: #145437; }
.change.new { background: var(--lavender); color: #3a3470; text-transform: uppercase; }

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 20px auto 0;
  max-width: 1380px;
  padding: 22px clamp(14px, 3vw, 36px) 34px;
  width: 100%;
}

.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; }
a { color: var(--green); font-weight: 800; }

.admin-page {
  display: grid;
  gap: 18px;
}

.admin-shell {
  display: grid;
  gap: 18px;
}

.admin-tabs {
  align-items: center;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 8px;
  padding: 8px;
}

.admin-tabs button {
  background: #edf8ef;
  color: var(--green-dark);
}

.admin-tabs button.active {
  background: var(--green-dark);
  color: white;
}

.admin-tabs #logoutButton {
  margin-left: auto;
}

.admin-panel {
  padding: 16px;
}

.ad-form {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ad-form label:nth-child(4),
.ad-form label:nth-child(5),
.ad-form label:nth-child(6) {
  grid-column: 1 / -1;
}

.checkbox-label {
  align-items: center;
  display: flex;
  gap: 8px;
}

.checkbox-label input {
  min-height: auto;
  width: auto;
}

.admin-status {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.alt-status {
  grid-column: 1 / -1;
  margin-top: -4px;
}

.ad-admin-grid {
  display: grid;
  gap: 12px;
}

.ad-admin-card {
  align-items: center;
  border: 1px solid #efe4d4;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 160px minmax(0, 1fr) minmax(320px, auto) auto;
  padding: 12px;
}

.ad-admin-card img {
  aspect-ratio: 16 / 5;
  background: #eef8ef;
  border-radius: 6px;
  object-fit: contain;
  padding: 6px;
  width: 100%;
}

.ad-admin-card span,
.ad-admin-card small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.ad-admin-card dl {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.ad-admin-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ad-admin-card dd {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
}

.ad-card-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.ad-card-actions button {
  min-width: 96px;
}

.form-actions {
  display: flex;
  gap: 10px;
}

.store-admin-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
}

.store-admin-list {
  display: grid;
  gap: 8px;
  max-height: 720px;
  overflow: auto;
  padding-right: 4px;
}

.store-admin-list button {
  align-items: center;
  background: #fffdf8;
  border: 1px solid #eadfce;
  color: var(--ink);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px 12px;
  text-align: left;
}

.store-admin-list button.active {
  background: #eef8ef;
  border-color: #9ed38d;
  box-shadow: 0 0 0 3px rgba(143, 202, 121, .25);
}

.store-admin-list strong,
.store-admin-list small {
  display: block;
}

.store-admin-list small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.store-admin-list em,
.store-admin-preview em {
  background: #fff2c6;
  border: 1px solid #e6b539;
  border-radius: 999px;
  color: #5b4200;
  flex: 0 0 auto;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .03em;
  padding: 4px 7px;
  text-transform: uppercase;
}

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

.store-admin-form .wide,
.store-admin-form button,
.store-admin-form .admin-status,
.store-admin-preview {
  grid-column: 1 / -1;
}

.store-admin-form textarea {
  min-height: 110px;
  resize: vertical;
}

.store-admin-preview {
  align-items: start;
  background: #FAFDF8;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 92px;
  padding: 12px;
}

.store-admin-preview img {
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 82px;
  object-fit: cover;
  width: 110px;
}

.store-admin-preview strong {
  display: inline-flex;
  margin: 0 8px 6px 0;
}

.store-admin-preview p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.report-controls {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(240px, 1fr) minmax(160px, 220px);
  margin-bottom: 14px;
}

.report-summary {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 14px;
}

.report-summary div,
.integration-card {
  background: #f5fbf4;
  border: 1px solid #dcebdc;
  border-radius: 8px;
  padding: 12px;
}

.report-summary strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.report-summary span,
.integration-card span,
.report-row span {
  color: var(--muted);
  font-size: 12px;
}

.report-grid {
  display: grid;
  gap: 10px;
}

.cluster-controls {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(220px, 1fr) auto auto minmax(240px, auto);
  margin-bottom: 12px;
}

.cluster-hourly {
  background: #f5fbf4;
  border: 1px solid #dcebdc;
  border-radius: 8px;
  min-height: 48px;
  padding: 0 12px;
}

.cluster-live {
  background: #fff8df;
  border: 1px solid #e6c967;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin: 12px 0;
  padding: 14px;
}

.cluster-live span,
.cluster-live small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.cluster-live strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  margin: 2px 0;
}

.cluster-progress {
  background: #f4e6b8;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.cluster-progress span {
  background: var(--green);
  display: block;
  height: 100%;
  min-width: 2%;
  transition: width 180ms ease;
}

.cluster-grid {
  display: grid;
  gap: 10px;
}

.cluster-row {
  align-items: center;
  border: 1px solid #efe4d4;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px minmax(180px, 1fr) minmax(340px, 1.2fr) auto;
  padding: 12px;
}

.cluster-row.active {
  background: #effbef;
  border-color: var(--green-bright);
}

.cluster-rank {
  align-items: center;
  background: var(--green-dark);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.cluster-row span {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

.cluster-row dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.cluster-row dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.cluster-row dd {
  font-size: 17px;
  font-weight: 900;
  margin: 0;
}

.cluster-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.next-badge {
  background: #fff0c3;
  border: 1px solid #e7c45a;
  border-radius: 999px;
  color: #5c4200 !important;
  font-size: 11px !important;
  font-weight: 900;
  padding: 5px 9px;
  text-transform: uppercase;
}

button.danger {
  background: #b42318;
  color: white;
}

button.danger:hover {
  background: #8d1c14;
}

.report-row {
  align-items: center;
  border: 1px solid #efe4d4;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 1fr) minmax(520px, auto);
  padding: 12px;
}

.report-row dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
}

.report-row dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.report-row dd {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
}

.integration-card {
  align-content: center;
  display: grid;
  gap: 4px;
}

@media print {
  .site-header, .admin-tabs, #loginPanel, [data-section="advertising"], [data-section="settings"], .report-controls, #printReportButton {
    display: none !important;
  }
  body, :root {
    background: white;
    color: #111;
  }
  main {
    max-width: none;
    padding: 0;
  }
  .admin-panel {
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .site-header, .section-head, .detail-head, .site-footer { align-items: stretch; display: grid; }
  .ask-row, .search-panel, .location-panel, .summary { grid-template-columns: 1fr; }
  .ai-toggle { grid-template-columns: auto minmax(0, 1fr); }
  .ai-toggle small { grid-column: 2; white-space: normal; }
  .location-actions { display: grid; grid-template-columns: 1fr; }
  .category-sections, .stores-sources-grid, .chain-grid, .directory-list { grid-template-columns: 1fr; }
  .store-source-head, .source-row { align-items: stretch; display: grid; }
  .store-type-grid { grid-template-columns: 1fr; }
  .price-box { text-align: left; }
  .ad-form, .ad-admin-card, .report-controls, .report-summary, .report-row, .report-row dl, .cluster-controls, .cluster-row, .cluster-row dl, .user-row, .user-row dl, .store-admin-layout, .store-admin-form, .store-admin-preview { grid-template-columns: 1fr; }
  .admin-tabs { align-items: stretch; display: grid; }
  .admin-tabs #logoutButton { margin-left: 0; }
  .ad-form label:nth-child(4),
  .ad-form label:nth-child(5),
  .ad-form label:nth-child(6) {
    grid-column: auto;
  }
}

/* Florida Dispensary Deals visual handoff */
:root {
  --ink: #111417;
  --muted: #59616B;
  --paper: #FFFFFF;
  --wash: #EEF8EF;
  --canvas: #FBFCFB;
  --line: #DFE6DF;
  --line-strong: #C7DAC8;
  --green-dark: #075F25;
  --green: #08752D;
  --green-primary: #078C37;
  --green-bright: #2EAA4F;
  --lime: #74BB2A;
  --orange: #F28A18;
  --shadow-soft: 0 18px 42px rgba(7, 95, 37, .10);
  --shadow-card: 0 10px 24px rgba(17, 20, 23, .08);
  font-family: "FDD Sans", "Arial", "Helvetica Neue", system-ui, sans-serif;
  background: var(--canvas);
}

body {
  background:
    radial-gradient(circle at 4% 6%, rgba(116, 187, 42, .12), transparent 12rem),
    radial-gradient(circle at 94% 80%, rgba(46, 170, 79, .12), transparent 18rem),
    var(--canvas);
  color: var(--ink);
  min-width: 0;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  color: rgba(7, 140, 55, .28);
  content: "✦";
  font-size: clamp(110px, 12vw, 210px);
  line-height: 1;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

body::before {
  left: -30px;
  top: 18px;
  transform: rotate(-28deg);
}

body::after {
  bottom: -38px;
  right: -18px;
  transform: rotate(18deg);
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(223, 230, 223, .92);
  border-radius: 0 0 28px 28px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  display: grid;
  gap: clamp(18px, 2.5vw, 36px);
  grid-template-columns: minmax(270px, 360px) minmax(360px, 1fr) minmax(310px, 390px);
  margin: 0 auto;
  max-width: 1672px;
  padding: 22px clamp(24px, 4vw, 58px);
}

.brand-mark {
  align-items: center;
  color: var(--ink);
  display: grid;
  gap: 14px;
  grid-template-columns: 92px minmax(0, 1fr);
  text-decoration: none;
}

.brand-leaf-img {
  display: block;
  height: 92px;
  width: 92px;
}

.brand-mark strong {
  display: block;
  font-family: "FDD Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: .08em;
  line-height: .9;
  text-transform: uppercase;
}

.brand-mark small {
  color: var(--green-primary);
  display: block;
  font-family: "FDD Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  margin-top: 6px;
  text-transform: uppercase;
}

.hero-search {
  display: grid;
  gap: 16px;
}

.hero-search h1 {
  font-family: "FDD Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(30px, 2.1vw, 32px);
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.08;
  max-width: none;
  text-transform: uppercase;
}

.hero-search h1 span {
  color: var(--green-primary);
}

.deal-search {
  align-items: center;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 16px rgba(7, 95, 37, .08);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 50px;
  padding: 8px 9px 8px 24px;
}

.deal-search input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 17px;
  min-height: 46px;
  padding: 0;
}

.deal-search button {
  align-items: center;
  background: var(--green-primary);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  min-height: 50px;
  padding: 0;
  width: 50px;
}

.deal-search img {
  display: block;
  filter: brightness(0) invert(1);
  height: 24px;
  width: 24px;
}

.trust-strip {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(7, 95, 37, .08);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 112px;
  overflow: hidden;
}

.trust-strip div,
.top-deals-trigger {
  align-content: center;
  display: grid;
  justify-items: center;
  padding: 14px;
  text-align: center;
}

.top-deals-trigger {
  background: white;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  min-height: 112px;
  width: 100%;
}

.top-deals-trigger:hover,
.top-deals-trigger:focus-visible {
  background: #f1faf2;
  outline: 3px solid rgba(244, 153, 20, .4);
  outline-offset: -3px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip span {
  align-items: center;
  background: transparent;
  border-radius: 0;
  color: var(--green-primary);
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  margin-bottom: 8px;
  width: 38px;
}

.top-deals-section {
  scroll-margin-top: 18px;
}

.top-deals-head {
  align-items: end;
}

.smart-picks-label {
  color: var(--green-primary);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.top-deals-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.top-deal-category {
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 95, 37, .07);
  min-width: 0;
  overflow: hidden;
}

.top-deal-category > header {
  align-items: center;
  background: #eef8ef;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  padding: 13px 14px;
}

.top-deal-category > header .cat-icon {
  flex: 0 0 auto;
}

.top-deal-category > header div {
  display: grid;
  gap: 1px;
}

.top-deal-category > header strong {
  color: var(--green-dark);
  font-size: 18px;
  text-transform: uppercase;
}

.top-deal-category > header small {
  color: var(--muted);
}

.top-deal-list {
  display: grid;
}

.top-deal {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 9px;
  grid-template-columns: 22px 38px minmax(0, 1fr) auto;
  min-height: 82px;
  padding: 10px 12px;
}

.top-deal + .top-deal {
  border-top: 1px solid #e4ece4;
}

.top-deal:hover,
.top-deal:focus-visible {
  background: #f7fbf6;
  outline: none;
}

.top-deal-rank {
  align-items: center;
  background: #f4a51c;
  border-radius: 50%;
  color: #172014;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.top-deal-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.top-deal-copy strong,
.top-deal-copy span,
.top-deal-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-deal-copy strong {
  font-size: 14px;
}

.top-deal-copy span {
  color: var(--muted);
  font-size: 11px;
}

.top-deal-copy small {
  color: var(--green-primary);
  font-size: 10px;
  font-weight: 800;
}

.top-deal > b {
  color: var(--green-primary);
  font-size: 15px;
}

.top-deal-category-link {
  background: #f4faf3;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 900;
  padding: 12px;
  text-transform: uppercase;
  width: 100%;
}

.top-deal-category-link:hover {
  background: #e6f5e7;
}

@media (max-width: 1280px) {
  .top-deals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .top-deals-grid { grid-template-columns: 1fr; }
  .top-deals-head { align-items: start; }
}

.trust-strip span img {
  display: block;
  filter: brightness(0) saturate(100%) invert(27%) sepia(73%) saturate(1303%) hue-rotate(110deg) brightness(92%) contrast(94%);
  height: 100%;
  width: 100%;
}

.trust-strip strong {
  font-family: "FDD Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.trust-strip small {
  color: var(--muted);
  font-size: 12px;
}

main {
  max-width: 1600px;
  padding: 20px clamp(18px, 2.4vw, 42px) 38px;
}

section {
  margin-top: 18px;
}

.deal-tools,
.ai-panel,
.florida-panel,
.pricing-panel,
.summary div,
.category-card,
.category-detail,
.store-source-card,
.empty-panel,
.proof-strip,
.admin-panel {
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.deal-tools {
  align-items: stretch;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
  padding: 0;
  width: 100%;
}

.deal-tools > * {
  margin-top: 0;
}

.deal-tools > .ai-panel,
.deal-tools > .zip-card,
.deal-tools > .florida-panel {
  align-self: stretch;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 286px;
  width: 100%;
}

.deal-tools label {
  color: #334039;
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.deal-tools > label {
  max-width: 520px;
}

input,
select,
textarea {
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
}

button {
  background: var(--green-primary);
  border-radius: 12px;
  color: white;
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
}

button.secondary {
  background: #EEF8EF;
  color: var(--green-dark);
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(116, 187, 42, .42);
  outline-offset: 3px;
}

.zip-card {
  display: grid;
  gap: 10px;
  justify-self: stretch;
  max-width: none;
  padding: 12px 14px 14px;
  text-align: center;
}

.zip-card label {
  display: grid;
  gap: 8px;
}

.zip-card input {
  border-color: transparent;
  font-size: 20px;
  font-weight: 900;
  min-height: 42px;
  text-align: center;
}

.location-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-actions button {
  min-height: 40px;
  padding: 8px 10px;
}

#locationStatus {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
  text-align: center;
}

.store-in-zip {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  text-align: left;
}

.store-in-zip select {
  border: 1px solid #9fd18e;
  box-shadow: 0 0 0 4px rgba(116, 187, 42, .25);
  min-height: 48px;
}

#locationApplyButton {
  background: linear-gradient(180deg, #F0AA27, #DA7B18);
  color: #1f1608;
}

.location-panel {
  display: none;
}

.market-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
}

.market-main {
  display: grid;
  gap: 18px;
}

.feature-panels {
  display: none;
}

.pricing-panel > .ai-toggle {
  display: none;
}

.pricing-panel {
  box-shadow: none;
  border: 0;
  background: transparent;
}

.pricing-panel > .panel-body {
  border-top: 0;
  padding: 0;
}

.ai-toggle {
  background: white;
  border-radius: 18px;
  color: var(--green-dark);
  min-height: 100%;
  padding: 16px;
  width: 100%;
}

.tool-card {
  align-content: stretch;
  display: grid;
  gap: 10px;
  min-height: 286px;
  padding: 14px;
}

.ai-panel.tool-card {
  grid-template-rows: auto auto minmax(54px, 1fr);
}

.florida-panel.tool-card {
  grid-template-rows: auto 1fr auto;
}

.zip-card {
  grid-template-rows: auto auto auto 1fr;
}

.deal-tools .ai-panel,
.deal-tools .florida-panel,
.deal-tools .zip-card {
  min-height: 286px;
}

.tool-card-head {
  display: grid;
  gap: 4px;
}

.tool-card-head strong {
  color: var(--green-dark);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 21px;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.tool-card-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.ask-row.compact {
  align-items: start;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr);
}

.ask-row.compact textarea {
  min-height: 72px;
  resize: none;
}

.ask-row.compact button {
  justify-self: start;
  min-height: 40px;
  min-width: 118px;
  padding-left: 12px;
  padding-right: 12px;
}

.database-preview {
  align-content: center;
  background:
    radial-gradient(circle at 14% 16%, rgba(7, 140, 55, .08), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(240, 170, 39, .12), transparent 32%),
    linear-gradient(180deg, rgba(247, 251, 246, .85), rgba(255, 253, 248, .92));
  border: 1px solid rgba(18, 48, 38, .08);
  border-radius: 14px;
  display: grid;
  gap: 8px 6px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  min-height: 128px;
  padding: 10px 8px;
}

.database-preview-cell {
  align-items: center;
  display: grid;
  gap: 4px;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.database-preview-bubble {
  align-items: center;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.9), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #F6CD65, #E7A92E);
  border: 1px solid rgba(143, 101, 22, .24);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 8px 15px rgba(31, 111, 90, .08);
  color: #132c22;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.database-preview-bubble strong {
  font-size: 17px;
  font-weight: 950;
}

.database-preview-cell small {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.database-link {
  align-items: center;
  align-self: end;
  background: #EEF8EF;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--green-dark);
  display: inline-flex;
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-weight: 900;
  justify-content: center;
  letter-spacing: .03em;
  min-height: 40px;
  padding: 8px 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.database-hero {
  color: var(--ink);
}

.database-hero p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  max-width: 720px;
}

.database-header-link {
  align-self: center;
  background: #EEF8EF;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--green-dark);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-weight: 900;
  justify-self: end;
  letter-spacing: .03em;
  padding: 12px 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.database-page-panel {
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 16px;
}

.database-controls {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(180px, 260px) auto minmax(0, 1fr);
}

.database-controls p {
  align-self: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  margin: 0;
}

.database-stat-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.database-stat-grid div {
  background: #F7FBF6;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.database-stat-grid strong {
  color: var(--green-primary);
  display: block;
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.database-stat-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.database-page-grid {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}

.database-bubble-map {
  min-height: 340px;
}

.chain-card.active-chain {
  border-color: #9fd18e;
  box-shadow: inset 4px 0 0 var(--green-primary);
}

.ai-toggle span {
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ai-toggle em {
  color: var(--green-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  grid-column: 2 / -1;
  letter-spacing: .03em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ai-toggle strong {
  background: #EEF8EF;
  border-color: var(--line-strong);
  color: var(--green-primary);
}

.summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.summary div {
  border-top: 0 !important;
  padding: 15px 18px;
}

.summary strong {
  color: var(--green-dark);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 30px;
}

.summary span {
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.section-head {
  align-items: center;
  margin: 26px 0 14px;
}

.section-head h2 {
  font-family: "FDD Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(25px, 2vw, 34px);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section-head h2 span {
  color: var(--green-primary);
}

.section-head p {
  color: var(--muted);
  font-size: 14px;
}

.category-sections {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
  border-radius: 18px;
  min-width: 0;
  overflow: hidden;
}

.category-card-hero {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: block;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.category-card-image {
  aspect-ratio: 20 / 3;
  background: #F7FBF6;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.category-card-hero em {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-style: normal;
  padding: 9px 12px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

.category-card-hero:hover .category-card-image {
  filter: saturate(1.05);
}

.category-open {
  background: white;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 82px;
  padding: 16px 18px;
  width: 100%;
}

.category-open strong {
  color: var(--green-dark);
  font-family: "FDD Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 25px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.category-open small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.category-open em {
  align-self: center;
  background: #F5F7F5;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-style: normal;
  padding: 9px 12px;
  white-space: nowrap;
}

.cat-icon {
  background: #E9F7EB;
  border-color: var(--line-strong);
  border-radius: 999px;
  color: var(--green-primary);
  flex-basis: 48px;
  height: 48px;
  width: 48px;
}

.cat-icon img {
  display: block;
  filter: none;
  height: 24px;
  object-fit: contain;
  width: 24px;
}

.category-value-strip {
  background: #F7FBF6;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) minmax(112px, auto);
  padding: 10px 18px;
}

.category-value-strip > div {
  align-items: center;
  display: grid;
  gap: 2px;
}

.category-value-strip span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.category-value-strip strong {
  color: var(--green-dark);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.category-trend {
  justify-items: end;
}

.category-trend strong {
  color: var(--muted);
  font-size: 17px;
}

.category-trend.up strong {
  color: #9B2C2C;
}

.category-trend.down strong {
  color: var(--green-primary);
}

.category-trend.neutral strong {
  color: var(--muted);
}

.sparkline {
  display: block;
  height: 22px;
  margin-top: 2px;
  width: 86px;
}

.sparkline path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.mini-product {
  align-items: center;
  border-bottom: 1px solid var(--line);
  column-gap: 12px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  min-height: 60px;
  padding: 9px 18px;
}

.product-click-target {
  cursor: pointer;
}

.product-click-target:focus-visible {
  outline: 3px solid rgba(116, 187, 42, .42);
  outline-offset: -3px;
}

.mini-product:hover,
.product-row:hover {
  background: #F6FCF4;
}

.product-thumb {
  align-items: center;
  background: radial-gradient(circle at 35% 25%, #ecffed, #86c765 55%, #08752D);
  border: 1px solid #d2e2d1;
  border-radius: 12px;
  color: white;
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.product-thumb.image-thumb {
  background: #F7FBF6;
  display: block;
  object-fit: contain;
}

.product-thumb.category-product-thumb {
  background: #F7FBF6;
  object-fit: contain;
  padding: 6px;
}

.inline-product-details {
  background: #F7FBF6;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding: 14px 18px 16px;
}

.product-row + .inline-product-details {
  min-width: 880px;
}

.inline-product-head {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, 1fr);
}

.inline-product-head .product-thumb {
  height: 44px;
  width: 44px;
}

.inline-product-head p {
  color: var(--green-primary);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  margin: 0 0 3px;
  text-transform: uppercase;
}

.inline-product-head strong,
.inline-product-head span {
  display: block;
}

.inline-product-head span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.inline-product-facts {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.inline-product-facts div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}

.inline-product-facts dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.inline-product-facts dd {
  font-size: 15px;
  font-weight: 900;
  margin: 3px 0 0;
}


.inline-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.price-history {
  background: #F7FBF6;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.product-list > .price-history {
  margin-bottom: 10px;
  min-width: 880px;
}

.inline-history {
  margin-top: 2px;
}

.price-history-head {
  align-items: baseline;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.price-history-head strong {
  color: var(--green-dark);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.price-history-head span,
.history-legend,
.history-empty {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.price-history-chart {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.history-svg {
  display: block;
  height: auto;
  width: 100%;
}

.history-svg line {
  stroke: #D7E2D6;
  stroke-width: 1;
}

.history-svg text {
  fill: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.history-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.history-line.primary {
  stroke: var(--green-primary);
}

.history-line.secondary {
  stroke: var(--orange);
  stroke-dasharray: 7 7;
  stroke-width: 3;
}

.history-svg circle {
  fill: white;
  stroke: var(--green-primary);
  stroke-width: 2;
}

.history-legend {
  align-items: center;
  display: flex;
  gap: 7px;
  padding: 0 2px 2px;
}

.history-legend span {
  border-radius: 999px;
  display: inline-block;
  height: 4px;
  width: 24px;
}

.history-legend .primary {
  background: var(--green-primary);
}

.history-legend .secondary {
  background: var(--orange);
}

.history-empty {
  padding: 18px;
  text-align: center;
}

.product-review-panel {
  background: #FFFDF8;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.product-review-head {
  display: flex;
  justify-content: space-between;
}

.product-review-head strong {
  color: var(--green-dark);
  display: block;
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 19px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.product-review-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.product-review-list {
  display: grid;
  gap: 8px;
}

.product-review-ai {
  align-items: start;
  background: linear-gradient(135deg, #F2FFF3 0%, #FFF7DF 100%);
  border: 1px solid #BFE2BE;
  border-radius: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: 44px 1fr;
  padding: 12px;
}

.product-review-ai[hidden] {
  display: none;
}

.ai-review-mark {
  align-items: center;
  background: var(--green-primary);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 112, 44, .18);
  color: #fff;
  display: flex;
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: 17px;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  letter-spacing: .03em;
  width: 44px;
}

.product-review-ai strong {
  color: var(--green-dark);
  display: block;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .03em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.product-review-ai p {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.product-review-details {
  background: #F7FBF6;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}

.product-review-form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.product-review-snippet {
  background: #F7FBF6;
}

.review-rating-line {
  align-items: center;
  color: #C88400;
  display: flex;
  font-size: 14px;
  font-weight: 950;
  gap: 7px;
  letter-spacing: .04em;
  margin-top: 5px;
}

.review-rating-line small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.users-grid {
  display: grid;
  gap: 12px;
}

.user-row {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 1fr) minmax(620px, auto);
  padding: 12px;
}

.user-row span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 4px;
}

.user-row dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
}

.user-row dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.user-row dd {
  font-size: 15px;
  font-weight: 900;
  margin: 0;
}

.product-title-cell {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 38px minmax(0, 1fr);
  min-width: 0;
}

.product-title-cell div {
  min-width: 0;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 24px;
  position: fixed;
  z-index: 1000;
}

.product-modal-backdrop {
  background: rgba(17, 20, 23, .48);
  inset: 0;
  position: absolute;
}

.product-modal-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17, 20, 23, .26);
  display: grid;
  gap: 18px;
  max-height: calc(100vh - 48px);
  max-width: 640px;
  overflow: auto;
  padding: 22px;
  position: relative;
  width: min(100%, 640px);
}

.product-modal-close {
  align-items: center;
  background: #EEF8EF;
  border-radius: 999px;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
}

.product-modal-head {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 54px minmax(0, 1fr);
  padding-right: 42px;
}

.product-modal-head .product-thumb {
  height: 54px;
  width: 54px;
}

.product-modal-head p {
  color: var(--green-primary);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-weight: 900;
  letter-spacing: .05em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.product-modal-head h2 {
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
}

.product-modal-head span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 5px;
}

.product-modal-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.product-modal-facts div {
  background: #F7FBF6;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.product-modal-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-modal-facts dd {
  font-size: 17px;
  font-weight: 900;
  margin: 4px 0 0;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-profile-note {
  align-items: start;
  background: #FAFDF8;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 12px;
}

.store-profile-note img {
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 72px;
  object-fit: cover;
  width: 96px;
}

.store-profile-note.no-image {
  grid-template-columns: 1fr;
}

.store-profile-note h3 {
  color: var(--green-primary);
  font-size: 13px;
  letter-spacing: .04em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.store-profile-note p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
}

.store-profile-content {
  min-width: 0;
}

.store-description-missing {
  color: var(--muted) !important;
  font-style: italic;
}

.store-business-details {
  border-top: 1px solid #dce9dc;
  display: grid;
  gap: 10px 18px;
  grid-template-columns: minmax(0, 1.7fr) minmax(130px, .8fr);
  margin-top: 11px;
  padding-top: 10px;
}

.store-business-details > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.store-business-details span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-business-details strong {
  font-size: 13px;
  line-height: 1.3;
}

.store-business-details a {
  color: var(--green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.store-profile-source {
  border-top: 1px solid #edf2ed;
  padding-top: 7px;
}

.store-profile-note small {
  display: block;
  font-size: 12px;
  margin-top: 6px;
}

@media (max-width: 620px) {
  .store-profile-note {
    grid-template-columns: 1fr;
  }

  .store-profile-note img {
    height: 90px;
    width: 120px;
  }

  .store-business-details {
    grid-template-columns: 1fr;
  }
}

.product-quality-note {
  background: #FFFBF0;
  border: 1px solid #EAD9A7;
  border-radius: 12px;
  color: #4E4225;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  padding: 11px 12px;
}

.modal-source-link {
  justify-items: stretch;
}

.button-link {
  align-items: center;
  background: var(--green-primary);
  border-radius: 12px;
  color: white;
  display: inline-flex;
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-weight: 900;
  justify-content: center;
  letter-spacing: .03em;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  text-transform: uppercase;
}

body.modal-open {
  overflow: hidden;
}

.mini-product span:not(.product-thumb) {
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.mini-product strong {
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
}

.mini-product small {
  color: var(--muted);
  font-size: 12px;
  grid-column: 2 / -1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.see-more {
  align-items: center;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--green-dark);
  display: flex;
  justify-content: center;
  margin: 16px 18px 18px;
  min-height: 44px;
  padding: 0 16px;
  text-align: center;
}

.see-more img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(73%) saturate(1303%) hue-rotate(110deg) brightness(92%) contrast(94%);
  height: 18px;
  margin-left: auto;
  width: 18px;
}

.ad-slot {
  background: white;
  border-color: var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.ad-slot-top {
  max-width: 970px;
}

.ad-slot-card {
  background: #F7FBF6;
  min-height: 100%;
  padding: 26px;
}

.ad-slot-card .ad-placeholder,
.ad-slot-card .ad-creative {
  min-height: 280px;
}

.ad-placeholder {
  background:
    linear-gradient(24deg, transparent calc(50% - 1px), rgba(242, 138, 24, .42) 50%, transparent calc(50% + 1px)),
    linear-gradient(156deg, transparent calc(50% - 1px), rgba(242, 138, 24, .42) 50%, transparent calc(50% + 1px)),
    linear-gradient(135deg, #fffdf8, #f3fbf3 55%, #fff4dc);
}

.ad-placeholder strong {
  color: var(--green-dark);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.ad-creative span {
  background: var(--green-dark);
}

.proof-strip {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  padding: 14px 22px;
}

.proof-strip div {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
}

.proof-leaf {
  background: #E9F7EB;
  border-radius: 999px;
  display: block;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.proof-leaf {
  filter: brightness(0) saturate(100%) invert(34%) sepia(90%) saturate(1007%) hue-rotate(111deg) brightness(91%) contrast(94%);
}

.proof-strip strong {
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.proof-strip small {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

.category-detail {
  margin-top: 22px;
}

.detail-grid-head {
  background: #EEF8EF;
  border-color: var(--line);
}

.product-row {
  background: white;
  border-color: var(--line);
}

.price-box strong {
  color: var(--green);
  font-size: 18px;
}

.stores-sources-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.deal-signup-card {
  box-shadow: 0 12px 34px rgba(7, 95, 37, .08);
}

.store-review-block {
  background: #FBFDFB;
}

.site-footer {
  background: rgba(255,255,255,.8);
  border-top-color: var(--line);
}

.seo-content {
  background: rgba(255,255,255,.82);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 18px auto 0;
  max-width: 1380px;
  padding: 24px clamp(14px, 3vw, 36px);
}

.seo-content h2 {
  color: var(--green-dark);
  font-family: "FDD Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: .03em;
  margin: 0;
  text-transform: uppercase;
}

.seo-content p {
  line-height: 1.55;
  margin: 0;
  max-width: 920px;
}

a {
  color: var(--green-dark);
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  }

  .trust-strip {
    grid-column: 1 / -1;
  }

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

  .market-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {
  body::before,
  body::after {
    display: none;
  }

  .site-header,
  .deal-tools,
  .market-trend-panel,
  .feature-panels,
  .summary,
  .category-sections,
  .proof-strip,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 0 0 22px 22px;
    padding: 18px;
  }

  .brand-mark {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .brand-leaf-img {
    height: 54px;
    width: 54px;
  }

  .hero-search h1 {
    font-size: 30px;
    line-height: 1.04;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .deal-tools {
    align-items: stretch;
    gap: 12px;
  }

  .market-trend-panel {
    display: block;
    gap: 12px;
    margin-top: 10px;
    padding: 9px 10px 7px;
  }

  .market-trend-head {
    align-items: stretch;
    display: grid;
    gap: 8px;
  }

  .market-trend-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .market-trend-controls label {
    justify-content: space-between;
  }

  .market-trend-controls select {
    min-width: 170px;
  }

  .market-trend-chart {
    min-height: 88px;
    padding-top: 10px;
  }

  .deal-tools > label,
  .zip-card {
    grid-column: auto;
    max-width: none;
  }

  .deal-tools .ai-panel,
  .deal-tools .florida-panel,
  .deal-tools .zip-card {
    min-height: 240px;
  }

  .deal-tools .ai-panel:not(.collapsed),
  .deal-tools .florida-panel:not(.collapsed) {
    grid-column: auto;
    order: initial;
  }

  .ai-toggle {
    min-height: 74px;
  }

  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ask-row.compact,
  .database-controls,
  .database-stat-grid,
  .database-page-grid {
    grid-template-columns: 1fr;
  }

  .ask-row.compact button {
    min-width: 0;
  }

  .database-header-link {
    justify-self: stretch;
    text-align: center;
  }

  .deal-signup-card,
  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .deal-signup-card {
    align-items: stretch;
  }

  .mini-product {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding-left: 14px;
    padding-right: 14px;
  }

  .inline-product-details {
    padding-left: 14px;
    padding-right: 14px;
  }

  .inline-product-facts {
    grid-template-columns: 1fr;
  }

  .category-open {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .category-open em {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .ad-slot-card {
    padding: 18px;
  }

  .ad-slot-card .ad-placeholder,
  .ad-slot-card .ad-creative {
    min-height: 220px;
  }
}

@media (max-width: 440px) {
  main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .deal-search {
    grid-template-columns: minmax(0, 1fr) 44px;
    padding-left: 16px;
  }

  .deal-search input {
    font-size: 15px;
  }

  .deal-search button {
    height: 44px;
    min-height: 44px;
    width: 44px;
  }

  .mini-product strong {
    font-size: 15px;
  }

  .mini-product span:not(.product-thumb),
  .mini-product small {
    white-space: normal;
  }
}
