:root {
  --ink: #17202a;
  --navy: #10253f;
  --blue: #1f6a95;
  --baby-blue: #80bbec;
  --baby-blue-light: #b7def9;
  --baby-blue-soft: #9bccf2;
  --baby-blue-deep: #5ea1e2;
  --sky: var(--baby-blue-light);
  --cream: var(--baby-blue);
  --paper: rgba(183, 222, 249, 0.76);
  --panel: rgba(183, 222, 249, 0.58);
  --panel-strong: rgba(128, 187, 236, 0.78);
  --sand: var(--baby-blue-soft);
  --red: #b73a2e;
  --sage: #75896d;
  --line: rgba(16, 37, 63, 0.2);
  --shadow: 0 18px 50px rgba(16, 37, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-checking-out {
  cursor: progress;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--navy);
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(128, 187, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  color: rgba(23, 32, 42, 0.82);
  font-size: 0.95rem;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a {
  flex: 0 0 auto;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  font-weight: 850;
}

.main-nav a:hover,
.site-footer a:hover,
.product-title-link:hover,
.details-link:hover,
.back-link:hover {
  color: var(--red);
}

.main-nav a:hover {
  border-bottom-color: var(--red);
}

.header-cart {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
}

.header-cart span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 0;
  height: auto;
  max-height: none;
  overflow: hidden;
  color: var(--navy);
  background: var(--baby-blue);
}

.hero-media,
.hero-shade {
  display: block;
}

.hero-media {
  position: relative;
  background: var(--baby-blue);
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: min(74svh, 720px);
  object-fit: contain;
  object-position: center;
}

.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.4rem 1.25rem;
  align-items: end;
  width: min(1180px, calc(100% - 2.5rem));
  padding: 1.35rem 0 2.25rem;
  margin: 0 auto;
  color: var(--navy);
  text-shadow: none;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--navy);
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: none;
  margin-bottom: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 700;
}

h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-size: 1.22rem;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.18rem;
  font-weight: 750;
}

.hero-actions {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0;
}

.button,
.product-buy button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.product-buy button:hover {
  transform: translateY(-1px);
}

.button-primary,
.product-buy button {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(183, 58, 46, 0.24);
}

.button-light {
  color: var(--navy);
  border-color: rgba(16, 37, 63, 0.38);
  background: rgba(183, 222, 249, 0.42);
}

.hero-proof {
  grid-column: 1;
  max-width: 530px;
  margin: 0.2rem 0 0;
  color: rgba(16, 37, 63, 0.82);
  font-weight: 700;
}

.step-band,
.shop-section,
.why-section,
.checkout-section {
  padding: 5.5rem max(1.25rem, calc((100vw - 1180px) / 2));
}

.step-band {
  padding-top: 2.75rem;
  background: var(--cream);
}

.section-kicker,
.shop-heading,
.checkout-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.25rem;
}

.shop-heading p,
.checkout-heading p {
  margin-bottom: 0;
  color: rgba(23, 32, 42, 0.74);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps article {
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--line);
}

.steps article + article {
  padding-left: 2rem;
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: block;
  margin-bottom: 1rem;
  color: var(--red);
  font-weight: 900;
}

.steps p,
.why-grid p,
.product-body p,
.split-copy p,
.occasion-section p,
.site-footer p {
  color: rgba(23, 32, 42, 0.74);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 5.5rem max(1.25rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--baby-blue-light) 0%, var(--baby-blue) 100%);
}

.split-copy p {
  font-size: 1.1rem;
}

.proof-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.proof-list div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.proof-list dt {
  color: var(--navy);
  font-weight: 900;
}

.proof-list dd {
  margin: 0.25rem 0 0;
  color: rgba(23, 32, 42, 0.74);
}

.image-panel {
  margin: 0;
}

.image-panel img,
.occasion-section figure img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel figcaption {
  margin-top: 0.8rem;
  color: rgba(16, 37, 63, 0.78);
  font-weight: 800;
}

.shop-section {
  background: var(--baby-blue);
}

.featured-products,
.product-grid {
  display: grid;
  gap: 1rem;
}

.featured-products {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1rem;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(16, 37, 63, 0.08);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card.is-featured {
  background: linear-gradient(180deg, rgba(183, 222, 249, 0.82), rgba(128, 187, 236, 0.84));
}

.product-card:hover,
.sample-callout[data-product-card]:hover {
  border-color: rgba(16, 37, 63, 0.38);
  box-shadow: 0 16px 34px rgba(16, 37, 63, 0.14);
  transform: translateY(-2px);
}

.product-media {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--baby-blue-light), var(--baby-blue-soft) 62%, var(--baby-blue-deep));
}

