.has-reduced-motion,
.has-reduced-motion * {
  scroll-behavior: auto !important;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 180;
  width: 100%;
  height: 3px;
  pointer-events: none;
  opacity: 0;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--nx-gold), var(--nx-red), var(--nx-forest));
  box-shadow: 0 6px 18px rgba(20, 50, 38, 0.16);
  transition: opacity 220ms ease;
}

html.has-motion-effects body::before {
  opacity: 0.9;
}

.admin-bar body::before {
  top: 32px;
}

[data-reveal],
[data-parallax] {
  --motion-delay: 0s;
  --reveal-distance: 26px;
  --reveal-scale: 1;
  --reveal-translate: 0px;
  --parallax-shift: 0px;
  transform: translate3d(0, calc(var(--reveal-translate) + var(--parallax-shift)), 0) scale(var(--reveal-scale));
  transform-origin: center center;
}

html.has-motion-effects [data-reveal] {
  opacity: 0;
  filter: blur(10px);
  --reveal-scale: 0.985;
  --reveal-translate: var(--reveal-distance);
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms ease,
    filter 620ms ease;
  transition-delay: var(--motion-delay);
  will-change: transform, opacity, filter;
}

html.has-motion-effects [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  --reveal-scale: 1;
  --reveal-translate: 0px;
}

html.has-motion-effects [data-parallax] {
  will-change: transform;
  transition: transform 220ms linear;
}

.section-heading[data-reveal],
.content-card[data-reveal],
.hero__content > *[data-reveal],
.story-copy[data-reveal],
.about-panel__copy[data-reveal],
.newsletter > *[data-reveal] {
  --reveal-distance: 18px;
}

.category-card[data-reveal],
.product-card[data-reveal],
.benefit-card[data-reveal],
.promo-banner[data-reveal] {
  --reveal-distance: 32px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--nx-forest);
  color: #fff;
  z-index: 200;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 241, 229, 0.82);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 229, 0.95);
  border-color: var(--nx-border);
  box-shadow: 0 12px 30px rgba(20, 50, 38, 0.08);
}

.site-header__inner,
.section,
.newsletter,
.site-footer__grid {
  width: min(calc(100% - 2rem), var(--nx-max-width));
  margin: 0 auto;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas:
    "search brand actions"
    "nav nav nav";
  align-items: center;
  gap: 0.9rem 1rem;
  padding: 0.8rem 0 0.95rem;
}

.site-header__search {
  grid-area: search;
  display: flex;
  align-items: center;
  justify-self: start;
  width: min(100%, 24rem);
  min-width: 0;
}

.site-brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  justify-self: center;
}

.site-brand__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  flex: none;
}

.site-brand__logo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 22px;
}

.site-brand__text {
  display: grid;
  gap: 0.2rem;
  min-width: max-content;
}

.site-brand__text strong,
.section-heading h2,
.story-copy h2,
.promo-banner__content h2,
.about-panel__copy h2,
.newsletter h2,
.product-card h3,
.site-footer h2,
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.site-brand__text strong {
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  line-height: 0.94;
  white-space: nowrap;
}

.site-brand__text span {
  color: var(--nx-muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  grid-area: nav;
  width: 100%;
}

.site-nav__menu {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__menu a {
  position: relative;
  padding-bottom: 0.3rem;
  color: var(--nx-ink);
  font-weight: 600;
}

.site-nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--nx-gold), var(--nx-red));
  transition: transform 180ms ease;
}

.site-nav__menu a:hover::after,
.site-nav__menu a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
}

.site-header__icon-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--nx-ink);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.site-header__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.site-header__icon svg {
  width: 100%;
  height: 100%;
}

.site-header__icon-count {
  position: absolute;
  top: -2px;
  right: -2px;
  display: inline-grid;
  place-items: center;
  min-width: 1.1rem;
  min-height: 1.1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--nx-gold);
  color: var(--nx-forest-deep);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
}

.site-header__actions-spacer {
  display: none;
}

.site-search {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 238, 0.88));
  border: 1px solid rgba(125, 90, 60, 0.16);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(20, 50, 38, 0.08);
}

.site-header__search .site-search {
  width: 100%;
  min-width: 0;
}

.site-search input {
  width: 14rem;
  border: 0;
  background: transparent;
  padding: 0.85rem 1rem;
  color: var(--nx-ink);
}

.site-header__search .site-search input {
  width: 100%;
  min-width: 0;
}

.site-search input:focus {
  outline: none;
}

