﻿@font-face {
  font-family: "Juana";
  src: url("./assets/fonts/juana-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Juana";
  src: url("./assets/fonts/juana-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Plak";
  src: url("./assets/fonts/neue-plak-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Plak";
  src: url("./assets/fonts/neue-plak-semibold.ttf") format("truetype");
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171513;
  --soft-ink: #57514a;
  --paper: #fbfaf7;
  --chalk: #f3f0eb;
  --mist: #e7e8df;
  --moss: #60745e;
  --moss-dark: #303d32;
  --camellia: #b20f2b;
  --petal: #f7dce5;
  --dew: #c8e985;
  --line: rgba(23, 21, 19, 0.13);
  --shadow: 0 18px 60px rgba(23, 21, 19, 0.12);
  --sans: "Neue Plak", Arial, sans-serif;
  --serif: "Juana", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top,
section {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

body.search-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.icon-button,
.menu-button,
.quantity-row button,
.drawer-row,
.accordions button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 86px;
  padding: 14px clamp(20px, 4vw, 58px);
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark img {
  width: clamp(148px, 16vw, 216px);
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 15px;
}

.desktop-nav a,
.nav-dropdown-trigger {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--chalk);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.menu-button,
.cart-button {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-button:hover,
.cart-button:hover,
.menu-button:hover {
  transform: translateY(-1px);
  background: var(--ink);
  color: #fff;
}

.cart-button {
  gap: 10px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

.cart-button strong {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--camellia);
  color: #fff;
  font-size: 12px;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 128px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #e9dfce;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media :is(img, video) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.94) 0%, rgba(251, 250, 247, 0.7) 40%, rgba(251, 250, 247, 0.08) 78%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: clamp(34px, 5vw, 76px) 0 clamp(34px, 5vw, 76px) clamp(20px, 5vw, 82px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 0.98;
}

h1 em,
h2 em,
h3 em {
  color: var(--camellia);
  font-family: var(--serif);
  font-style: italic;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--soft-ink);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
}

.hero-actions,
.section-heading,
.quantity-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 21, 19, 0.12);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-light {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.section {
  padding: clamp(64px, 8vw, 118px) clamp(20px, 4vw, 58px);
}

.home-main {
  --home-section-gap: clamp(34px, 4.6vw, 58px);
  background: var(--paper);
}

.home-main > section + section {
  margin-top: var(--home-section-gap);
}

.home-main > .section {
  padding-top: 0;
  padding-bottom: 0;
}

.home-main > .story-section {
  padding-top: var(--home-section-gap);
  padding-bottom: var(--home-section-gap);
}

.home-main > section:last-child {
  margin-bottom: 0;
}

.section-heading {
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading h2,
.product-panel h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
}

.section-heading a,
.section-heading > p:not(.eyebrow) {
  color: var(--soft-ink);
}

.bestsellers-heading {
  display: block;
  text-align: center;
}

#bestsellers .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-inline: auto;
}

#bestsellers .product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

#bestsellers .product-media {
  background: transparent;
}

#bestsellers .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#bestsellers .product-info p:not(.eyebrow) {
  max-width: 320px;
}

#bestsellers .product-actions {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding-top: 18px;
}

#bestsellers .product-page-link {
  min-width: 132px;
}

.product-grid,
.bundle-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0;
}

.product-media img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 300ms ease;
}

.product-media-hair-treatment img,
.product-media-hair-oil img {
  height: 100%;
  max-width: 100%;
}

.product-media-sunscreen img,
.product-media-serum img {
  height: 100%;
  max-width: 100%;
}

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

.product-media-link {
  color: inherit;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.product-info {
  padding-top: 15px;
}

.product-info h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.product-info h3 a:hover {
  color: var(--moss-dark);
}

.product-info p {
  color: var(--soft-ink);
  line-height: 1.45;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-page-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}

.collection-page-main {
  background: var(--paper);
}

.collection-hero {
  padding-top: clamp(70px, 8vw, 118px);
  padding-bottom: clamp(34px, 5vw, 70px);
  background: var(--paper);
}

.collection-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
}

.collection-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--soft-ink);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.collection-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.collection-filter-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
}

