:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5f6f69;
  --paper: #ffffff;
  --wash: #f2f6f4;
  --line: #dce5df;
  --green: #1f6f50;
  --teal: #2da6a4;
  --gold: #f0b429;
  --coral: #d84f3f;
  --blue: #2d6cdf;
  --shadow: 0 18px 50px rgb(23 33 31 / 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

body.policy-document {
  min-height: 100dvh;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
}

.announcement span {
  color: var(--gold);
  font-weight: 800;
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--wash);
  color: var(--ink);
}

.cart-pill,
.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-pill {
  min-width: 94px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
}

.cart-pill strong {
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-size: 0.88rem;
}

main {
  overflow: hidden;
}

.store-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 430px;
  margin: 34px auto 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: stretch;
  gap: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgb(31 111 80 / 0.96), rgb(23 33 31 / 0.96)),
    radial-gradient(circle at 12% 18%, rgb(240 180 41 / 0.38), transparent 28%);
  color: #fff;
  border-radius: var(--radius);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgb(255 255 255 / 0.86);
  font-size: 1.08rem;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 22px rgb(216 79 63 / 0.24);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button.compact {
  min-height: 38px;
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgb(255 255 255 / 0.92), rgb(255 255 255 / 0.76)),
    linear-gradient(140deg, var(--teal), var(--gold));
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(240px, 70%);
  align-self: center;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgb(23 33 31 / 0.18);
}

.hero-panel span,
.product-meta,
.checkout-note,
.form-status {
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.commerce-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgb(23 33 31 / 0.06);
}

.filters h2 {
  font-size: 1.8rem;
}

.search-box,
.inline-form label,
.newsletter-form label {
  display: grid;
  gap: 8px;
}

.search-box span,
.inline-form span,
.newsletter-form span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

input,
select {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(31 111 80 / 0.14);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-group button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  cursor: pointer;
  font-weight: 800;
}

.filter-group button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.mini-metrics {
  display: grid;
  gap: 10px;
}

.mini-metrics div,
.mini-metrics a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.mini-metrics a:hover strong,
.mini-metrics a:focus-visible strong {
  color: var(--green);
}

.mini-metrics strong {
  color: var(--coral);
}

.mini-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
}

.catalog-surface {
  min-width: 0;
}

.catalog-toolbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.catalog-toolbar select {
  max-width: 210px;
}

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

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgb(23 33 31 / 0.06);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: color-mix(in srgb, var(--green), #ffffff 26%);
  transform: translateY(-2px);
}

.product-art {
  position: relative;
  min-height: 168px;
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent), #ffffff 8%), color-mix(in srgb, var(--accent), #17211f 42%));
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: var(--radius);
  z-index: -1;
}

.product-art::after {
  display: none;
}

.product-art img {
  width: min(84%, 210px);
  height: 132px;
  object-fit: contain;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
  filter: drop-shadow(0 14px 22px rgb(0 0 0 / 0.22));
}

.product-art a,
.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover,
.product-title-link:focus-visible {
  color: var(--green);
}

