:root {
  --color-cream: #f3f5f2;
  --color-paper: rgba(255, 255, 255, 0.95);
  --color-ink: #161a18;
  --color-moss: #335943;
  --color-moss-deep: #1f3527;
  --color-bark: #4b514d;
  --color-sand: #cfd6cf;
  --color-border: rgba(18, 26, 20, 0.12);
  --color-shadow: rgba(16, 20, 18, 0.1);
  --color-error: #9e2d21;
  --radius-large: 0rem;
  --radius-medium: 0rem;
  --radius-small: 0rem;
  --font-sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --content-width: 100rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background:
    radial-gradient(circle at top, rgba(51, 89, 67, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(75, 81, 77, 0.1), transparent 28%),
    linear-gradient(180deg, #f7f8f6 0%, #ecefeb 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
.button,
.secondary-button {
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

button:hover,
button:focus-visible,
.button:hover,
.button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-1px);
}

button:disabled,
.button:disabled,
.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(106, 75, 63, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-moss-deep);
  color: white;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.site-footer,
.page-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}

.site-header {
  padding: 1.5rem 0 1rem;
}

.header-inner {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(18, 22, 20, 0.96), rgba(31, 46, 37, 0.95));
  color: white;
  box-shadow: 0 14px 28px rgba(16, 20, 18, 0.12);
}

body[data-page="shop"] .site-header {
  padding: 1rem 0 0.7rem;
}

body[data-page="shop"] .header-inner {
  gap: 0.45rem;
  padding: 0.85rem 0.95rem 0.75rem;
}

.brand-block {
  display: grid;
  gap: 0.25rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 3.75rem;
  height: 3.75rem;
  flex: none;
  border-radius: 0;
  object-fit: contain;
  padding: 0.12rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 239, 230, 0.95));
  box-shadow: 0 6px 14px rgba(16, 20, 18, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.brand-tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

body[data-page="shop"] .brand-block {
  gap: 0.25rem;
}

body[data-page="shop"] .brand-mark {
  gap: 0.6rem;
}

body[data-page="shop"] .brand-name {
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
}

body[data-page="shop"] .brand-tag {
  font-size: 0.72rem;
}

.brand-mark:hover .brand-name,
.brand-mark:focus-visible .brand-name {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.eyebrow,
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.site-intro {
  max-width: 42rem;
  margin: 0.75rem 0 0;
  line-height: 1.6;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.35rem;
  align-items: center;
  width: fit-content;
  justify-self: end;
  padding: 0.15rem;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  scrollbar-width: none;
}

.header-filter-strip {
  margin-top: 0.3rem;
  padding: 0.15rem 0.25rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.header-actions {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  width: 100%;
}

.header-category-bar {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.3rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.site-nav::-webkit-scrollbar,
.header-category-bar::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  padding: 0.52rem 0.8rem;
  border-radius: 0;
  background: transparent;
  color: white;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(18rem, 1fr);
  gap: 0.9rem;
  padding-bottom: 1.35rem;
}

.content,
.cart-panel {
  min-width: 0;
}

.panel {
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-paper);
  box-shadow: 0 10px 20px rgba(16, 20, 18, 0.06);
  backdrop-filter: none;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.section-heading h1,
.section-heading h2 {
  margin: 0.25rem 0 0;
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.page-title {
  margin: 0.25rem 0 0;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-lead {
  max-width: 48rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.results-count {
  margin: 0;
  padding: 0.6rem 0.9rem;
  border-radius: 0;
  background: rgba(51, 89, 67, 0.08);
  color: var(--color-moss-deep);
  white-space: nowrap;
}

.shop-heading-copy {
  display: grid;
  gap: 0.45rem;
}

.shop-heading-note {
  margin: 0;
  max-width: 46rem;
  color: var(--color-moss-deep);
  line-height: 1.6;
}

.shop-intro-panel {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 18rem) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 1rem;
  align-self: start;
  display: grid;
  gap: 0.55rem;
}

.shop-sidebar h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.shop-catalog {
  display: grid;
  gap: 0.75rem;
}

.shop-note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.45rem;
}

.shop-note {
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 26, 20, 0.08);
}

.shop-note strong {
  display: block;
  margin-bottom: 0.25rem;
}

.shop-category-list {
  display: grid;
  gap: 0.35rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
}

.field input,
.field select,
.cart-item input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(63, 92, 71, 0.22);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.8);
  color: inherit;
}

.status-message {
  margin: 0 0 1rem;
  color: var(--color-moss-deep);
}

.status-message.is-error {
  color: var(--color-error);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(10rem, 12rem) minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(18, 26, 20, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 10px rgba(16, 20, 18, 0.05);
}

.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 12rem;
  padding: 0.45rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(51, 89, 67, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(239, 242, 238, 0.95), rgba(229, 233, 228, 0.95));
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.carousel-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem;
  height: 100%;
}

.product-card-body {
  padding: 0.7rem 0.8rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.product-pill,
.cart-pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 0;
  background: rgba(51, 89, 67, 0.08);
  color: var(--color-bark);
  font-size: 0.9rem;
}

.product-pill-button {
  border: 0;
  cursor: pointer;
  border-radius: 0;
}

.product-pill-button:hover,
.product-pill-button:focus-visible {
  background: rgba(63, 92, 71, 0.14);
  color: var(--color-moss-deep);
}

.product-pill-button.is-active {
  background: var(--color-moss-deep);
  color: white;
}

.product-card-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(22, 26, 24, 0.7);
}