.collection-filter-nav a.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.collection-grid-section {
  padding-top: 0;
  background: var(--paper);
}

.collection-grid {
  align-items: start;
}

.collection-grid .product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.collection-grid .product-media {
  background: transparent;
  border: 1px solid var(--line);
}

.collection-grid .product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.collection-grid .product-actions {
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 16px;
}

.bundle-section {
  background: var(--paper);
}

.bundle-heading {
  display: block;
  text-align: center;
}

.bundle-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px auto 0;
}

.bundle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
  gap: 22px;
  align-items: start;
}

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

.bundle-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.bundle-card .product-media {
  border-radius: 0;
}

.bundle-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.bundle-card-body h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.bundle-card-body p {
  min-height: 44px;
  color: var(--soft-ink);
  line-height: 1.45;
}

.bundle-card button {
  margin-top: auto;
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.bundle-card.is-selected button {
  background: var(--ink);
  color: #fff;
}

.bundle-summary {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.bundle-summary h3 {
  font-size: 24px;
}

.bundle-summary p {
  color: var(--soft-ink);
}

.bundle-summary h3,
.bundle-summary p {
  margin-left: auto;
  margin-right: auto;
}

.discount-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.discount-track span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--soft-ink);
}

.discount-track .is-active {
  background: var(--dew);
  color: var(--ink);
}

.bundle-lines {
  display: grid;
  gap: 10px;
  min-height: 80px;
  justify-items: center;
}

.bundle-cart {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
  width: min(100%, 260px);
}

.bundle-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
  text-align: center;
}

.bundle-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 0;
  font-size: 20px;
}

.bundle-cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

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

.collection-tiles article {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 32px;
  color: #fff;
}

.collection-tiles img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-tiles article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.04));
}

.collection-tiles div {
  position: relative;
  z-index: 1;
}

.collection-tiles h3 {
  max-width: 360px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.03;
}

.claim-marquee {
  overflow: hidden;
  padding: 12px 0;
  background: var(--paper);
  color: transparent;
  -webkit-text-stroke: 1px rgba(96, 116, 94, 0.58);
  font-size: clamp(42px, 8vw, 96px);
  white-space: nowrap;
}

.claim-marquee-track {
  display: flex;
  width: max-content;
  animation: claimMarquee 52s linear infinite;
  will-change: transform;
}

.claim-marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(38px, 6vw, 92px);
  padding-right: clamp(38px, 6vw, 92px);
}

.claim-marquee span {
  flex: 0 0 auto;
}

@keyframes claimMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.story-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  padding: clamp(44px, 5vw, 68px) clamp(20px, 4vw, 58px);
  overflow: hidden;
  background: #fff;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./assets/images/story-ritual-background.webp");
  background-size: cover;
  background-position: center 44%;
  opacity: 0.44;
}

.story-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.9), rgba(251, 250, 247, 0.74)),
    rgba(255, 255, 255, 0.18);
}

.story-section h2 {
  max-width: 360px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.7vw, 36px);
  line-height: 1.06;
}

.story-section > p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.65;
}

.reviews-section {
  background: var(--paper);
}

.reviews-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.reviews-heading h2 {
  max-width: 780px;
}

.reviews-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.reviews-grid article {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 260px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #000;
  font-size: 15px;
  line-height: 1;
}

.reviews-grid p {
  margin: 22px 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.reviews-grid strong {
  color: var(--ink);
  font-weight: 650;
}

.reviews-grid footer {
  display: grid;
  gap: 5px;
  color: var(--soft-ink);
}

.reviews-grid footer span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.review-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #fff;
}

.product-gallery {
  min-height: 760px;
  position: sticky;
  top: 104px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--chalk);
  overflow: hidden;
}

.product-gallery img {
  width: min(70%, 460px);
  height: min(680px, 80vh);
  object-fit: contain;
}

.product-panel {
  max-width: 680px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
}

.rating-row > span:not(.aggregate-stars) {
  color: #a76b24;
}

.rating-row small {
  color: var(--soft-ink);
}

.rating-row-pending {
  margin-top: 12px;
}

.rating-row-pending small {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.58);
}