.site-search button,
.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(211, 155, 43, 0.18), rgba(177, 70, 47, 0.08));
  color: var(--nx-forest-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.site-search button svg {
  width: 18px;
  height: 18px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0 1.05rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 241, 229, 0.92));
  border: 1px solid rgba(125, 90, 60, 0.16);
  box-shadow: 0 12px 24px rgba(20, 50, 38, 0.08);
  font-weight: 700;
  color: var(--nx-forest-deep);
  position: relative;
  overflow: hidden;
}

.action-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  opacity: 0.9;
  pointer-events: none;
}

.action-link__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.action-link__icon svg {
  width: 100%;
  height: 100%;
}

.action-link > span:not(.action-link__icon):not(.action-link__count),
.action-link > strong {
  position: relative;
  z-index: 1;
}

.action-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 1.6rem;
  min-height: 1.6rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--nx-red);
  color: #fff;
  font-size: 0.78rem;
}

.action-link--cart {
  background: linear-gradient(180deg, rgba(30, 77, 58, 0.97), rgba(20, 50, 38, 0.96));
  color: #fff;
  border-color: rgba(20, 50, 38, 0.2);
}

.action-link--cart::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.action-link--cart .action-link__count {
  background: linear-gradient(135deg, var(--nx-gold), #e8b651);
  color: var(--nx-forest-deep);
}

.site-header__toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 90, 60, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 241, 229, 0.94));
  box-shadow: 0 12px 24px rgba(20, 50, 38, 0.08);
  color: var(--nx-forest-deep);
}

.site-header__toggle-lines {
  display: inline-grid;
  gap: 4px;
}

.site-header__toggle-lines span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__toggle-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1121px) {
  .site-nav--marketplace-mobile-only {
    display: none;
  }

  .site-header--marketplace .site-header__actions {
    justify-self: end;
  }
}

.site-main {
  overflow-x: clip;
  overflow-y: visible;
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(120deg, rgba(20, 50, 38, 0.88) 0%, rgba(20, 50, 38, 0.52) 48%, rgba(20, 50, 38, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--nx-max-width));
  margin: 0 auto;
  padding: 6rem 0 5rem;
  color: #fff;
  text-align: center;
}

html.has-motion-effects .hero__content {
  transform-origin: center bottom;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--nx-gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.hero__lead {
  max-width: 42rem;
  margin: 1.35rem auto 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  font-weight: 800;
}

.button:hover,
.button:focus-visible,
.site-search button:hover,
.site-search button:focus-visible,
.action-link:hover,
.action-link:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--nx-gold), #e1b256);
  color: var(--nx-forest-deep);
  box-shadow: 0 18px 30px rgba(211, 155, 43, 0.26);
}

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

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
}

.hero__highlights li,
.shop-pills span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading--split {
  max-width: 52rem;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.section-heading--split .shop-pills {
  justify-content: center;
}

.section-heading h2,
.story-copy h2,
.promo-banner__content h2,
.about-panel__copy h2,
.newsletter h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.98;
  color: var(--nx-forest-deep);
}

.section-heading p,
.story-copy p,
.promo-banner__content p,
.about-panel__copy p,
.newsletter p,
.product-card p,
.site-footer p {
  color: var(--nx-muted);
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  justify-content: center;
  gap: 1.25rem;
}

.category-card,
.product-card,
.benefit-card,
.about-panel,
.newsletter,
.story-media img,
.story-copy,
.promo-banner,
.site-footer {
  border-radius: var(--nx-radius-lg);
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  box-shadow: var(--nx-shadow);
}

.category-card img,
.promo-banner img,
.about-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 50, 38, 0.05), rgba(20, 50, 38, 0.76));
}

.category-card__content {
  position: absolute;
  inset: auto 1.4rem 1.4rem;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  color: #fff;
}

.category-card__content strong {
  font-size: 1.5rem;
}

.category-card:hover img,
.product-card:hover img,
.promo-banner:hover img,
.about-panel:hover img {
  transform: scale(1.04);
}

.category-card img,
.product-card img,
.promo-banner img,
.about-panel__media img {
  transition: transform 260ms ease;
}

.product-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 27, 25, 0.08);
  box-shadow: var(--nx-shadow);
}

.product-card__image {
  display: block;
  aspect-ratio: 4 / 4.3;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 1.35rem;
}

.product-card__price {
  margin: 0 0 0.55rem;
  color: var(--nx-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.product-card h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--nx-forest-deep);
}

.product-card .button {
  margin-top: 1rem;
  width: 100%;
}

.shop-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.shop-pills span {
  background: rgba(30, 77, 58, 0.08);
  border-color: rgba(30, 77, 58, 0.1);
}

