@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ivory: #FBF9F6;
  --taupe: #AFA090;
  --taupe-dark: #8f8072;
  --jade: #E4ECE7;
  --jade-deep: #8DA397;
  --charcoal: #222222;
  --muted: #666666;
  --line: #e7e0d9;
  --white: #ffffff;
  --soft: #f4f0eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Inter", Helvetica, Arial, sans-serif;
}

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

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

.announcement {
  align-items: center;
  background: var(--taupe);
  color: var(--white);
  display: flex;
  font-size: 12px;
  height: 34px;
  justify-content: center;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  align-items: center;
  background: rgba(251, 249, 246, .96);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr 160px;
  min-height: 80px;
  padding: 0 42px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.hamburger {
  display: none;
}

.logo {
  align-items: center;
  display: flex;
}

.logo img {
  height: 48px;
  object-fit: contain;
  width: 130px;
}

.main-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.main-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  letter-spacing: .02em;
}

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

.icon-btn {
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  height: 34px;
  justify-content: center;
  position: relative;
  width: 34px;
}

.cart-badge {
  align-items: center;
  background: var(--taupe);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 10px;
  height: 17px;
  justify-content: center;
  position: absolute;
  right: 1px;
  top: 2px;
  width: 17px;
}

.cart-badge.is-hidden {
  display: none;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 28px;
}

.section {
  padding: 78px 0;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  margin: 0 0 14px;
}

.section-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 650px;
}

.eyebrow {
  color: var(--taupe-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.btn {
  align-items: center;
  border: 1px solid var(--charcoal);
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: .13em;
  min-height: 46px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--taupe);
  border-color: var(--taupe);
  color: var(--white);
}

.btn-primary.is-added {
  background: var(--jade-deep);
  border-color: var(--jade-deep);
}

.btn-dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
}

.link-line {
  border-bottom: 1px solid currentColor;
  color: var(--charcoal);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  padding-bottom: 4px;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: min(760px, calc(100vh - 114px));
  overflow: hidden;
  place-items: stretch;
  position: relative;
}

.hero-media,
.visual-card {
  background:
    linear-gradient(135deg, rgba(175, 160, 144, .18), rgba(228, 236, 231, .68)),
    linear-gradient(150deg, #f8eee5, #fdfaf7 54%, #ded6cd);
  min-height: 580px;
  position: relative;
}

.hero-media::before {
  background: url("assets/logo-transparent.png") center / contain no-repeat;
  filter: drop-shadow(0 18px 32px rgba(143, 128, 114, .14));
  content: "";
  height: min(48vw, 520px);
  left: 64%;
  opacity: .92;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(48vw, 520px);
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  left: 7vw;
  max-width: 530px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  line-height: .96;
  margin: 0 0 20px;
  max-width: 620px;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 30px;
  max-width: 470px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.category-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
}

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  overflow: hidden;
  padding: 14px;
}

.category-visual {
  align-items: center;
  background: linear-gradient(145deg, #fff, #f1ece7);
  display: flex;
  height: 160px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.category-visual .random-media-img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.category-card h3,
.product-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  margin: 16px 0 0;
  min-height: 54px;
  text-align: center;
}

.category-card h3 {
  min-height: auto;
}

.centered {
  text-align: center;
}

.product-grid {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
}

.product-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 12px;
  position: relative;
}

.product-photo {
  align-items: center;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #fff, #eee8e2);
  display: flex;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.product-img {
  background: #f7f3ee;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.tag {
  background: var(--jade);
  color: #4b6759;
  font-size: 10px;
  font-weight: 800;
  left: 22px;
  letter-spacing: .11em;
  padding: 7px 9px;
  position: absolute;
  text-transform: uppercase;
  top: 22px;
  z-index: 1;
}

.tag.taupe {
  background: #eee6df;
  color: var(--taupe-dark);
}

.price,
.rating {
  text-align: center;
}

.price {
  font-weight: 700;
  line-height: 1.3;
  margin: 8px 0 0;
  min-height: 20px;
}

.rating {
  color: var(--taupe-dark);
  font-size: 12px;
  line-height: 1.4;
  min-height: 18px;
}

.dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}

.dot {
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 14px;
  width: 14px;
}