.product-art span {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-copy {
  padding: 16px 16px 0;
}

.product-copy p {
  color: var(--muted);
  font-size: 0.93rem;
}

.product-meta,
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-meta {
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.low-stock {
  color: var(--coral);
}

.product-actions {
  padding: 16px;
}

.product-actions strong {
  display: block;
  font-size: 1.16rem;
}

.compare {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.feature-band,
.split-section,
.newsletter-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 44px;
}

.feature-band {
  padding: 34px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.feature-band .eyebrow {
  color: var(--gold);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.feature-grid article {
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.06);
}

.feature-grid p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.74);
}

.feature-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.feature-grid a:hover,
.feature-grid a:focus-visible {
  color: var(--green);
}

.split-section,
.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 28px;
  align-items: start;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.split-section p {
  color: var(--muted);
}

.inline-form,
.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-section {
  align-items: center;
  margin-bottom: 80px;
  background:
    linear-gradient(135deg, rgb(45 166 164 / 0.12), rgb(240 180 41 / 0.18)),
    var(--paper);
}

.policy-page {
  width: min(920px, calc(100% - 32px));
  margin: 32px auto 36px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.policy-main {
  min-height: calc(100dvh - 210px);
}

.policy-page[hidden] {
  display: none;
}

.policy-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.policy-back:hover,
.policy-back:focus-visible {
  color: var(--gold);
}

.policy-page h1 {
  max-width: 820px;
}

.policy-copy {
  display: grid;
  gap: 14px;
  max-width: 820px;
  color: var(--muted);
}

.policy-copy p {
  margin: 0;
}

.policy-copy p:first-child {
  color: var(--ink);
}

.product-document {
  min-height: 100dvh;
}

.product-main {
  min-height: calc(100dvh - 210px);
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 36px;
}

.product-detail {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.product-detail-media {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent, var(--green)), #ffffff 8%), color-mix(in srgb, var(--accent, var(--green)), #17211f 42%));
}

.product-detail-media::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: var(--radius);
}

.product-detail-media img {
  width: min(86%, 420px);
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgb(0 0 0 / 0.28));
}

.product-detail-media span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-detail-copy {
  min-width: 0;
}

.product-detail-copy h1 {
  margin-bottom: 14px;
}

.product-detail-copy > p:not(.eyebrow),
.product-info-grid p {
  color: var(--muted);
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0;
}

.product-detail-price strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.product-detail-price span {
  color: var(--muted);
  font-weight: 800;
  text-decoration: line-through;
}

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

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

.product-info-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-info-grid dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.product-info-grid dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.product-info-grid dt {
  color: var(--muted);
  font-weight: 800;
}

.product-info-grid dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(31 111 80 / 0.1);
  color: var(--green);
  font-weight: 900;
  font-size: 0.82rem;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.footer-brand {
  font-weight: 900;
  text-decoration: none;
}

.policy-menu {
  position: relative;
  width: min(320px, 100%);
}

.policy-menu summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.policy-menu summary::-webkit-details-marker {
  display: none;
}

.policy-menu summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transform-origin: center;
}

.policy-menu[open] summary::after {
  transform: rotate(-135deg);
}

