:root {
  --ink: #173b3a;
  --ink-soft: #476a66;
  --paper: #fbfaf6;
  --cream: #f3efe5;
  --sage: #dce7de;
  --sage-deep: #a8c1b5;
  --coral: #bd4b33;
  --coral-dark: #a63f2b;
  --white: #ffffff;
  --line: rgba(23, 59, 58, 0.15);
  --shadow: 0 22px 70px rgba(20, 54, 52, 0.12);
  --shadow-small: 0 12px 36px rgba(20, 54, 52, 0.09);
  --radius: 26px;
  --radius-small: 16px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.cart-open,
body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.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;
}

:focus-visible {
  outline: 3px solid rgba(229, 111, 81, 0.6);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
}

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

.announcement {
  background: var(--ink);
  color: #eef5f1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 9px 20px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(23, 59, 58, 0.08);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: block;
  width: 225px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.site-nav a {
  position: relative;
  color: #274e4b;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.icon-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cart-button {
  padding: 0 15px;
  font-size: 0.88rem;
  font-weight: 800;
}

.cart-count {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
}

.menu-button {
  display: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-compact {
  padding: 68px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 6.8vw, 6.6rem);
}

h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
}

h3 {
  line-height: 1.25;
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(23, 59, 58, 0.2);
}

.button-primary {
  background: var(--coral);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(780px, calc(100vh - 112px));
  display: grid;
  align-items: stretch;
  background: linear-gradient(90deg, #f7f3e9 0%, #f7f3e9 44%, #e9e9df 44%, #dfe5dc 100%);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 245, 236, 0.98) 0%, rgba(248, 245, 236, 0.94) 34%, rgba(248, 245, 236, 0.25) 57%, rgba(248, 245, 236, 0) 78%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 110px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(610px, 52%);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  color: var(--coral);
}

.hero .lede {
  width: min(540px, 100%);
  margin-bottom: 30px;
}

.microcopy {
  margin: 16px 0 0;
  color: #5a716e;
  font-size: 0.82rem;
}

.trust-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 116px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sage);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
}

.trust-item strong {
  display: block;
  font-size: 0.94rem;
}

.trust-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 59, 58, 0.03);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.product-art {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 32px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.86), transparent 29%),
    var(--product-accent);
}

.product-image-wrap {
  padding: 0;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.product-image-wrap::before,
.product-image-wrap::after {
  display: none;
}

.product-art::before,
.product-art::after {
  position: absolute;
  border: 1px solid rgba(23, 59, 58, 0.12);
  border-radius: 999px;
  content: "";
}

.product-art::before {
  top: 24px;
  right: -44px;
  width: 150px;
  height: 150px;
}

.product-art::after {
  bottom: -60px;
  left: -30px;
  width: 180px;
  height: 180px;
}

.packshot {
  position: relative;
  width: 178px;
  min-height: 226px;
  border-radius: 12px 12px 16px 16px;
  padding: 23px 20px 20px;
  background: linear-gradient(155deg, color-mix(in srgb, var(--product-color), white 7%), var(--product-color));
  color: white;
  box-shadow: 0 24px 46px color-mix(in srgb, var(--product-color), transparent 67%);
  transform: rotate(-2.5deg);
}

.packshot::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  border-radius: 12px 12px 0 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0 2px, transparent 2px 5px);
  content: "";
  opacity: 0.7;
}