.dot.white { background: #f5f5f0; }
.dot.pink { background: #f3e1e1; }
.dot.green { background: #dce6e1; }
.dot.silver { background: #dedede; }

.quick-add {
  margin-top: auto;
  min-height: 38px;
  width: 100%;
}

.split {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: repeat(2, 1fr);
}

.visual-card {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 460px;
  overflow: hidden;
}

.story-panel {
  padding: 30px 0;
}

.gift-band {
  background: var(--jade);
  padding: 80px 28px;
  text-align: center;
}

.gift-band h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 auto 24px;
  max-width: 770px;
}

.ugc-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
}

.ugc-card {
  background: linear-gradient(150deg, #f8eee5, #fff, #e6eee9);
  border: 1px solid var(--line);
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 700;
  min-height: 250px;
  padding: 18px;
  position: relative;
}

.has-product-media {
  background-color: #f1eeea;
}

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

.visual-card .random-media-img,
.ugc-card .random-media-img,
.category-visual .random-media-img {
  background: #f7f3ee;
}

.ugc-card .random-media-img {
  flex: 1;
  height: auto;
  min-height: 0;
  object-fit: contain;
  width: 100%;
}

.scroll-reveal {
  clip-path: inset(18px 0 0 0);
  filter: blur(14px);
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition:
    opacity .85s ease,
    filter .95s ease,
    transform .95s cubic-bezier(.2, .75, .2, 1),
    clip-path .95s cubic-bezier(.2, .75, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform, clip-path;
}

.scroll-reveal.is-visible {
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.ugc-card:nth-child(even) {
  margin-top: 36px;
}

.site-footer {
  background: var(--taupe-dark);
  color: var(--white);
  padding: 56px 42px;
}

.footer-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.4fr 1fr;
  margin: 0 auto;
  max-width: 1180px;
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  margin: 0 0 12px;
}

.newsletter {
  display: flex;
  max-width: 430px;
}

.newsletter input,
.field {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  color: var(--charcoal);
  min-height: 46px;
  padding: 0 14px;
  width: 100%;
}

.newsletter button {
  min-width: 110px;
}

.footer-links {
  display: flex;
  gap: 38px;
  justify-content: flex-end;
}

.footer-links a {
  display: block;
  margin: 0 0 12px;
}

.page-hero {
  padding: 74px 0 44px;
  text-align: center;
}

.quick-links,
.filter-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 13px;
  padding: 11px 18px;
}

.pill.active {
  background: var(--taupe);
  border-color: var(--taupe);
  color: var(--white);
}

.filter-bar {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  justify-content: space-between;
  margin-top: 28px;
  padding: 18px 0;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.select-chip {
  background: transparent;
  border: 0;
  color: var(--charcoal);
  font: inherit;
  padding: 8px 2px;
}

.mobile-filter {
  display: none;
  width: 100%;
}

.mid-banner {
  align-items: center;
  background: #eee6df;
  display: flex;
  justify-content: space-between;
  margin: 36px 0;
  padding: 28px 32px;
}

.product-layout {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .85fr);
  padding: 56px 0 70px;
}

.media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.thumbs {
  display: grid;
  gap: 12px;
}

.thumb {
  align-items: center;
  background: #f0ebe6;
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 82px;
  overflow: hidden;
  padding: 0;
}

.thumb.active {
  border-color: var(--taupe);
  box-shadow: 0 0 0 2px rgba(175, 160, 144, .18);
}

.thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.main-product-photo {
  align-items: center;
  background: linear-gradient(145deg, #fff, #ede7e1);
  display: flex;
  justify-content: center;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.main-product-photo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

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

.gallery-thumb {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #f0ebe6;
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.gallery-thumb.active {
  border-color: var(--taupe);
  box-shadow: 0 0 0 2px rgba(175, 160, 144, .18);
}

.gallery-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

.breadcrumbs {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 20px;
}

.product-info h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1.05;
  margin: 16px 0 10px;
}

.product-info .price {
  font-size: 24px;
  text-align: left;
}

.tag-row {
  display: flex;
  gap: 8px;
}

.tag-static {
  background: var(--jade);
  color: #4b6759;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.benefits {
  color: var(--muted);
  line-height: 2;
  list-style: none;
  padding: 0;
}

.benefits li::before {
  color: var(--taupe);
  content: "✓ ";
  font-weight: 800;
}

.variant-block {
  margin: 22px 0;
}

.variant-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.large-dots {
  justify-content: flex-start;
}

.large-dots .dot {
  height: 28px;
  width: 28px;
}

.dot.selected {
  outline: 2px solid var(--taupe);
  outline-offset: 3px;
}

.qty {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  height: 42px;
}

.qty button,
.qty span {
  align-items: center;
  background: transparent;
  border: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  min-width: 42px;
}

.cta-stack {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

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

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

.accordion summary {
  cursor: pointer;
  font-weight: 700;
}

.accordion p {
  color: var(--muted);
  line-height: 1.7;
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}

.sticky-cart {
  display: none;
}

.checkout-sticky {
  display: none;
}

.cart-layout {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, .6fr);
  padding: 60px 0;
}

.progress-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  margin: 22px 0;
  padding: 18px;
}

.progress-bar {
  background: #f0f0f0;
  height: 8px;
  margin-top: 12px;
}

.progress-fill {
  background: var(--jade-deep);
  height: 100%;
  width: 95%;
}

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

.cart-thumb {
  align-items: center;
  background: linear-gradient(145deg, #fff, #ece6df);
  display: flex;
  justify-content: center;
  min-height: 110px;
  overflow: hidden;
}

.cart-thumb img {
  height: 110px;
  object-fit: cover;
  width: 110px;
}

.summary-card {
  background: #f1eeea;
  padding: 26px;
  position: sticky;
  top: 112px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 0 0 16px;
}

.summary-row.total {
  border-top: 1px solid var(--line);
  font-size: 22px;
  font-weight: 800;
  padding-top: 18px;
}

.promo {
  display: flex;
  gap: 8px;
  margin: 18px 0;
}

.pay-icons,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pay-icons span,
.trust-row span {
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  padding: 8px 10px;
}

.empty-cart {
  border: 1px solid var(--line);
  margin-top: 60px;
  padding: 70px 24px;
  text-align: center;
}

.empty-icon {
  border: 1px dashed var(--taupe);
  border-radius: 999px;
  height: 82px;
  margin: 0 auto 22px;
  opacity: .7;
  width: 82px;
}

.checkout-page {
  background: var(--white);
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(420px, .92fr);
  min-height: 100vh;
}

.checkout-form-panel {
  justify-self: end;
  max-width: 610px;
  padding: 34px 38px 46px;
  width: 100%;
}

.checkout-summary-panel {
  background: var(--soft);
  border-left: 1px solid var(--line);
  padding: 42px 48px;
}

.checkout-logo {
  display: inline-flex;
  margin-bottom: 28px;
}

.checkout-logo img {
  height: 54px;
  object-fit: contain;
  width: 132px;
}

.checkout-form {
  display: grid;
  gap: 28px;
}

.checkout-section {
  display: grid;
  gap: 12px;
}

.checkout-section h1,
.checkout-section h2 {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 21px;
  line-height: 1.2;
  margin: 0;
}

.checkout-heading-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.checkout-heading-row a,
.checkout-footer-links a {
  border-bottom: 1px solid currentColor;
  color: var(--charcoal);
  font-size: 12px;
}

.checkout-field,
.checkout-select {
  background: var(--white);
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  color: var(--charcoal);
  min-height: 52px;
  padding: 0 13px;
  width: 100%;
}

.checkout-field:focus,
.checkout-select:focus-within {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 1px var(--charcoal);
  outline: none;
}

.checkout-select {
  display: grid;
  gap: 2px;
  padding: 7px 12px;
}

.checkout-select span {
  color: var(--muted);
  font-size: 11px;
}

.checkout-select select,
.payment-box input,
.checkout-field {
  font: inherit;
}

.checkout-select select {
  background: transparent;
  border: 0;
  color: var(--charcoal);
  outline: 0;
  padding: 0;
}

.checkout-grid {
  display: grid;
  gap: 12px;
}

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

.checkout-grid.three {
  grid-template-columns: 1fr 1fr 1fr;
}

.checkout-check {
  align-items: center;
  color: var(--charcoal);
  display: inline-flex;
  font-size: 13px;
  gap: 9px;
}

.checkout-check input,
.payment-title input,
.payment-option input {
  accent-color: var(--charcoal);
  height: 16px;
  width: 16px;
}

.checkout-note {
  color: var(--muted);
  font-size: 13px;
  margin: -4px 0 0;
}

.shipping-placeholder {
  align-items: center;
  background: #f4f4f4;
  border-radius: 6px;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  justify-content: center;
  min-height: 54px;
  text-align: center;
}

.payment-box {
  border: 1px solid var(--charcoal);
  border-radius: 6px;
  overflow: hidden;
}

.payment-title,
.payment-option {
  align-items: center;
  background: #f7f7f7;
  border-bottom: 1px solid #dedede;
  display: flex;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 14px;
}

.payment-title label,
.payment-option {
  font-size: 13px;
  font-weight: 700;
}

.payment-badges {
  display: flex;
  gap: 5px;
}

.payment-badges span {
  background: var(--white);
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  color: #1f4f9b;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 5px;
}

.payment-fields {
  background: #f4f4f4;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.payment-option:last-child {
  border-bottom: 0;
}

.checkout-pay {
  background: #000;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  min-height: 56px;
  width: 100%;
}

.checkout-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.checkout-product {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 64px 1fr auto;
  margin-bottom: 24px;
}

.checkout-thumb {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 64px;
  overflow: hidden;
  position: relative;
  width: 64px;
}

.checkout-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.checkout-qty {
  align-items: center;
  background: #111;
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 19px;
  justify-content: center;
  position: absolute;
  right: -7px;
  top: -7px;
  width: 19px;
}

.checkout-product strong {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  max-width: 230px;
}

.checkout-product p {
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0 0;
}

.checkout-product > span {
  font-size: 13px;
  white-space: nowrap;
}

.checkout-discount {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  margin-bottom: 28px;
}

.checkout-discount .btn {
  background: var(--jade);
  border-color: var(--jade-deep);
  color: var(--charcoal);
  min-height: 52px;
}

.checkout-lines {
  display: grid;
  gap: 14px;
  max-width: 430px;
}

.checkout-lines > div {
  display: flex;
  justify-content: space-between;
}

.checkout-lines span {
  font-size: 13px;
}

.checkout-lines div span:last-child {
  color: var(--muted);
}

.checkout-total {
  align-items: baseline;
  font-size: 20px;
  margin-top: 8px;
}

.checkout-total strong {
  font-size: 21px;
}

@media (max-width: 980px) {
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .checkout-form-panel {
    justify-self: stretch;
    max-width: none;
    order: 2;
    padding: 28px 18px 42px;
  }

  .checkout-summary-panel {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    order: 1;
    padding: 28px 18px;
  }

  .checkout-grid.three {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 60px 1fr 90px;
    padding: 0 18px;
  }

  .hamburger {
    align-items: center;
    background: transparent;
    border: 0;
    display: flex;
    font-size: 24px;
  }

  .main-nav,
  .header-actions .account {
    display: none;
  }

  .main-nav.open {
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(34, 34, 34, .08);
    display: grid;
    gap: 0;
    left: 0;
    padding: 12px 18px 24px;
    position: absolute;
    right: 0;
    top: 80px;
  }

  .main-nav.open a {
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .logo {
    justify-content: center;
  }

  .logo img {
    height: 42px;
    width: 112px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 700px;
  }

  .hero-content {
    align-items: center;
    left: 50%;
    padding: 0 24px;
    text-align: center;
    top: 58%;
    transform: translate(-50%, -50%);
    width: min(100%, 520px);
  }

  .category-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .category-card {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }

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

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

  .visual-card {
    min-height: 360px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .product-info,
  .summary-card {
    position: static;
  }

  .main-product-photo {
    min-height: 460px;
  }

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

  .ugc-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .checkout-grid.two,
  .checkout-discount,
  .checkout-product {
    grid-template-columns: 1fr;
  }

  .checkout-product {
    position: relative;
  }

  .checkout-product > span {
    position: absolute;
    right: 0;
    top: 4px;
  }

  .checkout-footer-links {
    display: grid;
  }

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 54px 0;
  }

  .announcement {
    font-size: 11px;
  }

  .hero-media {
    aspect-ratio: 3 / 4;
    min-height: 0;
  }

  .hero-media::before {
    height: 160px;
    left: 50%;
    top: 28%;
    width: 160px;
  }

  .hero h1 {
    font-size: 38px;
    max-width: 340px;
  }

  .hero-content {
    top: 64%;
  }

  .btn-row,
  .btn {
    width: 100%;
  }

  .category-card {
    flex-basis: 70%;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    padding: 8px;
  }

  .product-photo {
    min-height: 190px;
  }

  .quick-add {
    font-size: 0;
    min-height: 34px;
  }

  .quick-add::after {
    content: "+";
    font-size: 18px;
  }

  .filter-group,
  .sort-control {
    display: none;
  }

  .mobile-filter {
    display: inline-flex;
  }

  body.filter-open::after {
    align-items: flex-start;
    background: var(--ivory);
    border-left: 1px solid var(--line);
    bottom: 0;
    box-shadow: -18px 0 30px rgba(34, 34, 34, .08);
    color: var(--charcoal);
    content: "Filter & Sort\A\A Category\A Price\A Material\A Color\A Gift Type\A Availability\A\A Featured";
    display: flex;
    font-weight: 700;
    line-height: 2.2;
    padding: 28px;
    position: fixed;
    right: 0;
    top: 0;
    white-space: pre;
    width: min(82vw, 340px);
    z-index: 60;
  }

  .mid-banner,
  .cart-item,
  .promo {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .thumbs {
    display: none;
  }

  .sticky-cart {
    align-items: center;
    background: var(--ivory);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    left: 0;
    padding: 10px 14px;
    position: fixed;
    right: 0;
    z-index: 40;
  }

  .sticky-cart small {
    color: var(--muted);
    display: block;
  }

  .sticky-cart .btn {
    min-height: 40px;
    width: auto;
  }

  .cart-page {
    padding-bottom: 72px;
  }

  .checkout-sticky {
    bottom: 0;
    display: block;
    left: 0;
    padding: 12px;
    position: fixed;
    right: 0;
    z-index: 35;
  }
}