.product-card-note strong {
  color: var(--color-moss-deep);
}

.product-title,
.empty-state-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.product-title a,
.text-link {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.product-description,
.product-detail-description,
.cart-copy {
  margin: 0;
  line-height: 1.45;
}

.product-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-footer,
.button-row,
.cart-total-row,
.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.button-row {
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-price,
.detail-price {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-bark);
}

.button,
.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.8rem;
  text-decoration: none;
}

.button {
  background: var(--color-moss);
  color: white;
}

.secondary-button {
  border: 1px solid rgba(18, 26, 20, 0.12);
  background: white;
  color: var(--color-moss-deep);
}

.empty-state {
  padding: 0.85rem;
  border: 1px dashed rgba(18, 26, 20, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
}

.empty-state p {
  margin: 0.65rem 0 0;
  line-height: 1.5;
}

.cart-panel {
  position: sticky;
  top: 1rem;
  align-self: start;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cart-summary-note {
  margin: 0 0 1rem;
  color: var(--color-moss-deep);
  line-height: 1.55;
}

.cart-summary-note strong {
  color: var(--color-ink);
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.35rem;
  padding: 0.58rem 0.9rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.cart-badge-count {
  display: inline-flex;
  flex: none;
  min-width: 1.6rem;
  min-height: 1.6rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  border-radius: 0;
  background: #f6e9d4;
  color: var(--color-moss-deep);
  font-size: 0.78rem;
  line-height: 1;
}

.cart-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-item {
  display: grid;
  gap: 0.6rem;
  padding: 0.8rem;
  border: 1px solid rgba(18, 26, 20, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
}

.cart-item-name {
  margin: 0;
  font-weight: 700;
}

.cart-item-link {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.cart-item-price,
.cart-item-subtotal {
  margin: 0;
  color: var(--color-bark);
}

.cart-quantity {
  display: grid;
  gap: 0.35rem;
  width: 5.75rem;
}

.cart-quantity label {
  font-size: 0.9rem;
  font-weight: 700;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
}

.cart-item-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-moss-deep);
}

.text-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-moss-deep);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.cart-total-row {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(63, 92, 71, 0.14);
  font-size: 1.05rem;
}

.checkout-status {
  margin-top: 1rem;
  margin-bottom: 0;
}

.checkout-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.checkout-note,
.message-copy {
  margin: 0.9rem 0 0;
  line-height: 1.6;
}

.hero-panel {
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(18rem, 1fr);
  gap: 1rem;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.info-card {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.info-card h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.info-card p,
.notice-card p {
  margin: 0;
  line-height: 1.6;
}

.nested-card,
.accent-card,
.notice-card {
  padding: 1rem;
  border: 1px solid rgba(18, 26, 20, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 242, 237, 0.95));
}

.feature-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.5;
}

.notice-card {
  margin-top: 1.1rem;
}

.notice-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.25rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 0.45rem;
}

.carousel-stage {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 26, 20, 0.1);
  aspect-ratio: 4 / 3;
}

.carousel-stage button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.carousel-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.carousel-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0;
  align-items: center;
  margin-top: 0;
}

.carousel-button {
  min-width: 7.5rem;
}

.carousel-status {
  margin: 0;
  text-align: center;
  color: var(--color-moss-deep);
  font-weight: 700;
}

.carousel-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5.5rem, 1fr));
  gap: 0;
  margin-top: 0;
}

.carousel-thumbnail {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 26, 20, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  aspect-ratio: 4 / 3;
}

.carousel-thumbnail.is-active {
  border-color: var(--color-moss);
  box-shadow: 0 0 0 3px rgba(51, 89, 67, 0.12);
}

.product-zoom-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0;
  background: rgba(31, 39, 33, 0.76);
  color: white;
  font-size: 0.85rem;
  pointer-events: none;
}

