:root {
  --leaf-950: #0b2f20;
  --leaf-900: #103f2b;
  --leaf-800: #17633c;
  --leaf-700: #228046;
  --leaf-500: #67b957;
  --lime-400: #b4ee60;
  --lime-250: #def9a7;
  --lime-150: #efffce;
  --cream: #fbf8e8;
  --paper: #fffdf1;
  --gold: #d9a441;
  --sunset: #e67a00;
  --amber: #ffc536;
  --coral: #df6e4f;
  --aqua: #72bba7;
  --ink: #122017;
  --muted: #516458;
  --line: rgba(16, 63, 43, 0.16);
  --shadow: 0 24px 70px rgba(9, 47, 31, 0.18);
  --soft-shadow: 0 12px 32px rgba(9, 47, 31, 0.1);
  --radius: 8px;
  --header-height: 78px;
  --max: 1180px;
  --display: Georgia, Cambria, "Times New Roman", serif;
  --body: Candara, "Segoe UI", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background: var(--cream);
  min-width: 320px;
}

body.drawer-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 232, 0.92);
  color: var(--leaf-950);
  box-shadow: 0 10px 34px rgba(16, 63, 43, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand-logo {
  filter: drop-shadow(0 2px 7px rgba(9, 47, 31, 0.22));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 700;
}

.brand-logo-shell {
  width: 190px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 1px rgba(5, 34, 19, 0.85))
    drop-shadow(0 5px 12px rgba(0, 0, 0, 0.35));
}

.brand-name {
  display: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 19px;
  height: 10px;
  background: currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-38deg);
}

.brand-mark::after {
  left: 14px;
  top: 18px;
  transform: rotate(38deg);
  opacity: 0.55;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: var(--radius);
  color: currentColor;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.17);
}

.site-header.is-scrolled .main-nav a:hover {
  background: rgba(16, 63, 43, 0.08);
}

.cart-button,
.button,
.icon-button,
.nav-toggle {
  border: 0;
  min-height: 44px;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  padding: 10px 14px;
}

.site-header.is-scrolled .cart-button {
  background: var(--leaf-950);
  color: #fff;
  border-color: var(--leaf-950);
}

.cart-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -7px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: var(--lime-400);
  color: var(--leaf-950);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 46px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: currentColor;
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.site-header.is-scrolled .nav-toggle {
  background: #fff;
  border-color: var(--line);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 88vh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/photos/hero.webp") center / cover no-repeat;
  opacity: 0;
  transform: scale(1.18);
  animation: heroBackdropSettle 2.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(0, 54, 39, 0.92), rgba(0, 54, 39, 0.52) 56%, rgba(0, 54, 39, 0.28)),
    linear-gradient(0deg, rgba(0, 54, 39, 0.86), rgba(0, 54, 39, 0.1) 48%);
  animation: heroOverlayFade 1.4s ease forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22vh;
  z-index: -1;
  background: linear-gradient(0deg, var(--cream), rgba(251, 248, 232, 0));
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 0 58px;
}

.hero-inner .eyebrow,
.hero-inner h1,
.hero-copy,
.hero-actions,
.market-strip {
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 780ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-inner .eyebrow {
  animation-delay: 0.35s;
}

.hero-inner h1 {
  animation-delay: 0.5s;
}

.hero-copy {
  animation-delay: 0.68s;
}

.hero-actions {
  animation-delay: 0.84s;
}

.market-strip {
  animation-delay: 1s;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.11);
  opacity: 0;
  transform: translate(-50%, 0);
  backdrop-filter: blur(12px);
  animation: scrollCueBounce 2.2s ease-out 1.4s forwards;
}

.scroll-cue span {
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

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

.hero .eyebrow,
.contract-section .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1;
  font-weight: 700;
}

h1 {
  max-width: 920px;
  font-size: clamp(3.7rem, 7.4vw, 7.2rem);
  line-height: 0.92;
  text-transform: none;
  text-wrap: balance;
}

