:root {
  --bg: #070707;
  --bg-2: #101010;
  --card: #151515;
  --line: #2a2a2a;
  --text: #f3f3f3;
  --muted: #a8a8a8;
  --green: #7cff3a;
  --green-dim: #4cbf24;
  --green-soft: rgba(124, 255, 58, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.admin-html {
  scroll-behavior: auto;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--green);
  color: #061400;
  padding: 8px 12px;
  font-weight: 700;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.hero,
.finder,
.notice,
.prices,
.about,
.contact,
.reviews-teaser,
.reviews-list,
.page-hero,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

.brand strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.site-nav a,
.site-nav .nav-logout button {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .nav-logout button:hover,
.site-nav .nav-logout button:focus-visible {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: #061400 !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 40px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: Oswald, sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

[hidden] {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background: var(--green);
  color: #061400;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #93ff5c;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-stats dd {
  margin: 4px 0 0;
  font-family: Oswald, sans-serif;
  font-size: 1.4rem;
  color: var(--green);
}

.hero-logo img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.notice {
  background: var(--green-soft);
  border: 1px solid rgba(124, 255, 58, 0.25);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: #d8ffc4;
}

.notice p {
  margin: 0;
}

.finder,
.prices,
.about,
.contact {
  padding: 72px 0 20px;
}

.finder,
.price-card,
#hours,
#contact {
  scroll-margin-top: 96px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head p:last-child {
  color: var(--muted);
  margin: 0;
  max-width: 40rem;
}

.finder-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  position: sticky;
  top: 76px;
  z-index: 20;
  background: rgba(7, 7, 7, 0.94);
  padding: 12px 0;
}

.finder-search .result-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.live-results {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.live-results button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.live-results button:hover,
.live-results button:focus-visible {
  border-color: var(--green);
  background: var(--green-soft);
  outline: none;
}

.live-results strong {
  color: var(--green);
  white-space: nowrap;
}

.live-results[data-mode="popular"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.live-results[data-mode="popular"] button {
  display: grid;
  align-content: start;
  align-items: stretch;
  gap: 10px;
  min-height: 118px;
}

.popular-cat-name {
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--green);
}

.popular-cat-item {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 2.6em;
}

.popular-cat-item span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popular-cat-item strong {
  justify-self: start;
}

.popular-cat-item.is-swap {
  animation: popular-swap 0.45s ease;
}

@keyframes popular-swap {
  from {
    opacity: 0.25;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .popular-cat-item.is-swap {
    animation: none;
  }
}

.live-empty {
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 16px;
  color: var(--muted);
}

tbody tr {
  scroll-margin-top: 140px;
}

.search-wrap {
  display: block;
}

.search-wrap input {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  padding: 0 18px;
  font: inherit;
  font-size: 1.05rem;
}

.search-wrap input:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cat-card {
  display: grid;
  gap: 6px;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  min-height: 118px;
}

.cat-card:hover,
.cat-card:focus-visible,
.cat-card.is-active {
  border-color: var(--green);
  background: var(--green-soft);
  outline: none;
}

.cat-name {
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.cat-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.cat-card strong {
  color: var(--green);
  margin-top: auto;
}

.prices-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
}

.list-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.chip {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  cursor: pointer;
}

.chip.is-active,
.chip:hover {
  background: var(--green);
  color: #061400;
  border-color: var(--green);
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
}

.price-card h3 {
  color: var(--green);
  font-size: 1.45rem;
}

.card-note {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

td:last-child,
th:last-child {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 16px;
}

td span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.86rem;
}

tr.is-match {
  background: var(--green-soft);
}

tr.is-match td:first-child {
  box-shadow: inset 3px 0 0 var(--green);
  padding-left: 12px;
}

.empty-state {
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
}

.about-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.about-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 16px;
}

.hours-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.hours-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.hours-note {
  color: var(--muted);
  margin: 14px 0 16px;
}

.hours-card .btn {
  width: 100%;
}

.phone-inline {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.phone-inline:hover,
.phone-inline:focus-visible {
  text-decoration: underline;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.quote-form label span,
.quote-form .form-status {
  font-weight: 400;
  color: var(--muted);
}

.quote-form .full,
.quote-form button,
.quote-form .form-status,
.quote-form .form-banner {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background-color: #0d0d0d;
  color: var(--text);
  caret-color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color-scheme: dark;
}

.quote-form input[type="text"],
.quote-form input[type="password"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="number"],
.quote-form input[type="search"],
.quote-form input[type="date"] {
  appearance: none;
  background-color: #0d0d0d;
  color: var(--text);
}

.quote-form input:-webkit-autofill,
.quote-form input:-webkit-autofill:hover,
.quote-form input:-webkit-autofill:focus,
.quote-form textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  border-color: var(--line);
  box-shadow: 0 0 0 1000px #0d0d0d inset;
  transition: background-color 99999s ease-out;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}

.quote-form button {
  justify-self: start;
}

.form-status.is-success {
  color: var(--green);
}

.reviews-teaser,
.reviews-list,
.page-hero {
  padding: 72px 0 20px;
}

.page-hero {
  padding-top: 48px;
}

.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.form-banner {
  border-radius: 14px;
  padding: 14px 16px;
  margin: 0 0 18px;
}

.form-banner.is-success {
  background: var(--green-soft);
  color: var(--green);
}

.form-banner.is-error {
  background: #3a1212;
  color: #ffb4b4;
}

.rating-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.rating-fieldset legend {
  font-weight: 600;
  margin-bottom: 8px;
}

.star-picks {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  position: relative;
}

.star-picks input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.star-picks label {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 2.1rem;
  line-height: 1;
  color: #6b6b6b;
  cursor: pointer;
}

.star-picks label::before {
  content: "★";
}

.star-picks label:hover,
.star-picks label:hover ~ label,
.star-picks input:checked ~ label,
.star-picks input:focus-visible + label {
  color: var(--green);
}

.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
}

.review-card h3 {
  margin: 4px 0;
}

.review-stars {
  margin: 0;
  color: var(--green);
  letter-spacing: 0.08em;
  font-size: 1.1rem;
}

.review-meta {
  margin: 0 0 12px;
  color: var(--muted);
}

.site-footer {
  padding: 48px 0 64px;
  text-align: center;
  color: var(--muted);
}

.site-footer img {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 16px;
}

.site-footer p {
  margin: 4px 0;
}

.fine-print {
  max-width: 46rem;
  margin: 16px auto 0 !important;
  font-size: 0.85rem;
}

.footer-legal,
.footer-credit {
  margin-top: 14px !important;
  font-size: 0.85rem;
}

.footer-credit a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--green);
}

.owner-link {
  margin-top: 18px !important;
  font-size: 0.8rem;
}

.owner-link a {
  color: #666;
  text-decoration: none;
}

.owner-link a:hover,
.owner-link a:focus-visible {
  color: var(--muted);
  text-decoration: underline;
}

.admin-narrow {
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 48px;
}

.admin-page .page-hero,
.admin-page .admin-panel,
.admin-page .prices,
.admin-page .contact,
.admin-page .admin-tabs,
.admin-page main > .quote-form,
.admin-page main > .form-banner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.admin-page .page-hero,
.admin-page .admin-panel > .section-head,
.admin-page .contact > .section-head {
  text-align: center;
}

.admin-page .page-hero .lede,
.admin-page .section-head p:last-child {
  margin-inline: auto;
}

.nav-logout {
  margin: 0;
  display: inline-flex;
}

.site-nav .nav-logout button:not(.btn) {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: inherit;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  position: sticky;
  top: 76px;
  z-index: 30;
  padding: 10px 0 12px;
  background: rgba(7, 7, 7, 0.94);
  backdrop-filter: blur(16px);
}

.admin-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.admin-tab:hover,
.admin-tab:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.admin-tab.is-active {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green);
}

.admin-switch {
  display: flex !important;
  align-items: center;
  gap: 14px;
}

.admin-switch input {
  appearance: none;
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 999px;
  background: #222;
  border: 1px solid var(--line);
  position: relative;
  cursor: pointer;
}

.admin-switch input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #888;
  transition: transform 0.15s ease, background 0.15s ease;
}