.product-lightbox {
  width: min(92vw, 72rem);
  padding: 1rem;
  border: 0;
  border-radius: 0;
  background: rgba(20, 24, 21, 0.96);
  color: white;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
}

.product-lightbox::backdrop {
  background: rgba(17, 19, 18, 0.72);
}

.product-lightbox-content {
  display: grid;
  gap: 0.7rem;
}

.product-lightbox-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-lightbox-header {
  display: grid;
  gap: 0.35rem;
}

.product-lightbox-toolbar h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.product-lightbox-zoom-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.product-lightbox-zoom {
  width: auto;
  min-height: 2.5rem;
}

.product-lightbox-zoom-status {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.product-lightbox-viewport {
  overflow: auto;
  max-height: min(76vh, 50rem);
  padding: 0.4rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
}

.product-lightbox-close {
  width: auto;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.product-lightbox-image {
  width: 100%;
  max-height: min(80vh, 54rem);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  max-width: none;
}

.product-zoom-trigger {
  cursor: zoom-in;
}

.product-content {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.product-detail-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.product-summary {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.55rem 1rem;
  margin: 0;
}

.product-summary dt {
  font-weight: 700;
}

.product-summary dd {
  margin: 0;
}

.site-footer {
  padding: 0 0 1.25rem;
  color: rgba(31, 39, 33, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
  padding: 0 0 0.15rem;
}

.footer-inner p {
  margin: 0;
  line-height: 1.5;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  align-items: center;
  max-width: 32rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-nav a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, max-content));
  gap: 0.35rem 0.65rem;
}

.footer-sitemap a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.footer-contact {
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  align-items: baseline;
}

.footer-contact strong {
  display: inline;
  margin: 0;
  color: var(--color-ink);
}

.page-shell-single {
  grid-template-columns: 1fr;
}

.message-panel {
  max-width: 48rem;
}

.message-panel h1 {
  margin: 0.25rem 0 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.category-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(63, 92, 71, 0.2);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-moss-deep);
  font-weight: 700;
}

.category-button-list {
  justify-content: space-between;
  width: 100%;
  border-radius: 0.5rem;
}

.category-button.is-active,
.category-button:hover,
.category-button:focus-visible {
  background: linear-gradient(180deg, var(--color-moss-deep), #233429);
  border-color: var(--color-moss-deep);
  color: white;
  box-shadow: 0 8px 18px rgba(31, 39, 33, 0.18);
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  min-height: 1.75rem;
  padding: 0 0.45rem;
  border-radius: 0.6rem;
  background: rgba(63, 92, 71, 0.1);
  font-size: 0.82rem;
}

.category-button.is-active .category-count,
.category-button:hover .category-count,
.category-button:focus-visible .category-count {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.product-pill-button {
  border-radius: 0.45rem;
}

.detail-copy {
  max-width: 50rem;
  line-height: 1.7;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1rem;
  align-items: start;
}

.product-overview,
.product-spec-panel {
  display: grid;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 26, 20, 0.1);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 245, 241, 0.95));
  box-shadow: 0 8px 16px rgba(16, 20, 18, 0.05);
}

.product-price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(18, 26, 20, 0.08);
}

.product-price-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-moss-deep);
}

.product-overview .product-support-note,
.product-overview .product-shipping-note {
  margin: 0;
}

.product-overview .product-shipping-note {
  padding-top: 0.15rem;
}

.product-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: -0.15rem;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.product-fact {
  display: grid;
  gap: 0.3rem;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(63, 92, 71, 0.12);
}