h1 span {
  display: inline-block;
  color: var(--amber);
  font-style: italic;
  font-weight: 700;
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.6rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
}

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.load-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: calc(var(--radius) + 6px);
  padding: 13px 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--sunset);
  color: #fff;
  box-shadow: 0 18px 40px rgba(230, 122, 0, 0.28);
}

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

.button.soft {
  background: var(--leaf-950);
  color: #fff;
}

.button.full {
  width: 100%;
}

.market-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.market-strip span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.market-strip strong {
  color: var(--amber);
  font-size: 1.18rem;
}

.commerce-bar {
  width: min(var(--max), calc(100% - 32px));
  margin: -24px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 63, 43, 0.16);
  background: rgba(16, 63, 43, 0.16);
  box-shadow: var(--soft-shadow);
}

.commerce-bar div {
  min-height: 96px;
  padding: 20px;
  background: var(--paper);
}

.micro-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.commerce-bar strong {
  color: var(--leaf-950);
}

.section,
.catalog-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading,
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 34px;
}

.section-heading h2,
.catalog-header h2 {
  max-width: 700px;
}

.section-heading h2 {
  font-size: clamp(2.05rem, 3.55vw, 4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 390px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.categories-section .section-heading {
  display: grid;
  justify-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.categories-section .section-heading .eyebrow {
  color: var(--sunset);
  text-shadow: 0 10px 28px rgba(230, 122, 0, 0.14);
}

.categories-section .section-heading h2 {
  max-width: 24ch;
  font-size: clamp(2.15rem, 3.6vw, 3.9rem);
  text-wrap: balance;
}

.company-section {
  display: grid;
  gap: 28px;
}

.accent-word {
  color: var(--sunset);
  font-style: italic;
}

.company-copy p {
  max-width: 680px;
  color: var(--muted);
  margin-top: 18px;
}

.company-copy h2 {
  max-width: none;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  color: var(--leaf-950);
  text-wrap: balance;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cred-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.cred-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--coral);
  font-weight: 900;
  margin-bottom: 12px;
}

.cred-grid h3 {
  min-height: 2.32em;
  margin-bottom: 10px;
  font-family: var(--body);
  font-size: clamp(1.15rem, 1.6vw, 1.34rem);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.cred-grid p {
  margin: 0;
  color: var(--muted);
}

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

.impact-gallery figure {
  min-height: 260px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--leaf-800);
  box-shadow: var(--soft-shadow);
}

.impact-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.impact-gallery figure:hover img {
  transform: scale(1.05);
}

.impact-gallery figcaption {
  position: absolute;
  inset: auto 12px 12px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  width: calc(100% - 24px);
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(11, 47, 32, 0.78);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 20px;
}

.category-card {
  position: relative;
  min-height: 315px;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  color: #fff;
  font: inherit;
  text-align: left;
  box-shadow: var(--soft-shadow);
  background: var(--leaf-800);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 315px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.category-card:hover img {
  transform: scale(1.07);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 42, 28, 0.86), rgba(8, 42, 28, 0.12) 62%);
}

.category-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
}

.category-card h3 {
  max-width: 88%;
}

.category-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.category-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-meta span,
.badge,
.filter-chip {
  border-radius: 999px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  font-size: 0.82rem;
  font-weight: 800;
}

.category-meta span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.category-product-card {
  min-height: auto;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(9, 47, 31, 0.08);
}

.category-product-card::after {
  display: none;
}

.category-product-card img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.16;
  object-fit: cover;
}

.category-product-card .category-card-content {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  min-height: 280px;
}

.category-product-card h3 {
  max-width: none;
  min-height: 2.08em;
  font-family: var(--body);
  font-size: clamp(1.3rem, 1.8vw, 1.58rem);
  line-height: 1.08;
  font-weight: 900;
  color: var(--leaf-950);
}

.category-sample {
  min-height: 2.48em;
  color: var(--sunset);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.24;
}

.category-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.category-product-card .category-meta {
  margin-top: auto;
}

.category-product-card .category-meta span {
  background: rgba(219, 255, 226, 0.86);
  color: #00785b;
  border: 1px solid rgba(0, 120, 91, 0.14);
}