.admin-switch input:checked {
  background: var(--green-soft);
  border-color: var(--green);
}

.admin-switch input:checked::after {
  transform: translateX(20px);
  background: var(--green);
}

.admin-switch input:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}

.admin-switch span {
  font-weight: 600;
  color: var(--text);
}

.admin-panel,
.admin-card,
.admin-item,
.admin-review,
#reviews,
#shop,
#account,
#list,
#add {
  scroll-margin-top: 96px;
}

.admin-filter input {
  min-height: 44px;
  min-width: min(280px, 100%);
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
}

.quote-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.quote-form select:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.check-row input {
  width: auto;
  accent-color: var(--green);
}

.admin-form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-table {
  display: grid;
  gap: 10px;
}

.admin-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.admin-item.is-editing {
  display: block;
}

.admin-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.admin-cat-head h3 {
  margin: 0;
}

.admin-empty-cat {
  margin: 0;
  color: var(--muted);
}

.admin-add-row {
  padding: 12px 0 4px;
}

.admin-inline {
  border: 2px solid var(--green);
  padding: 20px;
  margin: 8px 0;
}

.admin-edit-title {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  font-family: Oswald, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.admin-item div span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.86rem;
}

.admin-price {
  margin: 0;
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.admin-item-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.admin-review .admin-item-actions {
  margin-top: 12px;
}

.btn-danger {
  background: #3a1212;
  color: #ffb4b4;
  border: 1px solid #5a2020;
}

.page-hero + .form-banner,
main > .form-banner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

@media (max-width: 720px) {
  .admin-item {
    grid-template-columns: 1fr auto;
  }

  .admin-item-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% - 8px);
    right: 16px;
    left: auto;
    width: min(280px, calc(100% - 32px));
    background: #111;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    z-index: 80;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .about-grid,
  .quote-form,
  .finder-search,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .live-results[data-mode="popular"] {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-logo {
    order: -1;
    max-width: 360px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .finder-search {
    top: 72px;
  }
}

@media (max-width: 560px) {
  .category-grid,
  .live-results[data-mode="popular"] {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .hero,
  .finder-search,
  .live-results,
  .category-grid,
  .hero-actions,
  .list-actions,
  .quote-form,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
    overflow: visible;
  }

  .price-card,
  .notice,
  .hours-card {
    break-inside: avoid;
    border-color: #ccc;
    background: #fff;
  }

  .price-card h3,
  .hero-stats dd,
  .cat-card strong {
    color: #0a7a00;
  }
}