.product-media img {
  width: 100%;
  height: 245px;
  object-fit: contain;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.product-body .product-tag {
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(16, 37, 63, 0.28);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(183, 222, 249, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(16, 37, 63, 0.08);
}

.product-body p:not(.product-tag) {
  margin-bottom: 1rem;
}

.adds {
  color: var(--sage);
  font-weight: 800;
}

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

.product-buy strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.product-buy button {
  min-width: 8.1rem;
  min-height: 2.7rem;
  padding: 0.75rem 0.9rem;
}

.product-title-link,
.details-link,
.back-link {
  text-decoration: none;
}

.details-link,
.back-link {
  width: fit-content;
  color: var(--navy);
  font-weight: 900;
}

.details-link {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  border: 1px solid rgba(16, 37, 63, 0.42);
  border-radius: 6px;
  padding: 0.62rem 0.85rem;
  background: rgba(183, 222, 249, 0.72);
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.details-link:hover {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.sample-callout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sample-callout img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--baby-blue-light);
}

.sample-callout h3 {
  margin-bottom: 0.45rem;
}

.sample-callout p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(23, 32, 42, 0.74);
}

.sample-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.sample-price strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.sample-price span {
  color: var(--sage);
  font-weight: 800;
}

.product-detail-shell {
  padding: 4rem max(1.25rem, calc((100vw - 1180px) / 2)) 5.5rem;
  background: var(--baby-blue);
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.product-detail-media {
  display: grid;
  min-height: 430px;
  margin: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--baby-blue-light), var(--baby-blue-soft) 62%, var(--baby-blue-deep));
  box-shadow: var(--shadow);
}

.product-detail-media img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  padding: 1.1rem;
}