.category-cta {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #00785b;
  font-weight: 900;
}

.category-cta::after {
  content: "->";
  margin-left: 10px;
}

.product-card {
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 63, 43, 0.26);
  box-shadow: 0 18px 42px rgba(9, 47, 31, 0.16);
}

.product-art,
.modal-art {
  position: relative;
  overflow: hidden;
  background: var(--lime-250);
}

.product-art {
  aspect-ratio: 1.18;
}

.product-art::before,
.modal-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(11, 47, 32, 0.16), rgba(255, 255, 255, 0.04)),
    var(--art-image) center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 650ms ease;
}

.product-card:hover .product-art::before {
  transform: scale(1.08);
}

.product-art::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}

.product-copy {
  padding: 18px;
}

.product-copy {
  display: grid;
  gap: 13px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card h3 {
  font-family: var(--body);
  line-height: 1.18;
  font-size: 1rem;
}

.product-card h3 {
  min-height: 2.38em;
  text-transform: capitalize;
}

.product-category {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  color: var(--leaf-950);
  font-weight: 900;
  font-size: 1.18rem;
}

.quote-price {
  color: var(--coral);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 34px;
}

.badge {
  background: var(--lime-150);
  color: var(--leaf-900);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.product-actions.has-checkout {
  grid-template-columns: 1fr 1fr;
}

.mini-button {
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--leaf-950);
  font-weight: 800;
  padding: 9px 12px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.mini-button:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 63, 43, 0.28);
}

.mini-button.buy {
  background: var(--leaf-950);
  color: #fff;
}

.mini-button.checkout {
  background: var(--lime-150);
  border-color: rgba(180, 238, 96, 0.7);
  color: var(--leaf-950);
}

.mini-button.details {
  grid-column: 1 / -1;
  min-height: 38px;
}

.catalog-shell {
  padding-top: 72px;
}

.catalog-page {
  background: var(--cream);
}

.catalog-page .site-header {
  position: sticky;
}

.catalog-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.catalog-hero h1 {
  max-width: 760px;
  color: var(--leaf-950);
  font-size: clamp(3rem, 6.2vw, 6.2rem);
}

.catalog-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.catalog-page .catalog-shell {
  padding-top: 24px;
}

.catalog-header {
  align-items: start;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(160px, 190px);
  gap: 10px;
  align-items: center;
}

.catalog-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.search-field input,
.select-field select,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 63, 43, 0.2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 11px 13px;
}

.search-field input {
  padding-left: 16px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.filter-chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--leaf-950);
}

.filter-chip.is-active {
  background: var(--lime-400);
  border-color: var(--lime-400);
}

.filter-chip:hover {
  border-color: rgba(16, 63, 43, 0.32);
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  margin-bottom: 18px;
}

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

.catalog-empty {
  margin-top: 18px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(239, 255, 206, 0.9), rgba(255, 253, 241, 0.94)),
    url("assets/category-herbs.png") center / cover no-repeat;
  box-shadow: var(--soft-shadow);
}

.catalog-empty h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.catalog-empty p {
  max-width: 620px;
  color: var(--muted);
}

.load-row {
  justify-content: center;
  margin-top: 26px;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

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

.inquiry-copy .eyebrow {
  color: var(--sunset);
  text-shadow: 0 10px 28px rgba(230, 122, 0, 0.18);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--leaf-950);
  font-weight: 800;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.inquiry-form textarea {
  resize: vertical;
}

.contract-section {
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(180, 238, 96, 0.08), transparent 34%),
    linear-gradient(120deg, rgba(0, 85, 62, 0.98), rgba(0, 57, 42, 0.98));
  margin: 36px 0 0;
  padding: 88px 16px;
}

.contract-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  text-align: center;
}

.contract-inner h2,
.contract-inner > p {
  max-width: 100%;
}

.contract-inner h2 {
  color: #fff;
  font-size: clamp(2.2rem, 3.9vw, 4.15rem);
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance;
}