.packshot-brand {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 13px;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.packshot-name {
  margin-top: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.packshot-compound {
  margin-top: 9px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.packshot-foot {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-body {
  padding: 25px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title {
  margin-bottom: 5px;
  font-size: 1.34rem;
}

.product-compound {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 750;
}

.product-description {
  min-height: 52px;
  margin-bottom: 20px;
  color: #55716e;
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-meta,
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta {
  margin-bottom: 18px;
}

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

.estimate {
  color: #5d7470;
  font-size: 0.7rem;
}

.text-link {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(229, 111, 81, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.feature-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 36px;
  padding: 48px;
  background: var(--ink);
  color: white;
}

.feature-panel::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.strip-demo {
  position: relative;
  width: min(340px, 80%);
  height: 155px;
  margin: 68px auto 50px;
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.3)),
    #e7e2d5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  transform: rotate(-8deg);
}

.strip-demo::after {
  position: absolute;
  top: 29px;
  right: -60px;
  width: 175px;
  height: 72px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  content: "";
  transform: rotate(14deg);
}

.panel-note {
  position: absolute;
  right: 48px;
  bottom: 42px;
  left: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.panel-note div {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 13px;
  font-size: 0.75rem;
}

.step-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 20px;
  background: var(--white);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--sage);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

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

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

.faq-item summary {
  position: relative;
  padding: 25px 44px 25px 0;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 850;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 21px;
  right: 5px;
  content: "+";
  font-size: 1.55rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 45px 25px 0;
  color: var(--ink-soft);
}

.cta-panel {
  overflow: hidden;
  border-radius: 38px;
  padding: 70px;
  background: var(--sage);
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
  align-items: end;
}

.cta-panel h2 {
  margin-bottom: 16px;
}

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

.page-hero {
  border-bottom: 1px solid var(--line);
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 80% 10%, rgba(220, 231, 222, 0.88), transparent 25%),
    var(--cream);
}

.page-hero h1 {
  max-width: 960px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.page-hero .lede {
  max-width: 750px;
  margin-bottom: 0;
}

.breadcrumbs {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filter-bar {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.product-page {
  padding: 70px 0 100px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 74px;
  align-items: start;
}

.product-gallery .product-art {
  min-height: 610px;
  border-radius: 34px;
}

.product-gallery .product-image {
  min-height: 610px;
  object-fit: cover;
}

.product-gallery .packshot {
  width: 250px;
  min-height: 328px;
  padding: 34px 28px;
}

.product-gallery .packshot-name {
  margin-top: 40px;
  font-size: 2.45rem;
}

.product-gallery .packshot-compound {
  font-size: 0.84rem;
}

.product-info {
  position: sticky;
  top: 120px;
}

.product-info h1 {
  margin-bottom: 9px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.product-info .compound-heading {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 1.18rem;
  font-weight: 800;
}

.product-info .price {
  margin: 24px 0 4px;
  font-size: 1.7rem;
}

.facts {
  margin: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.88rem;
}

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

.fact span:first-child {
  color: var(--ink-soft);
}

.fact strong {
  text-align: right;
}

.quantity-row {
  margin: 22px 0;
  display: flex;
  gap: 12px;
}

.quantity-input {
  width: 80px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0 16px;
  text-align: center;
  font-weight: 800;
}

.quantity-row .button {
  flex: 1;
}

.disclaimer-card {
  margin-top: 22px;
  border-left: 3px solid var(--coral);
  padding: 16px 18px;
  background: rgba(229, 111, 81, 0.07);
  color: #536b68;
  font-size: 0.78rem;
}

.purchase-signals {
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 750;
}

.purchase-signals li::before {
  margin-right: 6px;
  color: #39715f;
  content: "✓";
  font-weight: 900;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: white;
}

.content-card .number {
  width: 43px;
  height: 43px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--sage);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.content-card h3 {
  margin-bottom: 10px;
}

.content-card p {
  margin: 0;
  color: var(--ink-soft);
}

.article {
  padding: 82px 0 100px;
}

.article h2 {
  margin: 56px 0 18px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.article h3 {
  margin: 34px 0 10px;
}

.article p,
.article li {
  color: #42605d;
}

.article a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article ul {
  padding-left: 22px;
}

.legal-notice {
  margin: 32px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: white;
}

.quality-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef3ed;
}

.source-note {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  background: #f5f2e9;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px 20px 54px;
  background: white;
  color: var(--ink-soft);
}

.check-list p::before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.avoid-list p::before {
  background: #f2d9d2;
  color: #923e2b;
  content: "×";
}

.site-footer {
  background: #102e2d;
  color: #e8f0ed;
}

.footer-main {
  padding: 68px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 40px;
}

.footer-brand {
  width: 225px;
  filter: brightness(0) invert(1);
}

.footer-copy {
  max-width: 390px;
  margin-top: 20px;
  color: #b8cbc6;
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 17px;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #c6d6d2;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: white;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  color: #afc4bf;
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer-bottom {
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9db3ae;
  font-size: 0.76rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(10, 31, 30, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.cart-drawer {
  position: fixed;
  z-index: 199;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(10, 31, 30, 0.2);
  transform: translateX(105%);
  transition: transform 250ms ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

body.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

.cart-header {
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  margin: 0;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.cart-items {
  overflow-y: auto;
  padding: 10px 24px;
}

.cart-empty {
  padding: 70px 20px;
  text-align: center;
  color: var(--ink-soft);
}

.cart-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 14px;
  align-items: center;
}

.cart-thumb {
  width: 64px;
  height: 72px;
  border-radius: 12px;
  background: var(--product-accent);
  display: grid;
  place-items: center;
  color: var(--product-color);
  font-size: 1.3rem;
  font-weight: 900;
}

.cart-item h3 {
  margin: 0 0 3px;
  font-size: 0.9rem;
}

.cart-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.cart-quantity {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
}

.cart-price {
  font-size: 0.86rem;
  font-weight: 850;
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 22px 24px 25px;
  background: white;
}

.cart-total {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  font-weight: 900;
}

.cart-footer .button {
  width: 100%;
}

.checkout-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #8c4637;
  font-size: 0.75rem;
}

.toast {
  position: fixed;
  z-index: 250;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  border-radius: 14px;
  padding: 14px 18px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  transform: translateY(160%);
  transition: transform 220ms ease;
}

.toast.show {
  transform: translateY(0);
}

.success-card {
  margin: 90px auto;
  max-width: 680px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 55px;
  background: white;
  text-align: center;
  box-shadow: var(--shadow-small);
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--sage);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 900;
}

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

  .brand {
    width: 190px;
  }

  .site-nav {
    gap: 18px;
  }

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

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

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .split,
  .product-layout {
    gap: 42px;
  }

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

  .footer-main > :last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 28px, var(--max));
    height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 184px;
  }

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

  .site-nav {
    position: fixed;
    z-index: 95;
    top: 102px;
    right: 14px;
    left: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    background: var(--paper);
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    min-height: 760px;
    background: var(--cream);
  }

  .hero-media img {
    object-position: 69% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(248, 245, 236, 0.98) 0%, rgba(248, 245, 236, 0.9) 50%, rgba(248, 245, 236, 0.25) 100%);
  }

  .hero-inner {
    padding: 85px 0;
    align-items: flex-end;
  }

  .hero-copy {
    width: 75%;
  }

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

  .product-info {
    position: static;
  }

  .product-gallery .product-art {
    min-height: 520px;
  }

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

  .cta-panel {
    padding: 48px;
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-self: start;
  }

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

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }

  .footer-main > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .announcement {
    padding: 8px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .container,
  .narrow,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .section-compact {
    padding: 52px 0;
  }

  .cart-button > span:not(.cart-count) {
    display: none;
  }

  .cart-button {
    width: 44px;
    padding: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 73% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(248, 245, 236, 0.96) 0%, rgba(248, 245, 236, 0.87) 61%, rgba(248, 245, 236, 0.35) 100%);
  }

  .hero-inner {
    padding: 70px 0 52px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .button-row .button {
    width: 100%;
  }

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

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .product-art {
    min-height: 290px;
  }

  .feature-panel {
    min-height: 500px;
    padding: 32px 24px;
  }

  .panel-note {
    right: 24px;
    bottom: 28px;
    left: 24px;
    grid-template-columns: 1fr;
  }

  .panel-note div {
    padding-top: 8px;
  }

  .page-hero {
    padding: 65px 0 52px;
  }

  .product-page {
    padding-top: 36px;
  }

  .product-gallery .product-art {
    min-height: 430px;
  }

  .product-gallery .packshot {
    width: 205px;
    min-height: 275px;
  }

  .quantity-row {
    display: grid;
    grid-template-columns: 85px 1fr;
  }

  .cta-panel {
    padding: 38px 24px;
  }

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

  .footer-main > :first-child,
  .footer-main > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .success-card {
    margin: 55px 14px;
    padding: 38px 24px;
  }
}

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