:root {
  --ink: #22221f;
  --muted: #6c6a60;
  --paper: #fbfaf6;
  --cream: #f1eadc;
  --sage: #66735c;
  --moss: #2f4a39;
  --citrus: #f4b844;
  --berry: #7b2535;
  --clay: #a95b40;
  --line: rgba(34, 34, 31, 0.13);
  --shadow: 0 24px 70px rgba(35, 30, 18, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 12px 36px rgba(35, 30, 18, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.leaf-mark {
  width: 22px;
  height: 22px;
  border-radius: 70% 10% 70% 10%;
  background: linear-gradient(140deg, var(--moss), #9fb37a);
  transform: rotate(38deg);
  box-shadow: inset -4px -3px 0 rgba(255, 255, 255, 0.22);
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  color: #45443d;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bag-button,
.nav-toggle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.bag-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 9px 16px;
  box-shadow: 0 10px 24px rgba(35, 30, 18, 0.08);
}

.bag-button strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--moss);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 80px) 74px;
  background:
    linear-gradient(115deg, rgba(251, 250, 246, 0.95) 0%, rgba(251, 250, 246, 0.68) 45%, rgba(212, 222, 198, 0.65) 100%),
    radial-gradient(circle at 84% 20%, rgba(244, 184, 68, 0.35), transparent 34%),
    linear-gradient(145deg, #f5efe3, #d9e2cb 55%, #e9dfd0);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 118px;
  background: linear-gradient(to top, var(--paper), rgba(251, 250, 246, 0));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 12vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 0;
  color: #444239;
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 740;
}

.button-primary {
  color: #fff;
  background: var(--moss);
  box-shadow: 0 16px 28px rgba(47, 74, 57, 0.24);
}

.button-secondary {
  color: var(--moss);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(47, 74, 57, 0.2);
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 680px;
}

.hero-product {
  position: absolute;
  filter: drop-shadow(0 32px 34px rgba(35, 30, 18, 0.2));
  mix-blend-mode: multiply;
  user-select: none;
}

.hero-lemon {
  right: 27%;
  bottom: 14%;
  width: min(30vw, 320px);
  transform: rotate(-8deg);
}

.hero-thieves {
  right: 12%;
  bottom: 24%;
  width: min(22vw, 235px);
  transform: rotate(7deg);
}

.hero-ningxia {
  right: -14%;
  top: 15%;
  width: min(43vw, 520px);
  border-radius: var(--radius);
  transform: rotate(2deg);
  filter: drop-shadow(0 36px 40px rgba(35, 30, 18, 0.22));
}

.steam {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(47, 74, 57, 0.18);
  border-bottom: 0;
  border-right: 0;
  border-radius: 50%;
  opacity: 0.65;
}

.steam-one {
  right: 29%;
  top: 16%;
  transform: rotate(34deg);
}

.steam-two {
  right: 41%;
  top: 27%;
  transform: rotate(70deg) scale(0.7);
}

.stone {
  position: absolute;
  border-radius: 48% 52% 42% 58%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset -14px -12px 22px rgba(47, 74, 57, 0.08), var(--shadow);
}

.stone-one {
  right: 31%;
  bottom: 6%;
  width: 270px;
  height: 74px;
}

.stone-two {
  right: 3%;
  bottom: 13%;
  width: 190px;
  height: 54px;
}

.hero-strip {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 5vw, 80px);
  right: clamp(18px, 5vw, 80px);
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  background: rgba(47, 74, 57, 0.22);
  backdrop-filter: blur(16px);
}

.hero-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(47, 74, 57, 0.64);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 80px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  transform: translateY(-18px);
}

.intro-band > div {
  min-height: 140px;
  padding: 26px;
  background: #fff;
}

