:root {
  color-scheme: dark;
  --bg: #10130f;
  --bg-strong: #080a08;
  --surface: #171c17;
  --surface-soft: #20271f;
  --surface-quiet: #eef1ea;
  --line: #334035;
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f5f7ef;
  --muted: #aeb9ad;
  --ink: #141812;
  --lime: #d4f000;
  --lime-ink: #202600;
  --coral: #ff7a59;
  --amber: #f8c85a;
  --mint: #76e0ad;
  --danger: #ff6b6b;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1180px;
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

body::selection {
  background: var(--lime);
  color: var(--lime-ink);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.material-symbols-outlined.filled {
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px 28px;
  background: rgba(8, 10, 8, 0.92);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--lime-ink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.desktop-nav a {
  position: relative;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: rgba(212, 240, 0, 0.12);
  color: var(--lime);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.icon-link:hover {
  border-color: rgba(212, 240, 0, 0.45);
  color: var(--lime);
}

.cart-count {
  display: inline-grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 11px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #10130f url("/assets/hero-shop.svg") center / cover no-repeat;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.97) 0%, rgba(8, 10, 8, 0.74) 46%, rgba(8, 10, 8, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.55), rgba(8, 10, 8, 0.2));
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px 28px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.status-pill,
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.status-pill > span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(212, 240, 0, 0.1);
}

.status-pill.is-closed > span {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(255, 107, 107, 0.1);
}

.rating-pill .material-symbols-outlined {
  color: var(--amber);
  font-size: 18px;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 30px;
  color: #d5ddd0;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

.button.primary {
  background: var(--lime);
  color: var(--lime-ink);
  box-shadow: 0 12px 28px rgba(212, 240, 0, 0.18);
}

.button.primary:hover {
  filter: brightness(1.05);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-soft);
  color: var(--text);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.11);
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.section,
.shop-shell,
.cart-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 62px 28px;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background: var(--bg-strong);
}

.section-muted > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
  padding-right: 28px;
  padding-left: 28px;
}

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

.section-head.tight {
  margin-bottom: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--lime);
  font-weight: 800;
}

.text-link:hover {
  color: var(--mint);
}

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

.category-tile {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 260ms ease, opacity 260ms ease;
}

.category-tile:hover img {
  opacity: 0.72;
  transform: scale(1.05);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 19, 15, 0.16), rgba(16, 19, 15, 0.86));
}

.category-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(212, 240, 0, 0.16), transparent 48%),
    linear-gradient(315deg, rgba(255, 122, 89, 0.2), transparent 52%),
    var(--surface-soft);
}

.category-tile.image-failed .category-placeholder,
.category-placeholder.is-visible {
  display: grid;
}

.category-placeholder .material-symbols-outlined {
  color: rgba(255, 255, 255, 0.22);
  font-size: 64px;
}

.category-content {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
}

.category-content .material-symbols-outlined {
  margin-bottom: 8px;
  color: var(--lime);
}

.category-content strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

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

.product-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid #d8ddd5;
  border-radius: var(--radius);
  background: #f7f8f3;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e9ede5;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-media-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(20, 24, 18, 0.35);
  background:
    linear-gradient(135deg, rgba(212, 240, 0, 0.42), transparent 48%),
    linear-gradient(315deg, rgba(255, 122, 89, 0.28), transparent 50%),
    #e7ece1;
}

.product-media img + .product-media-placeholder,
.cart-row-media img + .product-media-placeholder {
  display: none;
}

.product-media.image-failed .product-media-placeholder,
.cart-row-media.image-failed .product-media-placeholder {
  display: grid;
}

.product-media-placeholder .material-symbols-outlined {
  font-size: 58px;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 11px;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-body h3 {
  color: var(--ink);
  font-size: 19px;
}

.product-body p {
  min-height: 42px;
  margin: 0;
  color: #61705f;
  font-size: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 800;
}

.add-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--lime);
}

.add-button:hover {
  background: #28301f;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.service-band > div {
  padding: 34px 28px;
  background: var(--surface);
}

.service-band .material-symbols-outlined {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 32px;
}

.service-band p {
  max-width: 330px;
  margin: 9px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 66px 28px;
}