.policy-menu nav {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 35;
  width: min(360px, calc(100vw - 32px));
  max-height: min(420px, 70vh);
  overflow: auto;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.policy-menu nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.policy-menu nav a:hover,
.policy-menu nav a:focus-visible,
.policy-menu nav a[aria-current="page"] {
  background: rgb(47 184 120 / 0.14);
  color: var(--green);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(420px, 100vw);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  box-shadow: -24px 0 60px rgb(23 33 31 / 0.24);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  border: 0;
  background: rgb(23 33 31 / 0.42);
}

.cart-open .cart-backdrop {
  display: block;
}

.cart-header,
.cart-footer {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-header,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-header h2 {
  margin: 0;
  font-size: 2rem;
}

.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wash);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.cart-items {
  overflow: auto;
  padding: 8px 22px;
}

.empty-cart {
  margin: 24px 0;
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.cart-line strong,
.cart-line span {
  display: block;
}

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

.quantity-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.quantity-row button {
  min-width: 34px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.cart-total {
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.cart-total strong {
  font-size: 1.35rem;
}

.checkout-note,
.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  max-width: min(460px, calc(100% - 32px));
  transform: translate(-50%, 140%);
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 200ms ease;
}

.toast.visible {
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .store-hero,
  .commerce-layout,
  .split-section,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

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

@media (max-width: 720px) {
  .announcement {
    align-items: center;
    flex-direction: column;
    gap: 2px;
  }

  .nav-shell {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav-links {
    width: 100%;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .store-hero {
    margin-top: 16px;
  }

  .hero-copy,
  .feature-band,
  .split-section,
  .newsletter-section {
    padding: 24px;
  }

  .hero-actions {
    display: grid;
  }

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

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-toolbar select {
    max-width: none;
  }

  .policy-page {
    padding: 24px;
  }

  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .policy-menu {
    width: 100%;
  }

  .policy-menu nav {
    position: static;
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .store-hero {
    min-height: auto;
    gap: 12px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-panel {
    display: none;
  }

  .filters {
    gap: 14px;
    padding: 18px;
  }

  .filters h2 {
    font-size: 1.45rem;
  }

  .filter-group {
    flex-wrap: nowrap;
    margin-inline: -18px;
    overflow-x: auto;
    padding-inline: 18px;
  }

  .filter-group button {
    flex: 0 0 auto;
  }

  .mini-metrics {
    display: none;
  }
}

/* Dark collector-table theme */
:root {
  --ink: #edf5f0;
  --muted: #9db0a8;
  --paper: #111817;
  --wash: #070a0a;
  --line: #263331;
  --green: #2fb878;
  --teal: #3bc4bd;
  --gold: #f0c247;
  --coral: #e45745;
  --blue: #5d8dff;
  --shadow: 0 18px 50px rgb(0 0 0 / 0.38);
}

body {
  background:
    radial-gradient(circle at 18% 4%, rgb(47 184 120 / 0.16), transparent 30rem),
    radial-gradient(circle at 86% 16%, rgb(93 141 255 / 0.12), transparent 26rem),
    var(--wash);
  color: var(--ink);
}

.site-header {
  background: rgb(7 10 10 / 0.92);
  border-bottom-color: var(--line);
}

.announcement {
  background: #030505;
  border-bottom: 1px solid rgb(240 194 71 / 0.2);
}

.nav-shell,
.filters,
.product-card,
.split-section,
.newsletter-section,
.shipping-section,
.policy-page,
.product-detail,
.product-info-grid article,
.footer-inner,
.hero-panel {
  background: rgb(17 24 23 / 0.92);
  border-color: var(--line);
}

.nav-shell {
  background: transparent;
}

.brand,
h1,
h2,
h3,
.product-actions strong,
.product-detail-price strong,
.product-info-grid dd,
.cart-total strong,
.rate-card b {
  color: var(--ink);
}

.nav-links a,
.product-copy p,
.split-section p,
.checkout-note,
.form-status,
.hero-panel span,
.product-meta,
.mini-metrics span,
.cart-line span,
.rate-card span,
.rate-card small,
.rate-notes,
.shipping-section p,
.newsletter-section p,
.product-detail-copy > p:not(.eyebrow),
.product-info-grid p,
.product-info-grid dt {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgb(47 184 120 / 0.12);
  color: var(--ink);
}

.cart-pill,
.filter-group button.active {
  background: var(--green);
  color: #06100d;
}

.cart-pill strong {
  background: #06100d;
  color: var(--green);
}

.store-hero {
  min-height: 460px;
}

.hero-copy {
  border: 1px solid rgb(47 184 120 / 0.28);
  background:
    linear-gradient(135deg, rgb(18 58 48 / 0.96), rgb(7 10 10 / 0.98)),
    radial-gradient(circle at 14% 12%, rgb(240 194 71 / 0.22), transparent 24rem);
  box-shadow: var(--shadow);
}

.hero-panel {
  color: var(--ink);
  background:
    linear-gradient(160deg, rgb(17 24 23 / 0.95), rgb(8 12 12 / 0.88)),
    linear-gradient(140deg, var(--teal), var(--gold));
}

.hero-panel img,
.cart-line img {
  border: 1px solid rgb(240 194 71 / 0.24);
}

.cart-line img {
  object-fit: contain;
  padding: 4px;
  background: #0b1110;
}

.button.secondary,
input,
textarea,
select,
.filter-group button,
.quantity-row button,
.icon-button {
  background: #0b1110;
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover,
.filter-group button:hover,
.quantity-row button:hover,
.icon-button:hover {
  background: #121d1b;
}

.button.primary {
  background: var(--coral);
  color: #fff7f4;
  box-shadow: 0 10px 22px rgb(228 87 69 / 0.26);
}

.button.dark,
.button.compact {
  background: var(--green);
  color: #06100d;
}

input::placeholder,
textarea::placeholder {
  color: #6f817a;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(47 184 120 / 0.18);
}

.product-card,
.filters,
.split-section,
.newsletter-section,
.shipping-section,
.policy-page,
.product-detail,
.product-info-grid article,
.footer-inner,
.cart-drawer {
  box-shadow: var(--shadow);
}

.product-art span,
.product-detail-media span {
  background: rgb(7 10 10 / 0.84);
  color: var(--ink);
  border: 1px solid rgb(255 255 255 / 0.12);
}

.compare {
  color: #71847d;
}

.feature-band {
  background:
    linear-gradient(135deg, #101716, #070a0a),
    linear-gradient(140deg, rgb(47 184 120 / 0.18), rgb(240 194 71 / 0.08));
  border: 1px solid var(--line);
}

.feature-grid article {
  background: rgb(255 255 255 / 0.035);
  border-color: rgb(255 255 255 / 0.1);
}

.newsletter-section {
  background:
    linear-gradient(135deg, rgb(47 184 120 / 0.12), rgb(240 194 71 / 0.08)),
    var(--paper);
}

.shipping-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  gap: 28px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 44px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.shipping-form {
  display: grid;
  gap: 14px;
}

.shipping-highlights {
  display: grid;
  gap: 12px;
}

.shipping-highlights article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.035);
}

.shipping-highlights strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.shipping-highlights p {
  margin: 0;
}

.shipping-form label {
  display: grid;
  gap: 8px;
}

.shipping-form span,
.rate-card small {
  font-size: 0.82rem;
}

.shipping-form span {
  color: var(--muted);
  font-weight: 800;
}

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

.rate-results {
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b1110;
}

.rate-results p {
  margin: 0;
  color: var(--muted);
}

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

.rate-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111817;
}

.rate-card.cheapest {
  border-color: rgb(240 194 71 / 0.76);
  background: linear-gradient(135deg, rgb(240 194 71 / 0.13), rgb(47 184 120 / 0.08));
}

.rate-card strong,
.rate-card span,
.rate-card small,
.rate-card b {
  display: block;
}

.rate-card > div:last-child {
  text-align: right;
  white-space: nowrap;
}

.rate-notes {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 0.84rem;
}

.cart-drawer {
  background: #0d1413;
  border-left: 1px solid var(--line);
}

.cart-header,
.cart-footer,
.cart-line {
  border-color: var(--line);
}

.empty-cart {
  color: var(--muted);
}

.cart-backdrop {
  background: rgb(0 0 0 / 0.64);
}

.toast {
  background: var(--paper);
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .shipping-section,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .store-hero {
    min-height: auto;
  }

  .shipping-section,
  .product-detail {
    padding: 24px;
  }

  .product-main {
    width: min(100% - 20px, 1180px);
    margin-top: 20px;
  }

  .product-detail-media {
    min-height: 300px;
  }

  .product-detail-media img {
    max-height: 240px;
  }

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

  .rate-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .rate-card > div:last-child {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 4px;
    overflow-x: visible;
  }

  .nav-links a {
    flex: 1 1 auto;
    padding: 8px 6px;
    text-align: center;
    font-size: 0.9rem;
  }
}
/* Dadaroo background art, keeping the original custom storefront layout */
body {
  background:
    linear-gradient(rgb(7 10 10 / 0.9), rgb(7 10 10 / 0.96)),
    url("../assets/shopify/dadaroo-hero.png") center top / cover fixed,
    var(--wash);
}

.hero-copy {
  background:
    linear-gradient(135deg, rgb(18 58 48 / 0.9), rgb(7 10 10 / 0.96)),
    url("../assets/shopify/dadaroo-hero.png") center / cover no-repeat;
}