.contract-inner > p {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  color: rgba(221, 255, 233, 0.88);
}

.contract-grid,
.process-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.contract-grid article,
.process-grid article,
.policy-grid article {
  border-radius: var(--radius);
  padding: 20px;
}

.contract-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(221, 255, 233, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contract-grid span,
.process-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--amber);
  font-weight: 900;
  margin-bottom: 12px;
}

.contract-grid h3 {
  color: #fff;
  font-family: var(--body);
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 900;
}

.contract-grid p {
  color: rgba(221, 255, 233, 0.84);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid article,
.policy-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.process-grid h3 {
  color: #00785b;
  font-family: var(--body);
  font-size: 1.2rem;
  line-height: 1.18;
  font-weight: 900;
}

.process-grid p,
.policy-grid p,
.faq-list p {
  color: var(--muted);
}

.policy-grid {
  margin-bottom: 0;
}

.policy-grid h3 {
  font-family: var(--body);
  font-size: 1.08rem;
  line-height: 1.16;
  font-weight: 900;
  color: var(--sunset);
}

.policy-grid p {
  margin-bottom: 0;
}

.faq-section {
  padding-top: 54px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #00785b;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime-150);
  color: var(--leaf-950);
  font-size: 1.1rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.cart-drawer,
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer {
  background: rgba(7, 35, 23, 0.48);
}

.cart-drawer.is-open,
.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(440px, 100%);
  background: var(--cream);
  box-shadow: -22px 0 70px rgba(7, 35, 23, 0.3);
  transform: translateX(102%);
  transition: transform 260ms ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cart-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  font-size: 2.3rem;
}

.icon-button {
  width: 46px;
  border-radius: var(--radius);
  background: var(--leaf-950);
  position: relative;
}

.icon-button::before,
.icon-button::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  top: 22px;
  height: 2px;
  background: #fff;
}

.icon-button::before {
  transform: rotate(45deg);
}

.icon-button::after {
  transform: rotate(-45deg);
}

.cart-items {
  overflow: auto;
  padding: 18px 24px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.cart-line h3 {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.2;
}

.cart-line p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.qty-controls {
  display: grid;
  grid-template-columns: 34px 36px 34px 34px;
  align-items: center;
  justify-items: center;
  gap: 2px;
}

.qty-controls button {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--leaf-950);
  font-weight: 900;
}

.cart-empty {
  padding: 24px;
  display: none;
}

.cart-empty.is-visible {
  display: block;
}

.cart-summary {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  background: var(--paper);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.cart-summary strong {
  color: var(--leaf-950);
}

.product-modal {
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 35, 23, 0.55);
}

.modal-panel {
  width: min(900px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
}

.modal-art {
  min-height: 520px;
}

.modal-copy {
  padding: 46px 34px 34px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.modal-copy p {
  color: var(--muted);
}

.modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-price {
  font-size: 1.8rem;
  color: var(--leaf-950);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 44px clamp(16px, 4vw, 42px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--leaf-950);
}

.site-footer img {
  width: min(240px, 72vw);
  margin-bottom: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.28));
}

.site-footer p {
  max-width: 520px;
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.greenhouse-map {
  display: grid;
  gap: 10px;
}

.greenhouse-map iframe {
  width: 100%;
  height: 260px;
  border: 1px solid rgba(221, 255, 233, 0.18);
  border-radius: var(--radius);
  filter: saturate(0.9) contrast(1.02);
}

.greenhouse-map a {
  justify-self: start;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(255, 197, 54, 0.1);
}

.site-footer address {
  font-style: normal;
  line-height: 1.7;
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

.wp-page-main {
  min-height: 62vh;
  background: var(--cream);
}

.wp-page-hero,
.wp-content-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.wp-page-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 64px 0 34px;
  border-bottom: 1px solid var(--line);
}

.wp-page-hero h1 {
  max-width: 760px;
  color: var(--leaf-950);
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}

.wp-page-hero p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  margin: 14px 0 0;
}

.wp-content-shell {
  padding: 34px 0 86px;
}