.price {
  margin-bottom: 14px;
  font-size: 30px;
}

.product-panel > p:not(.eyebrow):not(.price) {
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.6;
}

.quantity-row {
  margin: 28px 0;
}

.quantity-row button:not(.button) {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.quantity-row span {
  min-width: 26px;
  text-align: center;
}

.ingredient-bars {
  display: grid;
  gap: 14px;
  margin: 32px 0;
}

.ingredient-bar {
  display: grid;
  gap: 8px;
}

.ingredient-bar div {
  height: 8px;
  border-radius: 999px;
  background: var(--chalk);
}

.ingredient-bar div span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--product-accent, var(--moss));
}

.accordions {
  border-top: 1px solid var(--line);
}

.accordions button {
  width: 100%;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.accordions div {
  display: none;
  padding: 18px 0 22px;
  color: var(--soft-ink);
  line-height: 1.6;
}

.accordions button.is-open + div {
  display: block;
}

.product-page-main {
  background: var(--paper);
}

.product-page-hero {
  --product-accent: var(--ink);
  min-height: calc(100vh - 128px);
  padding-top: 32px;
  background: var(--paper);
}

.product-line-camellia {
  --product-accent: #8f2630;
}

.product-line-moss {
  --product-accent: var(--moss);
}

.product-line-collagen {
  --product-accent: #f37fa5;
}

.product-page-gallery {
  position: sticky;
  top: 86px;
  min-height: calc(100vh - 112px);
  align-content: center;
  place-items: stretch;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  background: transparent;
}

.product-gallery-track {
  width: 100%;
  height: clamp(420px, calc(100vh - 250px), 620px);
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-gallery-track::-webkit-scrollbar {
  display: none;
}

.product-gallery-frame {
  position: relative;
  min-width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  scroll-snap-align: start;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.86);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(23, 21, 19, 0.1);
}

.product-gallery-arrow:hover,
.product-gallery-arrow:focus-visible {
  background: var(--ink);
  color: #fff;
}

.product-gallery-arrow:disabled {
  cursor: default;
  opacity: 0.36;
  transform: translateY(-50%);
  box-shadow: none;
}

.product-gallery-prev {
  left: clamp(34px, 5vw, 62px);
}

.product-gallery-next {
  right: clamp(34px, 5vw, 62px);
}

.product-main-shot {
  width: 100%;
}

.product-page-gallery .product-gallery-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.product-page-gallery .product-main-shot img {
  max-width: 82%;
  max-height: 100%;
}

.product-gallery-previews {
  width: 100%;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 4px;
  scrollbar-width: none;
}

.product-gallery-previews::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1041px) {
  .product-page-gallery .product-gallery-previews {
    justify-content: center;
  }
}

.product-gallery-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.product-gallery-thumb.is-active {
  border-color: transparent;
}

.product-gallery-thumb img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.product-page-panel {
  max-width: 720px;
  min-height: calc(100vh - 148px);
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.product-page-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
}

.product-page-panel > .eyebrow {
  color: var(--product-accent);
}

.product-page-panel > .eyebrow,
.product-page-title,
.product-page-panel .price,
.product-page-description {
  text-align: center;
}

.product-page-panel .price {
  margin: clamp(18px, 2.2vw, 26px) 0;
}

.product-page-subtitle,
.product-page-description {
  margin-top: 18px;
}

.product-page-description {
  display: grid;
  gap: 14px;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.62;
}

.product-page-description p {
  margin: 0;
}

.product-full-story {
  background: var(--paper);
  padding-top: clamp(38px, 5vw, 72px);
  padding-bottom: clamp(38px, 5vw, 72px);
}

.product-story-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.product-story-layout h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.product-story-body {
  display: grid;
  gap: 18px;
  color: var(--soft-ink);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.product-story-body p {
  margin: 0;
}

.product-asset-section {
  background: var(--paper);
  padding-top: clamp(28px, 4vw, 54px);
}

.product-asset-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.product-asset-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  background: transparent;
}

.product-asset-grid .product-asset-contain {
  object-fit: contain;
  padding: 22px;
}