.product-detail-copy .product-tag {
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(16, 37, 63, 0.28);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(183, 222, 249, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-detail-lede {
  max-width: 620px;
  color: rgba(23, 32, 42, 0.78);
  font-size: 1.18rem;
  font-weight: 750;
}

.product-outcome {
  max-width: 620px;
  color: rgba(16, 37, 63, 0.78);
  font-weight: 800;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(360px, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(16, 37, 63, 0.08);
}

.directions-panel {
  grid-row: span 3;
}

.detail-panel h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.detail-panel ul,
.detail-panel ol {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(23, 32, 42, 0.76);
}

.detail-panel li::marker {
  color: var(--red);
  font-weight: 900;
}

.video-placeholder {
  display: grid;
  min-height: 190px;
  place-items: center;
  border: 1px dashed rgba(16, 37, 63, 0.32);
  border-radius: 8px;
  background: rgba(183, 222, 249, 0.44);
  text-align: center;
}

.video-placeholder span {
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 0.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(183, 58, 46, 0.24);
}

.video-placeholder span::before {
  width: 0;
  height: 0;
  margin-left: 0.28rem;
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1.05rem solid #fff;
  content: "";
}

.video-placeholder p {
  max-width: 220px;
  margin: 0;
  color: rgba(16, 37, 63, 0.72);
  font-weight: 850;
}

.more-mixes {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.more-mix-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.more-mix-links a {
  display: grid;
  gap: 0.65rem;
  min-height: 100%;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.more-mix-links img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--baby-blue-light);
}

.why-section {
  color: var(--navy);
  background: linear-gradient(180deg, var(--baby-blue-deep), var(--baby-blue));
}

.why-section .eyebrow,
.why-section h2,
.why-section h3 {
  color: var(--navy);
}

.why-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.why-intro p {
  color: rgba(16, 37, 63, 0.78);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(16, 37, 63, 0.18);
}

.why-grid article {
  min-height: 210px;
  padding: 1.5rem;
  background: rgba(183, 222, 249, 0.62);
}

.why-grid p {
  color: rgba(16, 37, 63, 0.78);
}

.occasion-section {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 3rem;
  align-items: center;
  padding: 5.5rem max(1.25rem, calc((100vw - 1180px) / 2));
  background: var(--baby-blue);
}

.occasion-section figure {
  margin: 0;
}

.occasion-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.occasion-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: rgba(23, 32, 42, 0.78);
  font-weight: 750;
}

.checkout-section {
  background: var(--cream);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.cart-box,
.checkout-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(16, 37, 63, 0.08);
}

.cart-box {
  padding: 1.25rem;
}

.cart-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-topline h3 {
  margin: 0;
}

.text-button {
  border: 0;
  color: var(--red);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.cart-empty {
  margin: 0;
  padding: 1.3rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: rgba(23, 32, 42, 0.7);
}

.cart-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.cart-line:last-child {
  border-bottom: 0;
}

.cart-line span {
  display: block;
  color: rgba(23, 32, 42, 0.65);
  font-size: 0.9rem;
}

.cart-line em {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
}

.quantity-control {
  display: grid;
  grid-template-columns: 2.2rem 2.2rem 2.2rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quantity-control button {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: var(--baby-blue-light);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.quantity-control strong {
  text-align: center;
}

.checkout-form {
  padding: 1.25rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 850;
}

input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: rgba(183, 222, 249, 0.7);
}

input:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 106, 149, 0.34);
  outline-offset: 2px;
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.shipping-grid label:nth-child(3) {
  grid-column: span 2;
}

.form-help,
.shipping-zone,
.checkout-message {
  margin: 0.85rem 0 0;
  color: rgba(23, 32, 42, 0.68);
}

.shipping-zone {
  color: var(--sage);
  font-weight: 850;
}

.cart-totals {
  display: grid;
  gap: 0.65rem;
  margin: 1.3rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.total-row {
  color: var(--navy);
  font-size: 1.22rem;
}

.checkout-button {
  width: 100%;
}

.checkout-button:disabled,
.product-buy button:disabled {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.55;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem max(1.25rem, calc((100vw - 1180px) / 2));
  color: var(--navy);
  background: var(--baby-blue-deep);
}

.site-footer img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer p {
  max-width: 430px;
  margin: 0.75rem 0 0;
  color: rgba(16, 37, 63, 0.76);
}

.site-footer nav {
  display: grid;
  gap: 0.45rem;
}

.footer-note {
  text-align: right;
}

.cart-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  max-width: 320px;
  transform: translateY(140%);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
  font-weight: 850;
  transition: transform 180ms ease;
}

.cart-toast.is-visible {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav {
    justify-content: flex-end;
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 0;
    height: auto;
  }

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

  .hero-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    margin-top: 0.8rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .section-kicker,
  .shop-heading,
  .checkout-heading,
  .split-section,
  .occasion-section,
  .product-detail-hero,
  .product-detail-grid,
  .more-mixes,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

  .featured-products .product-card:last-child {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .featured-products .product-card:last-child .product-media {
    min-height: 100%;
  }

  .featured-products .product-card:last-child .product-body {
    justify-content: center;
  }

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

  .directions-panel {
    grid-row: auto;
  }

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

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

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem 0.8rem;
    padding: 0.65rem 0.9rem;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 0.15rem;
  }

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

  .brand span {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 0;
    max-height: none;
    height: auto;
  }

  .hero-media img {
    height: min(52svh, 450px);
    min-height: 340px;
    object-fit: cover;
    object-position: center top;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100% - 2rem, 1180px);
    margin: 0 auto;
    padding: 1.2rem 0 1.8rem;
  }

  h1 {
    max-width: none;
    font-size: 2.55rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .step-band,
  .shop-section,
  .why-section,
  .checkout-section,
  .split-section,
  .occasion-section,
  .product-detail-shell {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .step-band {
    padding-top: 2rem;
  }

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

  .steps article,
  .steps article + article {
    padding: 1.35rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps article:last-child {
    border-bottom: 0;
  }

  .featured-products,
  .product-grid,
  .why-grid,
  .more-mix-links {
    grid-template-columns: 1fr;
  }

  .featured-products .product-card:last-child {
    display: flex;
    flex-direction: column;
    grid-column: auto;
  }

  .featured-products .product-card:last-child .product-media {
    min-height: 210px;
  }

  .featured-products .product-card:last-child .product-body {
    justify-content: flex-start;
  }

  .sample-callout {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 210px;
  }

  .product-media img {
    height: 220px;
  }

  .product-detail-media {
    min-height: 300px;
  }

  .product-detail-media img {
    max-height: 280px;
  }

  .product-detail-actions .button {
    width: 100%;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .quantity-control {
    width: max-content;
  }

  .shipping-grid,
  .shipping-grid label:nth-child(3) {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .main-nav {
    gap: 0.65rem;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-buy {
    align-items: stretch;
    flex-direction: column;
  }
}