.wp-content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  padding: clamp(22px, 4vw, 42px);
}

.wp-content-panel > *:first-child {
  margin-top: 0;
}

.wp-content-panel > *:last-child {
  margin-bottom: 0;
}

.wp-content-panel h2,
.wp-content-panel h3 {
  color: var(--leaf-950);
}

.wp-content-panel h2 {
  margin-top: 34px;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
}

.wp-content-panel h3 {
  margin-top: 24px;
  font-family: var(--body);
  font-weight: 900;
}

.wp-content-panel p,
.wp-content-panel li {
  color: var(--muted);
}

.wp-content-panel a {
  color: var(--sunset);
  font-weight: 800;
}

.woocommerce-content .woocommerce-info,
.woocommerce-content .woocommerce-message,
.woocommerce-content .woocommerce-error {
  border-top-color: var(--leaf-800);
  background: #fff;
  color: var(--ink);
}

.woocommerce-content .button,
.woocommerce-content button.button,
.woocommerce-content a.button,
.woocommerce-content input.button,
.woocommerce-content #respond input#submit {
  border-radius: var(--radius);
  background: var(--leaf-950);
  color: #fff;
  font-weight: 900;
}

.woocommerce-content .button:hover,
.woocommerce-content button.button:hover,
.woocommerce-content a.button:hover,
.woocommerce-content input.button:hover {
  background: var(--leaf-800);
  color: #fff;
}

.woocommerce-content input,
.woocommerce-content textarea,
.woocommerce-content select {
  border: 1px solid rgba(16, 63, 43, 0.2);
  border-radius: var(--radius);
  min-height: 44px;
  padding: 10px 12px;
}