.product-meta-list,
.product-benefit-grid {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

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

.product-meta-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--soft-ink);
  font-size: 13px;
  text-align: center;
}

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

.product-benefit-grid article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-benefit-grid strong {
  display: block;
  margin-bottom: 8px;
}

.product-benefit-grid p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
}

.product-page-form .quantity-row {
  display: grid;
  grid-template-columns: 44px 36px 44px minmax(190px, 1fr);
  align-items: center;
  gap: 10px;
  margin: 0;
}

.product-page-form .button {
  width: 100%;
}

.product-page-form .amazon-product-button {
  width: min(100%, 320px);
}

.product-page-form {
  display: grid;
  justify-items: center;
  margin: 0 0 clamp(22px, 4vw, 34px);
  padding-top: 0;
}

.product-page-form .button-dark {
  border-color: var(--product-accent);
  background: var(--product-accent);
  color: #fff;
}

.product-line-collagen .product-page-form .button-dark {
  color: var(--ink);
}

.product-page-form .quantity-row button:not(.button) {
  border-color: var(--product-accent);
  border-color: color-mix(in srgb, var(--product-accent) 46%, transparent);
  color: var(--product-accent);
}

.product-disclosures {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.product-disclosures details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.product-disclosures summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

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

.product-disclosures summary::after {
  content: "+";
  color: var(--soft-ink);
}

.product-disclosures details[open] > summary::after {
  content: "-";
}

.product-disclosures > details:last-child[open] {
  padding-bottom: 0;
}

.product-disclosures p {
  margin: 14px 0 0;
  color: var(--soft-ink);
  line-height: 1.6;
}

.mockup-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--chalk);
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
}

.product-recommendations {
  background: var(--paper);
}

.product-recommendations .section-heading {
  display: block;
  text-align: center;
}

.product-recommendations .product-grid {
  grid-template-columns: minmax(0, 340px);
  justify-content: center;
}

.product-card-mini .product-media {
  aspect-ratio: 0.72;
  background: transparent;
}

.product-card-mini .product-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto;
  display: block;
  object-fit: contain;
}

.product-card-mini .product-media-hair-treatment img,
.product-card-mini .product-media-hair-oil img {
  max-height: 100%;
  max-width: 100%;
}

.product-card-mini .product-media-sunscreen img,
.product-card-mini .product-media-serum img {
  max-height: 100%;
  max-width: 100%;
}

.product-card-mini .product-info {
  padding-top: 12px;
}

.product-card-mini .product-info p:not(.eyebrow) {
  font-size: 15px;
}

.faq-list {
  margin: 14px 0 0;
  display: grid;
  border-top: 1px solid var(--line);
}

.product-disclosures .faq-list .faq-item {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.product-disclosures .faq-list .faq-item:last-child {
  border-bottom: 0;
}

.product-disclosures .faq-list .faq-item summary {
  min-height: 0;
  padding: 15px 0;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.4;
}

.product-disclosures .faq-list .faq-item p {
  margin: 0 0 16px;
  padding-right: 24px;
}

.product-reviews {
  background: var(--paper);
}

.product-reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(22px, 5vw, 64px);
}

.product-review-summary {
  min-width: 168px;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--soft-ink);
  text-align: center;
}

.product-review-summary strong {
  color: var(--ink);
  font-size: 22px;
}

.aggregate-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 1em;
  color: transparent;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.rating-star {
  position: relative;
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  display: block;
  overflow: hidden;
}

.rating-star::before {
  content: "\2605";
  display: block;
  visibility: hidden;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.rating-star-fill {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  height: 1em;
  overflow: hidden;
  color: #000;
  line-height: 1;
  white-space: nowrap;
}

.rating-row small span {
  color: inherit;
}

.product-review-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-review-card {
  min-height: 390px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.72);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-size: 14px;
}

.aggregate-stars.review-card-stars {
  font-size: 14px;
}

.review-card-date {
  color: var(--soft-ink);
  font-size: 12px;
  white-space: nowrap;
}

.review-card-content {
  display: grid;
  align-content: start;
  gap: 14px;
  flex: 1;
}

.review-card-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.16;
}

.product-review-card .review-copy {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.review-copy.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.review-expand {
  width: fit-content;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}

.product-review-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  color: var(--soft-ink);
}