.product-fact-label {
  margin: 0;
  font-weight: 700;
  color: var(--color-moss-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.product-fact-value {
  margin: 0;
  line-height: 1.55;
}

.product-support-note {
  padding: 0.85rem 0.95rem;
  border-left: 0.25rem solid var(--color-moss);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  background: rgba(63, 92, 71, 0.08);
}

.product-shipping-note,
.product-story-note {
  margin: 0;
  line-height: 1.6;
}

.product-story-note {
  padding: 0.9rem 1rem;
  border-left: 0.25rem solid var(--color-bark);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  background: rgba(106, 75, 63, 0.08);
}

.product-detail-description {
  font-size: 1.02rem;
}

.detail-price {
  font-size: 1.35rem;
  color: var(--color-ink);
}

.contact-layout,
.policy-layout,
.utility-layout {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .field textarea {
  min-height: 11rem;
  resize: vertical;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 26, 20, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  color: inherit;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
}

.contact-detail {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 26, 20, 0.08);
}

.contact-detail strong {
  color: var(--color-moss-deep);
}

.contact-detail a {
  color: var(--color-moss-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.about-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.about-media figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(18, 26, 20, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-media figcaption {
  padding: 0.8rem 0.9rem;
  font-size: 0.94rem;
  line-height: 1.5;
}

.about-note {
  padding: 1rem 1.1rem;
  border-left: 0.25rem solid var(--color-bark);
  border-radius: 0;
  background: rgba(106, 75, 63, 0.08);
}

.policy-card,
.contact-card,
.notice-panel {
  padding: 1.1rem;
  border: 1px solid rgba(18, 26, 20, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
}

.policy-card h2,
.contact-card h2,
.notice-panel h2 {
  margin-top: 0;
  font-family: var(--font-sans);
}

.policy-card p,
.contact-card p,
.notice-panel p {
  line-height: 1.65;
}

.policy-list {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.15rem;
  line-height: 1.55;
}

.page-notice {
  padding: 1.1rem 1.2rem;
  border-radius: 0;
  border: 1px solid rgba(18, 26, 20, 0.1);
  background: rgba(255, 255, 255, 0.88);
}

.custom-work-layout {
  display: grid;
  gap: 1rem;
}

.custom-work-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.custom-work-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.custom-work-card h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.custom-work-card p,
.custom-work-card li {
  line-height: 1.6;
}

.custom-work-card p {
  margin: 0;
}

.custom-work-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.custom-work-card-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.7rem;
}

.custom-work-card-gallery figure {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.custom-work-card-gallery img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid rgba(18, 26, 20, 0.1);
}

.custom-work-card-gallery figcaption {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-moss-deep);
}

.custom-request-panel {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(18, 26, 20, 0.1);
}

.custom-request-meta {
  display: grid;
  gap: 0.75rem;
}

.custom-request-note {
  margin: 0;
  color: var(--color-moss-deep);
  line-height: 1.6;
}

.custom-request-guidance {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 26, 20, 0.08);
  line-height: 1.55;
}

.custom-request-form {
  display: grid;
  gap: 1rem;
}

.custom-request-form .field textarea {
  min-height: 8rem;
}

@media (max-width: 62rem) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

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

  .shop-sidebar {
    position: static;
  }

  .cart-panel {
    position: static;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-sitemap {
    grid-template-columns: repeat(2, minmax(8rem, 1fr));
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .header-filter-strip {
    padding: 0.75rem 0.85rem;
  }
}

@media (max-width: 48rem) {
  .section-heading,
  .product-layout,
  .shop-layout,
  .cart-item-actions,
  .cart-item-row,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-layout,
  .product-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .results-count {
    white-space: normal;
  }

  .carousel-controls {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    min-width: 0;
  }

  .product-lightbox {
    width: min(96vw, 72rem);
  }

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

@media (max-width: 34rem) {
  .site-header,
  .site-footer,
  .page-shell {
    width: min(calc(100% - 1rem), var(--content-width));
  }

  .panel,
  .header-inner {
    padding: 1rem;
  }

  .button,
  .secondary-button,
  .cart-badge {
    width: 100%;
  }

  .product-lightbox-close {
    width: auto;
  }

  .cart-quantity {
    width: 100%;
  }

  .checkout-actions,
  .action-row {
    flex-direction: column;
  }

  .brand-name {
    font-size: 1.55rem;
  }

  .brand-icon {
    width: 3.75rem;
    height: 3.75rem;
    padding: 0.1rem;
  }
}

:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .brand-name,
  .section-heading h1,
  .section-heading h2,
  .page-title,
  .shop-sidebar h2,
  .product-title,
  .empty-state-title,
  .product-detail-title,
  .message-panel h1,
  .info-card h2,
  .notice-card h2,
  .product-lightbox-toolbar h2,
  .custom-work-card h2
) {
  font-family: var(--font-sans) !important;
  letter-spacing: -0.03em;
}

:where(
  button,
  .button,
  .secondary-button,
  .skip-link,
  .site-nav,
  .site-nav a,
  .header-inner,
  .header-filter-strip,
  .panel,
  .product-card,
  .product-pill,
  .cart-pill,
  .status-pill,
  .results-count,
  .category-button,
  .product-fact,
  .product-support-note,
  .product-story-note,
  .contact-detail,
  .about-media figure,
  .policy-card,
  .contact-card,
  .notice-panel,
  .page-notice,
  .custom-work-card-gallery img,
  .custom-request-guidance,
  .cart-item,
  .cart-badge,
  .cart-badge-count,
  .carousel-stage,
  .carousel-thumbnail,
  .product-lightbox,
  .product-lightbox-viewport,
  .product-lightbox-image,
  .product-lightbox-close,
  .field input,
  .field select,
  .cart-item input,
  .contact-form .field textarea
) {
  border-radius: 0 !important;
}
