/* ==========================================================================
   WILLOW BOUTIQUE — shared stylesheet
   Palette: Willow #2E4638 · Mist #EEF1E7 · Ink #20281F · Rapz Lime #A9BC45 · Maple #A6382E
   Type: Fraunces (display) · Karla (body & labels)
   ========================================================================== */

:root {
  --willow: #2e4638;
  --willow-deep: #223528;
  --mist: #eef1e7;
  --mist-soft: #f6f8f1;
  --ink: #20281f;
  --lime: #a9bc45;
  --lime-soft: #dfe6c0;
  --maple: #a6382e;
  --white: #fdfdfa;
  --line: rgba(46, 70, 56, 0.18);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.6rem, 1.4rem + 1vw, 2.25rem);
  --step-3: clamp(2.1rem, 1.7rem + 2vw, 3.4rem);
  --step-4: clamp(2.8rem, 2rem + 4vw, 5.6rem);
  --step-hero: clamp(3.4rem, 2rem + 8vw, 9rem);

  --space-s: clamp(1rem, 2vw, 1.5rem);
  --space-m: clamp(1.75rem, 3.5vw, 3rem);
  --space-l: clamp(3rem, 6.5vw, 6rem);
  --space-xl: clamp(4.5rem, 9vw, 9rem);

  --wrap: min(1180px, 92vw);
  --radius-arch: 999px 999px 18px 18px;
  --shadow: 0 18px 50px -24px rgba(32, 40, 31, 0.45);
}

/* ---------- Reset & base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--willow);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* ---------- Labels & shared bits ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--willow);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--lime);
}

.section {
  padding-block: var(--space-xl);
}

.section--tint {
  background: var(--mist-soft);
}

.section--willow {
  background: var(--willow);
  color: var(--mist);
}

.section--willow .eyebrow {
  color: var(--lime-soft);
}

.section-head {
  max-width: 46ch;
  margin-bottom: var(--space-m);
}

.section-head h2 {
  font-size: var(--step-3);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 55ch;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 2px solid var(--willow);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn--solid {
  background: var(--willow);
  color: var(--mist);
}

.btn--solid:hover {
  background: var(--willow-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--willow);
}

.btn--ghost:hover {
  background: var(--willow);
  color: var(--mist);
  transform: translateY(-2px);
}

.btn--lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.btn--lime:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.section--willow .btn--ghost {
  color: var(--mist);
  border-color: var(--mist);
}

.section--willow .btn--ghost:hover {
  background: var(--mist);
  color: var(--willow);
}

/* ---------- Header ---------- */

.top-strip {
  background: var(--willow-deep);
  color: var(--lime-soft);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.5rem 1rem;
}

.top-strip a {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
}

.top-strip a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--willow);
  line-height: 1;
}

.brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.btn) {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a[aria-current="page"] {
  border-bottom-color: var(--lime);
}

.nav-links .btn {
  padding: 0.65rem 1.3rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--willow);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  color: var(--willow);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--mist-soft);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 0.5rem 4vw 1.25rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links li:last-child {
    border-bottom: 0;
    padding-top: 1rem;
  }

  .nav-links a:not(.btn) {
    display: block;
    padding: 0.9rem 0;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-l) var(--space-xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-m);
  align-items: center;
}

.hero-title {
  font-size: var(--step-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--willow);
  margin: 0 0 0.35em;
}

.hero-title .lean {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  transform: rotate(-2.5deg) translateX(0.06em);
  transform-origin: left bottom;
}

.hero-copy {
  font-size: var(--step-1);
  max-width: 42ch;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--willow);
}

.hero-meta span::before {
  content: "❦ ";
  color: var(--lime);
}

.hero-figure {
  position: relative;
  margin: 0;
}

.arch {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  background: var(--white);
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-figure figcaption {
  margin-top: 0.75rem;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--willow);
}

/* Signature: swaying willow frond */

.frond {
  position: absolute;
  top: -12px;
  pointer-events: none;
  z-index: 1;
  color: var(--willow);
  opacity: 0.85;
}

.frond--hero-left {
  left: -30px;
  width: clamp(120px, 16vw, 220px);
}

.frond--hero-right {
  right: 4%;
  width: clamp(90px, 10vw, 150px);
  color: var(--lime);
  opacity: 0.7;
}

.sway {
  transform-origin: top center;
  animation: sway 7s ease-in-out infinite alternate;
}

.sway--late {
  animation-duration: 9s;
  animation-delay: -3s;
}

@keyframes sway {
  from {
    transform: rotate(-3.5deg);
  }
  to {
    transform: rotate(3.5deg);
  }
}

.frond-divider {
  display: flex;
  justify-content: center;
  color: var(--willow);
  opacity: 0.55;
  margin: 0;
  padding-block: 0.5rem;
}

.frond-divider svg {
  width: 54px;
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--willow);
  color: var(--mist);
  overflow: hidden;
  padding-block: 0.85rem;
  border-block: 2px solid var(--willow-deep);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-1);
  white-space: nowrap;
}

.marquee-track span::after {
  content: "❦";
  margin-left: 3rem;
  color: var(--lime);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

.product-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card a.product-photo {
  display: block;
  overflow: hidden;
  background: var(--mist-soft);
}

.product-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

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

.product-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-body h3 {
  font-size: var(--step-1);
  margin: 0;
}

.product-body h3 a {
  text-decoration: none;
}

.product-body h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 3px;
}