.product-review-source {
  font-size: 12px;
  line-height: 1.35;
}

.product-review-card footer a {
  flex: 0 0 auto;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
}

.product-review-controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.product-review-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
}

.product-review-controls button:disabled {
  cursor: default;
  opacity: 0.28;
}

.product-review-count {
  min-width: 76px;
  color: var(--soft-ink);
  font-size: 13px;
  text-align: center;
}

.site-footer {
  padding: 0 clamp(28px, 7vw, 120px);
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 0;
}

.footer-bottom,
.footer-nav a {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  padding: 42px 0 34px;
}

.footer-nav div {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-nav h2 {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.footer-social-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-social-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.footer-wordmark {
  width: 138px;
  height: 38px;
  display: block;
  overflow: hidden;
}

.footer-wordmark img {
  width: 138px;
  max-width: none;
  filter: invert(1);
  clip-path: polygon(0 0, 100% 0, 100% 62%, 54% 62%, 54% 82%, 0 82%);
  transform: translateY(-5px);
}

.static-main {
  min-height: 70vh;
  background: var(--paper);
}

.static-hero {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 7vw, 112px) clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.static-hero .eyebrow {
  margin-bottom: 14px;
}

.static-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.98;
}

.static-hero > p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--soft-ink);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.static-content {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) 0 clamp(72px, 10vw, 120px);
}

.static-content h2 {
  margin: 40px 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.2;
}

.static-content h2:first-child {
  margin-top: 0;
}

.static-content p {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.75;
}

.static-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-placeholder {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--chalk);
}

.policy-date {
  margin-top: 42px !important;
  font-size: 14px !important;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.not-found-actions .button {
  min-width: 180px;
  text-decoration: none;
}

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

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: rgba(23, 21, 19, 0);
  transition: background 180ms ease;
}

.mobile-drawer.is-open {
  pointer-events: auto;
  background: rgba(23, 21, 19, 0.46);
}

.store-search {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: start center;
  padding: clamp(88px, 10vw, 132px) clamp(16px, 4vw, 58px) 24px;
  pointer-events: none;
  background: rgba(23, 21, 19, 0);
  transition: background 180ms ease;
}

.store-search.is-open {
  pointer-events: auto;
  background: rgba(23, 21, 19, 0.42);
}

