:root {
  --ink: #191a16;
  --olive-950: #273326;
  --olive-800: #3e5238;
  --olive-700: #566a4b;
  --olive-500: #7e8d6c;
  --sage-100: #e4ead7;
  --terracotta: #bf4d20;
  --terracotta-dark: #9d3816;
  --paper: #ffffff;
  --warm-white: #fbf8f3;
  --cream: #f3ede5;
  --line: #dedbd4;
  --muted: #686a64;
  --shadow: 0 18px 45px rgba(32, 38, 28, 0.1);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;
  --font-script: "Allura", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body,
button,
input {
  font-family: var(--font-sans);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
summary {
  letter-spacing: 0;
}

button,
summary {
  cursor: pointer;
}

.page-width {
  width: min(100% - 48px, 1480px);
  margin-inline: auto;
}

.section-space {
  padding-block: 76px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

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

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

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 20px;
  background: var(--sage-100);
  color: var(--olive-950);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.announcement__divider {
  width: 1px;
  height: 14px;
  background: rgba(39, 51, 38, 0.4);
}

.store-header {
  position: relative;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eeece7;
}

.store-nav {
  min-height: 128px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 110px;
  height: 110px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.7vw, 48px);
  font-size: 16px;
}

.desktop-nav > a,
.nav-menu > summary {
  position: relative;
  padding: 16px 0;
  color: #272822;
  font-weight: 500;
  list-style: none;
  white-space: nowrap;
}

.nav-menu > summary::-webkit-details-marker {
  display: none;
}

.desktop-nav > a::after,
.nav-menu > summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--terracotta);
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.nav-menu > summary:hover::after,
.nav-menu > summary:focus-visible::after,
.desktop-nav > .is-active::after {
  transform: scaleX(1);
}

.desktop-nav > .is-active {
  color: var(--terracotta);
  font-weight: 700;
}

.nav-menu {
  position: relative;
}

.nav-menu__panel {
  position: absolute;
  top: calc(100% - 2px);
  left: -22px;
  z-index: 10;
  width: 230px;
  display: grid;
  gap: 2px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-menu__panel a {
  padding: 10px 12px;
  font-size: 14px;
}

.nav-menu__panel a:hover,
.nav-menu__panel a:focus-visible {
  background: var(--warm-white);
  color: var(--terracotta);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.nav-actions svg,
.catalog-search svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--warm-white);
  isolation: isolate;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 248, 243, 1) 0%, rgba(251, 248, 243, 0.98) 28%, rgba(251, 248, 243, 0.7) 46%, rgba(251, 248, 243, 0.08) 68%),
    linear-gradient(0deg, rgba(251, 248, 243, 0.92) 0%, rgba(251, 248, 243, 0) 26%);
}

.hero__content {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-block: 64px 96px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(690px, 54%);
}

.script-kicker {
  margin: 0 0 4px;
  color: var(--terracotta);
  font-family: var(--font-script);
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1;
}

.hero h1,
.section-heading h2,
.products-heading h2,
.quality-copy h2,
.order-help h2 {
  margin: 0;
  color: var(--olive-950);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 0.98;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(54px, 5.2vw, 82px);
}

.hero__lede {
  max-width: 570px;
  margin: 26px 0 0;
  font-size: 19px;
  line-height: 1.55;
}

.hero__actions,
.quality-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  background: var(--terracotta);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--terracotta-dark);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--terracotta);
  color: var(--terracotta-dark);
  backdrop-filter: blur(8px);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: #fff;
}

.hero__proof {
  width: min(760px, 120%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.proof-item,
.trust-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}

.proof-item svg,
.trust-item svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--olive-700);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item span,
.trust-item span {
  display: grid;
  color: #51544d;
  font-size: 13px;
  line-height: 1.4;
}

.proof-item strong,
.trust-item strong {
  color: var(--ink);
  font-size: 14px;
}