.product-brand {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--willow);
  font-weight: 700;
}

.product-price {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
}

.product-note {
  font-size: var(--step--1);
  color: rgba(32, 40, 31, 0.7);
  margin: 0;
}

.more-list {
  margin-top: var(--space-m);
  border-top: 1px solid var(--line);
}

.more-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.15s ease;
}

.more-row:hover {
  background: var(--mist-soft);
}

.more-row .name {
  font-family: var(--font-display);
  font-size: var(--step-1);
}

.more-row .cat {
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--willow);
}

.more-row .price {
  font-weight: 700;
}

/* ---------- Split feature (about teaser, made-in) ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-l);
  align-items: center;
}

.split--flip > .split-media {
  order: 2;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.badge-row img {
  height: 74px;
  width: auto;
}

/* ---------- Fit promise / value cards ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-arch);
  padding: 2.5rem 1.75rem 2rem;
  text-align: center;
  background: var(--white);
}

.section--willow .value-card {
  background: transparent;
  border-color: rgba(238, 241, 231, 0.3);
}

.value-card h3 {
  font-size: var(--step-1);
}

.value-card .big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-3);
  color: var(--lime);
  display: block;
  margin-bottom: 0.5rem;
}

/* ---------- Trust ---------- */

.trust {
  text-align: center;
}

.trust .stat {
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 700;
  color: var(--willow);
  line-height: 1;
}

.trust .stat em {
  font-style: italic;
  color: var(--lime);
}

.trust p {
  max-width: 48ch;
  margin-inline: auto;
}

/* ---------- Locations ---------- */

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
}

.location-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.location-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.location-body {
  padding: 1.75rem 1.75rem 2rem;
}

.location-body h3 {
  font-size: var(--step-2);
}

.location-body address {
  font-style: normal;
  margin-bottom: 1rem;
}

.hours {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--step--1);
}

.hours li span:first-child {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 760px;
  margin-inline: auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
}

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

.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--lime);
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 0.25rem 1.25rem;
  max-width: 62ch;
}

/* ---------- Newsletter ---------- */

.newsletter {
  text-align: center;
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.newsletter input[type="email"] {
  font: inherit;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--willow);
  min-width: min(320px, 100%);
  background: var(--white);
  color: var(--ink);
}

.form-note {
  font-size: var(--step--1);
  opacity: 0.75;
  margin-top: 0.75rem;
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-l);
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.contact-list .label {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--willow);
  min-width: 6.5rem;
}

.contact-list a {
  font-weight: 700;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
}

/* ---------- Category tiles (shop) ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cat-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 190px;
  border-radius: 18px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--mist);
  background: linear-gradient(150deg, var(--willow) 0%, var(--willow-deep) 100%);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.cat-tile:nth-child(3n + 2) {
  background: linear-gradient(150deg, #3c5a48 0%, var(--willow) 100%);
}

.cat-tile:hover {
  transform: translateY(-4px);
}

.cat-tile h3 {
  font-size: var(--step-2);
  margin: 0;
}

.cat-tile .go {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-size: 1.4rem;
  color: var(--lime);
  transition: transform 0.2s ease;
}

.cat-tile:hover .go {
  transform: translateX(4px);
}

.cat-tile svg.tile-frond {
  position: absolute;
  right: -18px;
  top: -12px;
  width: 110px;
  opacity: 0.25;
  color: var(--lime);
}

/* ---------- Story page ---------- */

.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-2);
  line-height: 1.35;
  color: var(--willow);
  border-left: 4px solid var(--lime);
  padding-left: 1.5rem;
  max-width: 30ch;
  margin: var(--space-m) 0;
}

.timeline {
  list-style: none;
  margin: var(--space-m) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline .when {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--willow);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--willow-deep);
  color: var(--mist);
  padding-block: var(--space-l) calc(var(--space-m) + 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-m);
}

.footer-grid h4 {
  font-size: var(--step-0);
  color: var(--lime-soft);
  letter-spacing: 0.08em;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.55rem;
}

.footer-grid a {
  color: var(--mist);
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
  text-decoration-color: var(--lime);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--mist);
  margin-bottom: 0.5rem;
}

.footer-brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}

.footer-bottom {
  margin-top: var(--space-m);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(238, 241, 231, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--step--1);
  opacity: 0.85;
}

/* ---------- Mobile action bar & float call ---------- */

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--willow-deep);
}

.mobile-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-cta .cta-shop {
  background: var(--lime);
  color: var(--ink);
}

.mobile-cta .cta-call {
  background: var(--willow);
  color: var(--mist);
}

.float-call {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 110;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.float-call:hover {
  transform: scale(1.08);
}

@media (max-width: 820px) {
  .mobile-cta {
    display: grid;
  }

  .float-call {
    bottom: 4.75rem;
  }
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .split,
  .split--flip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split--flip > .split-media {
    order: 0;
  }

  .product-grid,
  .value-grid,
  .cat-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .more-row {
    grid-template-columns: 1fr auto;
  }

  .more-row .cat {
    display: none;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 560px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }

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

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sway,
  .marquee-track {
    animation: none;
  }

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

  .product-card,
  .product-card img,
  .btn,
  .cat-tile {
    transition: none;
  }
}

/* ---------- Print ---------- */

@media print {
  .site-header,
  .mobile-cta,
  .float-call,
  .marquee,
  .newsletter {
    display: none;
  }
}