.stat {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.intro-band p,
.section-heading p,
.standard-copy p,
.product-info p,
.ritual-panel p,
.journal-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.section {
  padding: 86px clamp(18px, 5vw, 80px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.44fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.standard-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 0;
}

.filter-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.filter-button {
  min-width: 76px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: transparent;
  color: #555349;
  font-weight: 720;
}

.filter-button.is-active {
  color: #fff;
  background: var(--moss);
}

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

.product-card {
  display: grid;
  grid-template-rows: minmax(290px, 38vw) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(35, 30, 18, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 290px;
  padding: 28px;
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: auto 12% 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(35, 30, 18, 0.13);
  filter: blur(10px);
}

.product-image img {
  position: relative;
  z-index: 1;
  width: min(70%, 240px);
  max-height: 310px;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.product-ningxia img,
.product-cleaner img,
.product-face img {
  width: min(90%, 360px);
}

.product-lemon {
  background: linear-gradient(150deg, #fff5cf, #f6d067);
}

.product-lavender {
  background: linear-gradient(150deg, #efe3ff, #b697c8);
}

.product-thieves {
  background: linear-gradient(150deg, #f4d5bd, #a9563a);
}

.product-peppermint {
  background: linear-gradient(150deg, #d8efe7, #5c9883);
}

.product-cleaner {
  background: linear-gradient(150deg, #f4efe4, #d5ded0);
}

.product-ningxia {
  background: linear-gradient(150deg, #f2d8dc, #842638);
}

.product-face {
  background: linear-gradient(150deg, #edf1eb, #8aa6a0);
}

.product-card-featured {
  border-color: rgba(47, 74, 57, 0.24);
}

.product-info {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 24px;
}

.product-type {
  margin: 0 0 8px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-info h3,
.ritual-panel h3,
.standard-steps h3,
.journal-grid h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.02;
}

.product-info p:not(.product-type) {
  margin: 12px 0 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-meta strong {
  font-size: 1.24rem;
}

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

.add-button {
  min-height: 46px;
  margin-top: 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 740;
}

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

.amazon-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 96px clamp(18px, 5vw, 80px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.5)),
    linear-gradient(135deg, #edf1eb, #f4ead8 54%, #d9e2cb);
}

.amazon-copy h2 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.amazon-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.amazon-product-card {
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(47, 74, 57, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.amazon-product-card img {
  width: min(100%, 360px);
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.amazon-product-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.amazon-product-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.amazon-product-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.ritual-section,
.journal-section,
.faq-section {
  padding: 86px clamp(18px, 5vw, 80px);
}

.ritual-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
}

.ritual-tabs {
  display: grid;
  gap: 10px;
}

.ritual-tab {
  display: grid;
  gap: 4px;
  min-height: 82px;
  justify-items: start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.ritual-tab span {
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ritual-tab strong {
  font-size: 1.08rem;
}

.ritual-tab.is-active {
  color: #fff;
  border-color: var(--moss);
  background: var(--moss);
}

.ritual-tab.is-active span {
  color: rgba(255, 255, 255, 0.74);
}

.ritual-panel {
  min-height: 356px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 6vw, 58px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(0deg, rgba(34, 34, 31, 0.72), rgba(34, 34, 31, 0.12)),
    linear-gradient(135deg, #f4b844, #66735c 52%, #7b2535);
  box-shadow: var(--shadow);
}

.ritual-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.ritual-panel h3 {
  max-width: 720px;
  margin-top: 8px;
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.ritual-kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ritual-panel a {
  width: fit-content;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-weight: 760;
}

.standard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: 104px clamp(18px, 5vw, 80px);
  background: var(--moss);
  color: #fff;
}

.standard-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.standard-copy .eyebrow {
  color: #d6e2c1;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-weight: 760;
}

.standard-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.standard-steps div {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.standard-steps span {
  color: #d6e2c1;
  font-weight: 820;
}

.standard-steps h3 {
  margin-top: 46px;
}

.standard-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.55fr);
  gap: 16px;
}

.journal-feature {
  grid-row: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: end;
  min-height: 520px;
  padding: clamp(22px, 4vw, 44px);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.journal-image {
  min-height: 430px;
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(34, 34, 31, 0.05), rgba(34, 34, 31, 0)),
    url("https://static.youngliving.com/productimages/large/32034.jpg") center 54% / 52% no-repeat,
    linear-gradient(150deg, #f7efe0, #d7ddcb);
}

.journal-feature h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.note-card {
  min-height: 252px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.note-card span {
  display: block;
  margin-bottom: 46px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  font-weight: 760;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
}

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

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

.bag-drawer {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  justify-items: end;
  pointer-events: none;
  visibility: hidden;
}

.bag-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.bag-scrim {
  position: absolute;
  inset: 0;
  background: rgba(16, 17, 14, 0.42);
  opacity: 0;
  transition: opacity 180ms ease;
}

.bag-drawer.is-open .bag-scrim {
  opacity: 1;
}

.bag-panel {
  position: relative;
  display: flex;
  width: min(100%, 420px);
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.bag-header,
.bag-total,
.bag-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.bag-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.bag-header button {
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.bag-items {
  flex: 1;
  padding: 18px 0;
}

.bag-line {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

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

.bag-total {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 38px clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  max-width: 650px;
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
    order: -1;
  }

  .hero-lemon {
    right: 45%;
    width: 260px;
  }

  .hero-thieves {
    right: 28%;
    width: 210px;
  }

  .hero-ningxia {
    right: -7%;
    width: 440px;
  }

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

  .section-heading,
  .amazon-feature,
  .standard-section,
  .journal-grid,
  .journal-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto auto;
    gap: 10px;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .bag-button span {
    display: none;
  }

  .hero {
    padding: 92px 16px 90px;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-lemon {
    right: 42%;
    width: 210px;
  }

  .hero-thieves {
    right: 20%;
    bottom: 20%;
    width: 166px;
  }

  .hero-ningxia {
    right: -40%;
    top: 10%;
    width: 370px;
  }

  .stone-one {
    right: 32%;
    width: 210px;
  }

  .hero-strip,
  .intro-band,
  .standard-steps,
  .ritual-layout {
    grid-template-columns: 1fr;
  }

  .intro-band {
    margin: 0 16px;
  }

  .section,
  .amazon-feature,
  .ritual-section,
  .journal-section,
  .faq-section,
  .standard-section {
    padding: 70px 16px;
  }

  .filter-bar {
    width: 100%;
    border-radius: var(--radius);
  }

  .filter-button {
    flex: 1 1 42%;
  }

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

  .product-card {
    grid-template-rows: minmax(260px, auto) auto;
  }

  .journal-image {
    min-height: 320px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