.hero-products {
  position: absolute;
  right: -3%;
  bottom: -2%;
  z-index: 2;
  width: 46%;
  height: 62%;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-product {
  position: absolute;
  bottom: 0;
  width: 45%;
  height: auto;
  mix-blend-mode: normal;
}

.hero-product--one {
  left: 0;
  z-index: 3;
  transform: rotate(-2deg);
}

.hero-product--two {
  left: 27%;
  z-index: 2;
  width: 48%;
}

.hero-product--three {
  right: -2%;
  z-index: 1;
  width: 46%;
  transform: rotate(2deg);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading--centered {
  text-align: center;
}

.section-heading h2,
.products-heading h2,
.quality-copy h2 {
  font-size: clamp(42px, 4vw, 58px);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.audience-section {
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.audience-card > img {
  width: 100%;
  aspect-ratio: 4 / 2.75;
  object-fit: cover;
}

.audience-card__icon {
  position: absolute;
  top: calc(43.5% - 31px);
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  background: var(--olive-700);
  border: 4px solid var(--warm-white);
  border-radius: 50%;
  color: #fff;
}

.audience-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card__body {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 22px 24px;
  text-align: center;
}

.audience-card h3 {
  margin: 0;
  color: var(--olive-950);
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.05;
}

.audience-card p {
  margin: 13px 0 20px;
  color: #545650;
  font-size: 14px;
}

.audience-card a {
  margin-top: auto;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 700;
}

.audience-card a:hover,
.audience-card a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  padding: 30px 24px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.trust-item {
  padding-inline: 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.products-section {
  background: #fff;
  border-top: 1px solid #efede8;
}

.products-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 40px;
  align-items: end;
  margin-bottom: 24px;
}

.products-heading > div > p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
}

.catalog-search {
  min-height: 52px;
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: var(--warm-white);
  border: 1px solid #c9c8c1;
  border-radius: 4px;
  color: var(--olive-800);
}

.catalog-search:focus-within {
  border-color: var(--olive-700);
  outline: 2px solid rgba(86, 106, 75, 0.14);
}

.catalog-search input {
  width: 100%;
  min-width: 0;
  padding: 14px 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 15px;
}

.catalog-meta {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.text-button {
  padding: 6px 0;
  background: transparent;
  border: 0;
  color: var(--terracotta);
  font-weight: 700;
}

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

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: #bfc3b7;
  box-shadow: 0 12px 28px rgba(39, 51, 38, 0.09);
}

.product-card[hidden] {
  display: none;
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 200ms ease;
}

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

.product-card__body {
  min-height: 194px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-top: 1px solid #efeee9;
}

.product-card h3 {
  margin: 0;
  color: #20211d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.product-card__size {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 13px 0 14px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.product-card__compare {
  color: #8a8b85;
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
}

.product-card form {
  margin-top: auto;
}

.product-card__button {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  background: var(--olive-700);
  border: 1px solid var(--olive-700);
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.product-card__button:hover,
.product-card__button:focus-visible {
  background: var(--olive-950);
  border-color: var(--olive-950);
}

.product-card__button:disabled {
  background: #969a90;
  border-color: #969a90;
  cursor: not-allowed;
}

.no-results {
  grid-column: 1 / -1;
  padding: 60px 20px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  text-align: center;
}

.noscript-message {
  padding: 24px;
  background: var(--warm-white);
}

.quality-section {
  overflow: hidden;
  background: var(--warm-white);
  border-top: 1px solid #ece7df;
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.quality-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.96) 0 28%, rgba(255, 255, 255, 0) 63%),
    linear-gradient(145deg, #dce4cf 0%, #f7f2ea 58%, #dec9aa 100%);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.quality-visual::before,
.quality-visual::after,
.quality-visual__botanical::before,
.quality-visual__botanical::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 120px;
  border: solid var(--olive-700);
  border-width: 0 0 2px 0;
  border-radius: 50%;
  opacity: 0.42;
}

.quality-visual::before {
  left: -54px;
  bottom: 88px;
  transform: rotate(24deg);
}

.quality-visual::after {
  right: -62px;
  top: 68px;
  transform: rotate(-26deg);
}

.quality-visual__botanical::before {
  left: 42px;
  top: 52px;
  transform: rotate(12deg);
}

.quality-visual__botanical::after {
  right: 16px;
  bottom: 38px;
  transform: rotate(-8deg);
}

.quality-bottle {
  position: absolute;
  bottom: 28px;
  width: 54%;
  height: auto;
  mix-blend-mode: multiply;
}

.quality-bottle--one {
  left: 3%;
  z-index: 2;
  transform: rotate(-5deg);
}

.quality-bottle--two {
  right: 2%;
  z-index: 1;
  transform: rotate(5deg);
}

.quality-copy {
  max-width: 690px;
}

.quality-copy > p:not(.script-kicker) {
  margin: 22px 0 0;
  color: #565851;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  color: var(--terracotta-dark);
  font-weight: 700;
}

.order-help {
  background: var(--olive-800);
  color: #fff;
}

.order-help__inner {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding-block: 42px;
}

.order-help .eyebrow {
  color: #f2b99e;
}

.order-help h2 {
  color: #fff;
  font-size: clamp(40px, 4vw, 58px);
}

.button--light {
  flex: 0 0 auto;
  background: #fff;
  color: var(--olive-950);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--cream);
}

.preview-footer {
  padding-block: 42px;
  background: #fff;
  border-top: 1px solid var(--line);
  text-align: center;
}

.preview-footer .page-width {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.preview-footer p {
  margin: 0;
  color: var(--muted);
}

.preview-footer a {
  color: var(--terracotta-dark);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .store-nav {
    grid-template-columns: 116px 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 92px;
    height: 92px;
  }

  .desktop-nav {
    gap: 20px;
    font-size: 14px;
  }

  .hero__copy {
    width: 58%;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 70px);
  }

  .hero-products {
    right: -8%;
    width: 48%;
  }

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

  .audience-card__icon {
    top: calc(46% - 31px);
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 860px) {
  .page-width {
    width: min(100% - 32px, 720px);
  }

  .section-space {
    padding-block: 58px;
  }

  .announcement {
    min-height: 32px;
    gap: 8px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .store-nav {
    min-height: 82px;
    grid-template-areas: "menu brand actions";
    grid-template-columns: 42px 1fr 42px;
  }

  .brand {
    grid-area: brand;
    justify-self: center;
    width: 72px;
    height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    grid-area: menu;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    justify-self: start;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .mobile-menu-button__bars,
  .mobile-menu-button__bars::before,
  .mobile-menu-button__bars::after {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--ink);
  }

  .mobile-menu-button__bars {
    position: relative;
  }

  .mobile-menu-button__bars::before,
  .mobile-menu-button__bars::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .mobile-menu-button__bars::before {
    top: -7px;
  }

  .mobile-menu-button__bars::after {
    top: 7px;
  }

  .nav-actions {
    grid-area: actions;
    justify-self: end;
    gap: 4px;
  }

  .nav-actions a:nth-child(-n + 2) {
    display: none;
  }

  .mobile-menu {
    display: grid;
    padding: 10px 16px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 12px;
    border-bottom: 1px solid #efeee9;
    font-weight: 600;
  }

  .hero {
    min-height: 0;
    padding-top: 320px;
  }

  .hero__background {
    height: 350px;
    object-position: 58% center;
  }

  .hero__wash {
    height: 350px;
    background: linear-gradient(0deg, var(--warm-white) 0%, rgba(251, 248, 243, 0.1) 42%, rgba(251, 248, 243, 0) 100%);
  }

  .hero__content {
    min-height: 0;
    display: block;
    padding-block: 28px 52px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(46px, 9vw, 64px);
  }

  .hero-products {
    top: -205px;
    right: -9%;
    bottom: auto;
    width: 52%;
    height: 220px;
  }

  .hero__proof {
    width: 100%;
  }

  .products-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-search {
    width: min(100%, 520px);
  }

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

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

  .quality-visual {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  .page-width {
    width: min(100% - 24px, 560px);
  }

  .announcement span:first-child,
  .announcement__divider {
    display: none;
  }

  .hero {
    padding-top: 300px;
  }

  .hero__background,
  .hero__wash {
    height: 326px;
  }

  .hero__background {
    object-position: 57% center;
  }

  .hero__content {
    padding-bottom: 44px;
  }

  .script-kicker {
    font-size: 37px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 57px);
    line-height: 0.95;
  }

  .hero__lede {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    flex: 1 1 100%;
  }

  .hero-products {
    top: -178px;
    right: -14%;
    width: 64%;
    height: 190px;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

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

  .audience-card__icon {
    top: calc(45.5% - 31px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-inline: 18px;
  }

  .trust-item {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .section-heading h2,
  .products-heading h2,
  .quality-copy h2 {
    font-size: 43px;
  }

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

  .product-card__media img {
    padding: 8px;
  }

  .product-card__body {
    min-height: 194px;
    padding: 11px;
  }

  .product-card h3 {
    font-size: 14px;
  }

  .product-card__price {
    font-size: 16px;
  }

  .quality-visual {
    min-height: 410px;
  }

  .quality-bottle {
    bottom: 12px;
    width: 59%;
  }

  .order-help__inner {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .product-card__media {
    aspect-ratio: 1.2 / 1;
  }

  .product-card__body {
    min-height: 176px;
  }
}

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