.store-search-dialog {
  width: min(720px, 100%);
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.store-search.is-open .store-search-dialog {
  transform: translateY(0);
  opacity: 1;
}

.store-search-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.store-search-head h2 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.store-search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.store-search-input:focus {
  outline: 2px solid color-mix(in srgb, var(--moss) 44%, transparent);
  outline-offset: 3px;
}

.store-search-results {
  display: grid;
  gap: 10px;
}

.store-search-result {
  display: grid;
  gap: 5px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease;
}

.store-search-result:hover,
.store-search-result:focus-visible {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.store-search-result span {
  color: var(--moss);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.store-search-result strong {
  font-size: 18px;
}

.store-search-result small,
.store-search-empty {
  color: var(--soft-ink);
  line-height: 1.45;
}

.drawer-panel {
  width: min(360px, 92vw);
  min-height: 100%;
  padding: 18px 18px 28px;
  transform: translateX(-102%);
  background: #fff;
  transition: transform 220ms ease;
}

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

.drawer-top,
.drawer-row,
.drawer-link,
.drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
}

.drawer-row,
.drawer-link {
  width: 100%;
  padding: 0;
  font-size: 20px;
  text-align: left;
}

.drawer-subnav {
  display: none;
  padding: 8px 0 16px 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-subnav.is-open {
  display: grid;
  gap: 14px;
}

.drawer-footer {
  margin-top: 70px;
  color: var(--soft-ink);
  font-size: 14px;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .header-actions {
    justify-self: end;
  }

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

  .reviews-grid article {
    flex-basis: calc((100% - 18px) / 2);
  }

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

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

  .bundle-layout,
  .story-section,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .bundle-summary,
  .product-gallery {
    position: static;
  }

  .collection-tiles {
    grid-template-columns: 1fr;
  }

  .collection-tiles article {
    min-height: 420px;
  }

  .product-page-hero {
    min-height: auto;
  }

  .product-page-gallery {
    max-height: none;
    min-height: auto;
    overflow: hidden;
  }

  .product-gallery-track {
    height: 520px;
  }

  .product-gallery-frame {
    min-height: 100%;
  }

  .product-page-panel {
    min-height: auto;
  }

  .product-story-layout,
  .product-asset-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
    padding: 12px 16px;
  }

  .brand-mark img {
    width: 132px;
  }

  .cart-button span {
    display: inline;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100vh - 116px);
    align-items: center;
  }

  .hero-media :is(img, video) {
    object-position: 61% center;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(251, 250, 247, 0.92) 0%, rgba(251, 250, 247, 0.58) 42%, rgba(251, 250, 247, 0.05) 100%);
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 28px auto;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-reviews-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .product-reviews-header > div:first-child {
    display: grid;
    justify-items: center;
  }

  .product-review-summary {
    justify-items: center;
    text-align: center;
  }

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

  .product-review-card {
    min-height: 0;
  }

  .product-review-card footer {
    align-items: center;
  }

  .button {
    padding: 0 16px;
  }

  .section {
    padding: 58px 16px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .product-panel h2 {
    font-size: 38px;
  }

  .product-grid,
  .bundle-products,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .review-controls {
    justify-content: center;
  }

  .reviews-grid article {
    flex-basis: min(88vw, 360px);
  }

  #bestsellers .product-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

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

  .product-media {
    aspect-ratio: 0.72;
  }

  .product-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-actions {
    justify-content: flex-start;
  }

  .bundle-summary {
    padding: 20px;
    text-align: center;
  }

  .bundle-summary h3,
  .bundle-summary p {
    margin-left: auto;
    margin-right: auto;
  }

  .bundle-lines {
    justify-items: center;
  }

  .bundle-line {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .bundle-cart {
    justify-self: center;
    width: min(100%, 260px);
  }

  .story-section {
    text-align: center;
  }

  .story-section > div,
  .story-section > p {
    margin-left: auto;
    margin-right: auto;
  }

  .product-gallery {
    min-height: auto;
  }

  .product-gallery img {
    height: 390px;
  }

  .product-page-title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .product-page-panel {
    align-items: center;
    text-align: center;
  }

  .product-page-panel > .eyebrow,
  .product-page-title,
  .product-page-description,
  .product-page-panel .price {
    text-align: center;
  }

  .product-page-panel .rating-row {
    justify-content: center;
    text-align: center;
  }

  .product-page-form {
    width: 100%;
    display: grid;
    justify-items: center;
  }

  .product-page-form .quantity-row {
    width: min(100%, 280px);
    justify-content: center;
    justify-items: center;
  }

  .ingredient-bars,
  .product-disclosures {
    width: 100%;
    align-self: stretch;
    text-align: left;
  }

  .product-page-gallery {
    min-height: auto;
    padding: 20px;
  }

  .product-gallery-track {
    height: 360px;
  }

  .product-page-gallery .product-gallery-frame img {
    max-height: 330px;
  }

  .product-page-gallery .product-main-shot img {
    max-width: 86%;
    max-height: 300px;
  }

  .product-gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .product-gallery-prev {
    left: 28px;
  }

  .product-gallery-next {
    right: 28px;
  }

  .product-meta-list,
  .product-benefit-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-thumb {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
  }

  .product-full-story,
  .product-asset-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-asset-grid img {
    min-height: 260px;
  }

  .product-page-form .quantity-row {
    grid-template-columns: 44px 36px 44px;
  }

  .product-page-form .button {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 190px);
  }

  .site-footer {
    padding: 0 20px;
  }

  .footer-inner {
    padding: 0;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0 28px;
  }

  .footer-social-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 18px;
    min-height: 62px;
    padding: 14px 0 16px;
  }

  .footer-bottom > span {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-self: end;
    line-height: 1;
    white-space: nowrap;
  }

  .footer-wordmark,
  .footer-wordmark img {
    width: 122px;
  }

  .footer-wordmark {
    justify-self: start;
  }
}