.contact-copy p:not(.kicker) {
  max-width: 560px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 11px;
  margin: 24px 0;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.contact-list .material-symbols-outlined {
  color: var(--lime);
}

.contact-section iframe {
  width: 100%;
  min-height: 430px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  filter: grayscale(0.2) contrast(1.05);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 28px 92px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-strong);
  color: var(--muted);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.site-footer strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.site-footer a:hover {
  color: var(--lime);
}

.mobile-tabbar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 8px 10px 12px;
  background: rgba(8, 10, 8, 0.95);
  border-top: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
}

.mobile-tabbar a {
  position: relative;
  display: grid;
  min-height: 50px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.mobile-tabbar a[aria-current="page"] {
  background: rgba(212, 240, 0, 0.12);
  color: var(--lime);
}

.mobile-tabbar .cart-count {
  position: absolute;
  top: 4px;
  right: 18px;
}

.page-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 0 22px;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero.compact h1 {
  max-width: none;
  font-size: 48px;
}

.page-hero p:not(.kicker) {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.shop-controls {
  display: grid;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}

.search-field {
  position: relative;
  display: block;
}

.search-field .material-symbols-outlined {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-field input,
.delivery-panel input,
.delivery-panel select,
.delivery-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  outline: none;
}

.search-field input {
  min-height: 52px;
  padding: 12px 16px 12px 48px;
}

.search-field input:focus,
.delivery-panel input:focus,
.delivery-panel select:focus,
.delivery-panel textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(212, 240, 0, 0.12);
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 3px;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--lime);
  background: rgba(212, 240, 0, 0.14);
  color: var(--lime);
}

.shop-results {
  padding-top: 28px;
}

.empty-state {
  margin: 22px 0 0;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.floating-cart {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 360px;
  padding: 14px;
  border: 1px solid rgba(212, 240, 0, 0.38);
  border-radius: var(--radius);
  background: rgba(16, 19, 15, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-cart div {
  flex: 1;
}

.floating-cart span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-cart strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.8fr);
  gap: 18px;
  padding-top: 28px;
  align-items: start;
}

.cart-list-panel,
.delivery-panel,
.summary-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cart-list-panel,
.delivery-panel {
  padding: 20px;
}

.delivery-panel {
  display: grid;
  gap: 16px;
}

.delivery-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.delivery-panel input,
.delivery-panel select,
.delivery-panel textarea {
  padding: 12px 13px;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.cart-row-media {
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--surface-soft);
}

.cart-row-media img,
.cart-row-media .product-media-placeholder {
  width: 100%;
  height: 100%;
}

.cart-row h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

.cart-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 4px;
}

.quantity-control button,
.remove-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.quantity-control button:hover,
.remove-button:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.quantity-control strong {
  display: grid;
  min-width: 30px;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
}

.cart-row-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-row-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.summary-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 20px;
}

.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.summary-line {
  color: var(--muted);
}

.summary-total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.summary-total strong {
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
}

.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  h1 {
    font-size: 56px;
  }

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

  .service-band,
  .contact-section,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-actions .icon-link:first-child {
    display: none;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 10, 8, 0.96), rgba(8, 10, 8, 0.78)),
      linear-gradient(0deg, rgba(8, 10, 8, 0.62), rgba(8, 10, 8, 0.12));
  }

  .hero-content,
  .section,
  .shop-shell,
  .cart-shell,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1,
  .page-hero.compact h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-lead,
  .page-hero p:not(.kicker) {
    font-size: 17px;
  }

  .section-head,
  .page-hero {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .category-tile {
    min-height: 142px;
  }

  .product-grid {
    gap: 10px;
  }

  .product-body {
    padding: 12px;
  }

  .product-body h3 {
    font-size: 16px;
  }

  .product-body p {
    min-height: 38px;
    font-size: 12px;
  }

  .price {
    font-size: 19px;
  }

  .add-button {
    width: 38px;
    height: 38px;
  }

  .service-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-section iframe {
    min-height: 320px;
  }

  .floating-cart {
    right: 12px;
    bottom: 80px;
    left: 12px;
    min-width: 0;
  }

  .cart-row {
    grid-template-columns: 62px 1fr;
  }

  .cart-row-media {
    width: 62px;
    height: 62px;
  }

  .cart-row-actions {
    grid-column: 1 / -1;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-items: start;
  }

  .mobile-tabbar {
    display: grid;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .floating-cart {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
}
