:root {
  --ink: #1a1a1a;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --line: #dedede;
  --muted: #6f6f6f;
  --accent: #cc782e;
  --accent-dark: #a65e22;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

main,
section,
header,
footer,
nav,
div,
article {
  min-width: 0;
}

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

button,
input,
select {
  font: inherit;
}

.announcement {
  background: var(--ink);
  color: var(--paper);
  display: block;
  padding: 0.95rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  box-shadow: 0 0 1px #d8d8d8;
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  justify-self: center;
  color: #282723;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 19px;
  height: 1.5px;
  display: block;
  background: currentColor;
  content: "";
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bag {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid var(--accent);
  border-top-width: 0;
  position: relative;
  font-size: 0.68rem;
}

.bag::before {
  content: "";
  width: 10px;
  height: 7px;
  position: absolute;
  top: -7px;
  left: 50%;
  border: 1.5px solid var(--accent);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel a {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  min-height: 60px;
  width: 100%;
  max-width: 326px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  background: var(--accent);
  color: var(--paper);
  cursor: pointer;
  padding: 0 2rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

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

.button.dark:hover {
  background: #000;
}

.button.light {
  background: var(--paper);
  color: var(--ink);
}

.page-width {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.split-hero,
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--soft);
}

.split-section {
  width: min(100% - 2rem, 1560px);
  margin: clamp(2rem, 5vw, 4rem) auto;
}

.split-hero.dark,
.split-section.dark {
  background: var(--ink);
  color: var(--paper);
}

.split-media {
  min-height: 360px;
  background: #ddd;
}

.split-content {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 7vw, 5.4rem) clamp(1.5rem, 6vw, 5rem);
}

.split-content.center {
  align-items: center;
  text-align: center;
}

.split-content.white {
  background: var(--paper);
  color: var(--ink);
}

.stars,
.eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stars {
  color: inherit;
}

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

h1,
h2 {
  margin-bottom: 1.15rem;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.2;
}

.text {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.dark .text,
.newsletter .text {
  color: rgba(255, 255, 255, 0.78);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.center .actions {
  justify-content: center;
}

.press-strip {
  overflow: hidden;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.press-track {
  width: max-content;
  display: flex;
  gap: 3.5rem;
  padding: 1.6rem 0;
  animation: marquee 28s linear infinite;
}

.press-track span {
  color: #111;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

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

.rich-text {
  padding: clamp(3rem, 8vw, 6.25rem) 0;
  text-align: center;
}

.rich-text h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.rich-text .text {
  margin-inline: auto;
}

.section {
  padding: clamp(3.2rem, 7vw, 6.25rem) 0;
}

.section-head {
  margin-bottom: 2.2rem;
  text-align: center;
}

.section-head h2 {
  max-width: 14ch;
  margin-inline: auto;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.product-image {
  aspect-ratio: 1 / 1.16;
  background: #ddd;
}

.product-card:hover .quick-shop,
.product-card:focus-within .quick-shop {
  opacity: 1;
  transform: translateY(0);
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--accent);
  color: var(--paper);
  padding: 0.45rem 0.7rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quick-shop {
  position: absolute;
  right: 1.4rem;
  bottom: 8.3rem;
  left: 1.4rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-info {
  background: var(--paper);
  padding: 1.35rem 0 0;
}

.product-info h3 {
  margin-bottom: 0.2rem;
}

.product-tag {
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.96rem;
  font-weight: 800;
}

.price s {
  color: var(--muted);
  font-weight: 500;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit {
  padding: 2rem 1.4rem;
  border: 1px solid var(--line);
  text-align: center;
}

.benefit svg {
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.quote {
  padding: 1.8rem;
  background: var(--soft);
}

.quote p {
  font-size: 1.1rem;
}

.quote strong {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4.5rem, 9vw, 6.25rem) 1rem;
  text-align: center;
}

.newsletter h2 {
  margin-inline: auto;
}

.newsletter form {
  width: min(100%, 520px);
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter input {
  min-height: 60px;
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 0 1rem;
  text-align: center;
}

.newsletter button[disabled] {
  cursor: wait;
  opacity: 0.6;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.85rem auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.form-feedback.success {
  color: #9fdda9;
}

.form-feedback.error {
  color: #ffb6a8;
}

.footer {
  padding: clamp(4rem, 8vw, 6.25rem) 0;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer h2,
.footer h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer a {
  display: block;
  margin: 0.55rem 0;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.order-card {
  padding: 1.5rem;
  background: var(--soft);
}

.order-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  min-height: 56px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 0.9rem;
  text-transform: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(204, 120, 46, 0.2);
}

textarea {
  min-height: 100px;
  padding: 0.9rem;
  resize: vertical;
}

[hidden] {
  display: none !important;
}

.payment-panel {
  display: none;
  margin-top: 1.2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.payment-panel.show {
  display: block;
}

.status {
  min-height: 1.2rem;
  color: var(--accent-dark);
  font-weight: 800;
}

.founder-letter {
  max-width: 760px;
  margin: 0 auto;
  color: #363636;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.85;
}

.founder-letter p {
  margin-bottom: 1.65rem;
}

.founder-letter .founder-belief {
  margin: clamp(2rem, 5vw, 3.5rem) 0;
  padding: 0 0 0 1.5rem;
  border-left: 4px solid var(--accent);
  color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.45;
}

.product-detail {
  width: min(100% - 2rem, 1420px);
  margin: clamp(2rem, 5vw, 4.5rem) auto;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.product-main-image {
  aspect-ratio: 1 / 1.08;
  min-width: 0;
  overflow: hidden;
  background: var(--soft);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  min-width: 0;
  overflow: hidden;
}

.product-thumbs img {
  aspect-ratio: 1 / 0.7;
  min-width: 0;
  height: auto;
}

.product-summary {
  padding: clamp(1rem, 3vw, 2.5rem) 0;
}

.product-summary h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  overflow-wrap: anywhere;
}

.product-price {
  margin-bottom: 1.4rem;
  font-size: 1.2rem;
  font-weight: 800;
}

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

.product-points li {
  padding: 0.9rem 0 0.9rem 1.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.product-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 1.35rem;
  left: 0.2rem;
  border-radius: 50%;
  background: var(--accent);
}

.order-assurance {
  max-width: 430px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-promise {
  width: min(100% - 2rem, 1420px);
  margin: 0 auto clamp(3rem, 7vw, 6rem);
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-promise div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-promise strong {
  font-size: 1.05rem;
}

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

.product-founder {
  width: min(100% - 2rem, 1120px);
  margin: clamp(4rem, 9vw, 8rem) auto;
}

.product-founder-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.product-founder-intro h2 {
  max-width: 15ch;
  margin-inline: auto;
}

.product-founder-intro > p:last-child {
  color: var(--muted);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.55;
}

.founder-letter-visible {
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
  border-top: 1px solid var(--ink);
}

.cart-toast {
  min-width: min(360px, calc(100% - 2rem));
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cart-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-toast span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.cart-toast a {
  margin-top: 0.4rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-page {
  width: min(100% - 2rem, 1420px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.cart-heading {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.cart-heading h1 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.cart-heading > p:last-child {
  color: var(--muted);
}

.cart-empty {
  padding: clamp(3rem, 8vw, 6rem) 1rem;
  background: var(--soft);
  text-align: center;
}

.cart-empty h2 {
  max-width: none;
}

.cart-empty .button {
  margin-top: 1rem;
}

.cart-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.cart-items {
  display: grid;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  align-items: center;
}

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

.cart-item > img {
  width: 86px;
  height: 106px;
}

.cart-item-info h3 {
  margin-bottom: 0.2rem;
}

.cart-item-info p {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quantity-control {
  width: 126px;
  height: 42px;
  display: grid;
  grid-template-columns: 42px 42px 42px;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity-control button,
.quantity-control span {
  width: 42px;
  height: 40px;
  display: grid;
  place-items: center;
}

.quantity-control button {
  border: 0;
  background: var(--paper);
  cursor: pointer;
  font-size: 1.15rem;
}

.cart-line-total {
  justify-self: end;
}

.cart-summary {
  margin-top: 1.5rem;
}

.cart-summary > div,
.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.1rem;
}

.cart-summary p {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-summary a {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-section {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--soft);
}

.checkout-head h2 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3rem);
}

.checkout-form {
  display: grid;
  gap: 2rem;
}

.checkout-form fieldset {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-form legend {
  width: 100%;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.optional {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.payment-options {
  display: grid;
  gap: 0.75rem;
}

.payment-option {
  min-height: 80px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  text-transform: none;
}

.payment-option:has(input:checked) {
  border-color: var(--accent);
  box-shadow: inset 4px 0 0 var(--accent);
}

.payment-option input {
  min-height: auto;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.payment-option-copy {
  display: grid;
  gap: 0.2rem;
}

.payment-option-copy small {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}

.payment-option-copy em {
  margin-left: 0.35rem;
  color: var(--accent-dark);
  font-size: 0.66rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payment-option.disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.checkout-total {
  padding-top: 1.2rem;
  border-top: 1px solid var(--ink);
}

.checkout-form button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.payment-confirmation {
  margin-top: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 5px solid var(--accent);
  background: var(--paper);
}

.payment-confirmation h2 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3rem);
}

.payment-confirmation .button {
  margin-top: 1.25rem;
}

.payment-details {
  margin: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.payment-details div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.payment-details dt {
  color: var(--muted);
}

.payment-details dd {
  margin: 0;
  font-weight: 800;
}

.reason-list {
  display: grid;
  gap: 1.25rem;
}

.reason-row {
  width: min(100% - 2rem, 1560px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.reason-row .split-media {
  min-height: 320px;
}

.reason-row .split-content {
  min-height: auto;
  background: var(--paper);
}

@media (min-width: 750px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    justify-self: start;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    justify-self: center;
  }

  .split-hero,
  .split-section,
  .reason-row {
    grid-template-columns: 1fr 1fr;
  }

  .split-section.reverse .split-media,
  .reason-row.reverse .split-media {
    order: 2;
  }

  .split-media {
    min-height: 620px;
  }

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

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

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

  .newsletter form {
    flex-direction: row;
  }

  .newsletter .button {
    max-width: 190px;
  }

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

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

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

  .cart-item {
    grid-template-columns: 96px minmax(150px, 1fr) 126px auto;
  }

  .cart-item > img {
    width: 96px;
    height: 118px;
  }

  .order-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

@media (min-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-detail {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .product-summary {
    position: sticky;
    top: 110px;
  }

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

  .cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  }

  .checkout-section {
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 749px) {
  .header-inner {
    width: calc(100% - 1rem);
    min-height: 68px;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    gap: 0.4rem;
  }

  .brand {
    max-width: 100%;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
    text-align: center;
  }

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

  .product-detail {
    width: calc(100% - 1rem);
    margin: 1rem auto 3rem;
    gap: 1.25rem;
  }

  .product-main-image {
    aspect-ratio: 1 / 1.05;
  }

  .product-thumbs {
    gap: 0.5rem;
  }

  .product-summary {
    padding: 0.5rem 0 0;
  }

  .product-summary h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .product-promise {
    width: calc(100% - 1rem);
  }

  .product-promise div {
    min-height: 0;
    padding: 1.15rem;
  }

  .product-founder {
    width: calc(100% - 2rem);
    margin-block: 4rem;
  }

  .product-founder-intro {
    text-align: left;
  }

  .product-founder-intro h2 {
    margin-inline: 0;
  }

  .founder-letter .founder-belief {
    padding-left: 1rem;
  }

  .split-section {
    width: calc(100% - 1rem);
  }
}

@media (max-width: 520px) {
  .header-action span:not(.bag) {
    display: none;
  }

  .split-content {
    padding-inline: 1.25rem;
  }

  .button {
    max-width: none;
  }

  .quick-shop {
    position: static;
    opacity: 1;
    transform: none;
    padding-top: 1rem;
  }

  .cart-item {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
  }

  .cart-item > img {
    width: 78px;
    height: 96px;
  }

  .quantity-control,
  .cart-line-total {
    grid-column: 2;
    justify-self: start;
  }

  .payment-details div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