.woocommerce-content table.shop_table {
  border-color: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.woocommerce-content table.shop_table th,
.woocommerce-content table.shop_table td {
  border-color: var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroBackdropSettle {
  0% {
    opacity: 0;
    transform: scale(1.18);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes heroOverlayFade {
  to {
    opacity: 1;
  }
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCueBounce {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  12% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  28% {
    opacity: 1;
    transform: translate(-50%, 10px);
  }
  44% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, 8px);
  }
  74% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  88% {
    opacity: 1;
    transform: translate(-50%, 5px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    background: rgba(9, 47, 31, 0.94);
    color: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(16px);
  }

  .site-header.is-scrolled .main-nav {
    background: rgba(251, 248, 232, 0.96);
    color: var(--leaf-950);
    border-color: var(--line);
  }

  .site-header.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    justify-content: space-between;
    border-radius: var(--radius);
  }

  .main-nav a::after {
    content: "->";
    color: var(--amber);
    font-weight: 900;
  }

  .nav-toggle {
    display: grid;
  }

  .commerce-bar,
  .process-grid,
  .cred-grid,
  .impact-gallery,
  .policy-grid,
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .contract-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 10px 14px;
    gap: 10px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-logo-shell {
    width: 148px;
    height: 64px;
    padding: 0;
  }

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

  .cart-button span:nth-child(2) {
    display: none;
  }

  .cart-button,
  .nav-toggle {
    width: 44px;
    padding-inline: 9px;
  }

  .cart-count {
    position: absolute;
    transform: translate(14px, -13px);
    min-width: 21px;
    height: 21px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-inner {
    width: min(100% - 24px, var(--max));
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.9rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .market-strip span {
    width: 100%;
  }

  .commerce-bar {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    grid-template-columns: 1fr;
  }

  .section,
  .catalog-shell {
    width: min(100% - 24px, var(--max));
    padding: 58px 0;
  }

  .section-heading,
  .catalog-header,
  .catalog-meta {
    display: grid;
    align-items: start;
  }

  .categories-section .section-heading h2 {
    white-space: normal;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  .catalog-hero {
    width: min(100% - 24px, var(--max));
    display: grid;
    align-items: start;
    padding-top: 42px;
  }

  .contract-inner h2 {
    white-space: normal;
  }

  .company-copy h2 {
    white-space: normal;
  }

  .category-grid,
  .product-grid,
  .process-grid,
  .cred-grid,
  .impact-gallery,
  .policy-grid,
  .faq-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-art {
    min-height: 280px;
  }

  .modal-copy {
    padding: 26px 18px 22px;
  }
}

@media (max-width: 420px) {
  .product-actions,
  .product-actions.has-checkout,
  .modal-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-backdrop,
  .hero::before,
  .hero-inner .eyebrow,
  .hero-inner h1,
  .hero-copy,
  .hero-actions,
  .market-strip,
  .scroll-cue {
    opacity: 1;
    transform: none;
  }

  .hero-backdrop {
    transform: scale(1.04);
  }

  .scroll-cue {
    transform: translate(-50%, 0);
  }
}

/* ============================================================
   Enhancements: real product images, currency tools, GDPR map
   consent, cookie bar, back-to-top, legal page, overflow guards
   ============================================================ */

/* Product card image as a real <img> (SEO + a11y) */
.product-art {
  position: relative;
}
.product-art::before {
  display: none;
}
.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 650ms ease;
}
.product-card:hover .product-photo {
  transform: scale(1.08);
}

/* Catalog tools now hold search + sort + currency */
.catalog-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.catalog-tools .search-field {
  flex: 1 1 240px;
  min-width: 200px;
}
.catalog-tools .select-field {
  flex: 0 1 auto;
}
.catalog-tools .select-field select {
  min-width: 150px;
}

/* Consent-gated map placeholder */
.map-consent {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: start;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(221, 255, 233, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 24%, rgba(103, 185, 87, 0.28), transparent 60%),
    radial-gradient(circle at 76% 72%, rgba(217, 164, 65, 0.2), transparent 55%),
    var(--leaf-900);
  color: rgba(255, 255, 255, 0.92);
}
.map-consent p {
  margin: 0;
  max-width: 320px;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 160%);
  z-index: 120;
  width: min(720px, calc(100% - 28px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--leaf-950);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transition: transform 300ms ease;
}
.cookie-bar.is-visible {
  transform: translate(-50%, 0);
}
.cookie-bar p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.cookie-bar a {
  color: var(--amber);
  font-weight: 800;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-actions .button {
  padding: 10px 16px;
}

/* Back-to-top */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--leaf-950);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  transform: translateY(-2px);
}
.to-top span {
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(2px) rotate(45deg);
}

/* Email fallback under forms + footer links */
.form-alt {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.form-alt a {
  color: var(--sunset);
  font-weight: 800;
}
.contract-inner .form-alt {
  color: rgba(221, 255, 233, 0.86);
}
.contract-inner .form-alt a {
  color: var(--amber);
}
.footer-links {
  margin: 4px 0 0;
}
.footer-links a {
  color: var(--amber);
  font-weight: 800;
}

/* Legal / privacy page */
.legal-shell {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}
.legal-shell h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 8px 0 4px;
}
.legal-updated {
  color: var(--muted);
  margin: 0 0 28px;
}
.legal-shell h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  margin: 30px 0 8px;
}
.legal-shell p,
.legal-shell li {
  color: var(--ink);
  line-height: 1.7;
}
.legal-shell ul {
  padding-left: 20px;
  display: grid;
  gap: 8px;
  margin: 0;
}
.legal-shell a {
  color: var(--sunset);
  font-weight: 700;
}
.legal-back {
  margin-top: 32px;
}

/* Overflow guards: relax single-line headings below desktop */
@media (max-width: 1180px) {
  .company-copy h2,
  .contract-inner h2,
  .categories-section .section-heading h2 {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .catalog-tools {
    flex-direction: column;
  }
  .catalog-tools .search-field,
  .catalog-tools .select-field {
    flex: 1 1 auto;
    width: 100%;
  }
  .catalog-tools .select-field select {
    width: 100%;
  }
  .cookie-bar {
    bottom: 12px;
  }
  .to-top {
    bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-photo,
  .cookie-bar,
  .to-top {
    transition-duration: 1ms !important;
  }
}