.story-grid,
.about-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.story-copy,
.about-panel__copy {
  padding: clamp(1.8rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 27, 25, 0.08);
  box-shadow: var(--nx-shadow);
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  box-shadow: var(--nx-shadow);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  color: var(--nx-forest);
}

.text-link::after {
  content: ">";
}

.promo-banner {
  position: relative;
  width: min(calc(100% - 2rem), var(--nx-max-width));
  margin: 0 auto;
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--nx-shadow);
}

.promo-banner img {
  position: absolute;
  inset: 0;
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 50, 38, 0.82), rgba(20, 50, 38, 0.22));
}

.promo-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  width: min(32rem, calc(100% - 3rem));
  padding: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.promo-banner__content h2,
.promo-banner__content p {
  color: #fff;
}

.benefit-card {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 27, 25, 0.08);
  box-shadow: var(--nx-shadow);
}

.benefit-card__bullet {
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nx-gold), var(--nx-red));
}

.about-panel {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(29, 27, 25, 0.08);
  box-shadow: var(--nx-shadow);
}

.about-panel__media {
  min-height: 100%;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 5.5rem;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background: linear-gradient(135deg, rgba(30, 77, 58, 0.98), rgba(20, 50, 38, 0.98));
  box-shadow: var(--nx-shadow);
}

.newsletter h2,
.newsletter p {
  color: #fff;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
}

.newsletter__form input {
  min-width: 18rem;
  min-height: 52px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  background: var(--nx-forest-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 1.5rem 0 3rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: 1.6rem;
}

.site-footer p {
  margin: 0 0 0.55rem;
}

.site-footer a {
  color: #fff;
}

.content-hero {
  padding: 4rem 0 2rem;
}

.content-hero__inner,
.content-shell {
  width: min(calc(100% - 2rem), 960px);
  margin: 0 auto;
}

.content-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.96;
  color: var(--nx-forest-deep);
}

.content-hero p {
  max-width: 42rem;
  color: var(--nx-muted);
  line-height: 1.7;
}

.content-hero--centered .content-hero__inner {
  text-align: center;
}

.content-hero--centered .content-hero__inner p {
  margin-left: auto;
  margin-right: auto;
}

.content-shell {
  padding-bottom: 5rem;
}

.content-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--nx-radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 27, 25, 0.08);
  box-shadow: var(--nx-shadow);
}

.content-shell--centered,
.content-card--centered,
.content-card--centered .content-entry {
  text-align: center;
}

.content-entry + .content-entry {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--nx-border);
}

.content-entry h2,
.woocommerce div.product .product_title,
.woocommerce-loop-product__title,
.woocommerce-products-header__title {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--nx-forest-deep);
}

.content-card--shop .woocommerce-result-count,
.content-card--shop .woocommerce-breadcrumb,
.content-card--shop .woocommerce-products-header p,
.content-card--shop .woocommerce-product-details__short-description,
.content-card--shop .woocommerce-tabs,
.content-card--shop .woocommerce p,
.content-card--shop .woocommerce span,
.content-card--shop .woocommerce label {
  color: var(--nx-muted);
}

.content-card--shop .woocommerce-ordering select,
.content-card--shop .qty,
.content-card--shop .input-text {
  min-height: 48px;
  padding: 0 0.85rem;
  border: 1px solid var(--nx-border);
  border-radius: 14px;
  background: #fff;
}

.content-card--shop .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.content-card--shop .woocommerce ul.products::before,
.content-card--shop .woocommerce ul.products::after {
  display: none;
}

.content-card--shop .woocommerce ul.products li.product,
.content-card--shop .woocommerce div.product div.images .woocommerce-product-gallery__image,
.content-card--shop .woocommerce div.product div.summary {
  border-radius: var(--nx-radius-md);
}

.content-card--shop .woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 27, 25, 0.08);
  box-shadow: var(--nx-shadow);
}

.content-card--shop .woocommerce ul.products li.product img {
  border-radius: var(--nx-radius-sm);
}

.content-card--shop .woocommerce ul.products li.product .price,
.content-card--shop .woocommerce div.product p.price,
.content-card--shop .woocommerce div.product span.price {
  color: var(--nx-red);
  font-weight: 800;
}

.content-card--shop .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
}

.content-card--shop .woocommerce div.product div.images,
.content-card--shop .woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

.content-card--shop .woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.content-card--shop .woocommerce div.product div.images .woocommerce-product-gallery__image,
.content-card--shop .woocommerce div.product div.images .flex-control-thumbs li img {
  overflow: hidden;
  border-radius: var(--nx-radius-sm);
}

.content-card--shop .woocommerce-product-gallery img {
  border-radius: var(--nx-radius-md);
}

.content-card--shop .woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.content-card--shop .woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  border: 0;
}

.content-card--shop .woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.content-card--shop .woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
}

.content-card--shop .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(30, 77, 58, 0.08);
  color: var(--nx-forest-deep);
}

.content-card--shop .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background: var(--nx-forest);
  color: #fff;
}

.content-card--shop .woocommerce div.product .woocommerce-tabs .panel {
  padding: 1.5rem;
  border-radius: var(--nx-radius-md);
  background: rgba(30, 77, 58, 0.04);
}

.content-card--shop .woocommerce a.button,
.content-card--shop .woocommerce button.button,
.content-card--shop .woocommerce input.button,
.content-card--shop .woocommerce #respond input#submit {
  min-height: 50px;
  border-radius: 999px;
  font-weight: 800;
}

.content-card--shop .woocommerce span.onsale {
  min-width: 3.4rem;
  min-height: 3.4rem;
  line-height: 3.4rem;
  background: linear-gradient(135deg, var(--nx-red), var(--nx-gold));
}

.content-card--shop .woocommerce .quantity .qty {
  min-height: 50px;
}

@media (max-width: 1120px) {
  .content-card--shop .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-card--shop .woocommerce div.product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .site-header {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(125, 90, 60, 0.12);
  }

  .site-header__inner {
    grid-template-columns: 42px 42px minmax(0, 1fr) 42px 42px;
    grid-template-areas:
      "toggle account brand search-trigger cart"
      "search search search search search"
      "nav nav nav nav nav";
    align-items: center;
    gap: 0.7rem 0.45rem;
    padding: 0.7rem 0 0.9rem;
  }

  .site-brand {
    grid-area: brand;
    justify-self: center;
  }

  .site-header__search {
    display: contents;
  }

  .site-brand__logo {
    width: 104px;
    height: 46px;
  }

  .site-brand__text span {
    display: none;
  }

  .site-header__toggle {
    grid-area: toggle;
    display: inline-flex;
    justify-self: center;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header__toggle-label {
    display: none;
  }

  .site-header__toggle-lines span {
    width: 18px;
  }

  .site-header__icon-button--account {
    grid-area: account;
    display: inline-flex;
    justify-self: center;
  }

  .site-header__actions {
    display: contents;
  }

  .site-header__icon-button--search {
    grid-area: search-trigger;
    justify-self: center;
  }

  .site-header__icon-button--cart {
    grid-area: cart;
    justify-self: center;
  }

  .site-header__icon-button--account,
  .site-header__icon-button--search,
  .site-header__icon-button--cart {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-header__icon-button--account .site-header__icon,
  .site-header__icon-button--search .site-header__icon,
  .site-header__icon-button--cart .site-header__icon {
    width: 18px;
    height: 18px;
  }

  .site-search {
    grid-area: search;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    border-radius: 999px;
    background: #f7f2ea;
    border-color: rgba(125, 90, 60, 0.12);
    box-shadow: none;
  }

  .site-search input {
    width: 100%;
    min-width: 0;
    padding: 0.8rem 0.95rem;
  }

  .site-search button {
    min-width: 44px;
    padding: 0.75rem;
    background: transparent;
    box-shadow: none;
  }

  .site-header__actions .action-link,
  .site-header__actions-spacer {
    display: none;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    padding: 0.2rem 0 0;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__menu {
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 229, 0.98));
    border: 1px solid rgba(125, 90, 60, 0.14);
    box-shadow: 0 24px 50px rgba(20, 50, 38, 0.12);
  }

  .site-nav__menu a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(30, 77, 58, 0.04);
  }

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

@media (max-width: 820px) {
  .section {
    padding: 4.2rem 0;
  }

  .hero__content {
    padding: 5rem 0 4rem;
  }

  .section-heading--split,
  .story-grid,
  .about-panel,
  .newsletter {
    grid-template-columns: 1fr;
    display: grid;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__form input {
    min-width: 0;
  }

  .content-card--shop .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-brand__logo {
    width: 96px;
    height: 42px;
  }

  .site-brand__text strong {
    font-size: 1.15rem;
  }

  .action-link span:not(.action-link__count):not(.action-link__icon) {
    display: none;
  }

  .action-link {
    min-width: 46px;
    justify-content: center;
    padding: 0 0.85rem;
  }

  .hero h1 {
    max-width: 9ch;
  }

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

  .category-card {
    min-height: 340px;
  }

  .promo-banner {
    min-height: 360px;
  }
}

@media (max-width: 782px) {
  .admin-bar body::before {
    top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    display: none;
  }

  [data-reveal],
  [data-parallax] {
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}
