:root {
  --ink: #2a2430;
  --muted: #716775;
  --line: #eadde4;
  --cream: #fff8f4;
  --paper: #ffffff;
  --pink: #f7a8c8;
  --blue: #a7d9f6;
  --rose: #ea6f9f;
  --sky: #4ca8df;
  --gold: #c99c4a;
  --shadow: 0 22px 70px rgba(82, 54, 70, 0.16);
  --radius: 8px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 18px;
  color: #fff;
  background: linear-gradient(90deg, var(--rose), var(--sky));
  font-size: 13px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(234, 221, 228, 0.9);
  background: rgba(255, 248, 244, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

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

.icon-button,
.cart-button,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button,
.cart-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.icon-button svg,
.cart-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button {
  position: relative;
}

a.cart-button {
  text-decoration: none;
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.search-panel {
  position: sticky;
  top: 82px;
  z-index: 15;
  display: grid;
  grid-template-columns: auto minmax(220px, 520px);
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(42, 36, 48, 0.08);
}

.search-panel[hidden] {
  display: none;
}

.search-panel label {
  font-weight: 900;
}

.search-panel input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1c1720;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 36, 48, 0.82), rgba(42, 36, 48, 0.24) 58%, rgba(42, 36, 48, 0.08));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vw, 88px) clamp(18px, 7vw, 92px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 94px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 58px);
  line-height: 1.02;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 26px rgba(42, 36, 48, 0.2);
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: #fff;
}

.button.outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button.full {
  width: 100%;
  margin-top: 10px;
}

section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 1180px;
  gap: 24px;
  text-align: left;
}

.section-heading.inline h2 {
  margin-bottom: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.category-tile {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 35px rgba(82, 54, 70, 0.08);
}

.category-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
  transition: transform 250ms ease;
}

.category-tile:hover img {
  transform: scale(1.04);
}

.category-tile span {
  display: block;
  padding: 14px 10px 16px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.bestsellers,
.new-arrivals {
  background: #fff;
}

.filter-row {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.filter.active {
  background: var(--ink);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(82, 54, 70, 0.11);
}

.product-image-link {
  position: relative;
  display: block;
}

.product-card img,
.compact-card img,
.arrival-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  min-height: 48px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
}

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

.price-row strong {
  font-size: 18px;
}

.add-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
  max-width: 1280px;
  margin: 0 auto;
}

.feature-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose);
  font-weight: 900;
}

.text-link::after {
  content: "→";
}

.feature-media {
  position: relative;
}

.feature-media img {
  width: 100%;
  max-height: 680px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 240px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 42px rgba(42, 36, 48, 0.18);
}

.feature-card strong,
.feature-card span {
  display: block;
}

.feature-card span {
  margin-top: 6px;
  color: var(--muted);
}

.compact-grid,
.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.compact-card,
.arrival-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.compact-card div,
.arrival-card div {
  padding: 14px;
}

.compact-card h3,
.arrival-card h3 {
  min-height: 46px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.3;
}

.reviews {
  background: linear-gradient(135deg, rgba(247, 168, 200, 0.28), rgba(167, 217, 246, 0.34));
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.review-track article {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 15px 38px rgba(82, 54, 70, 0.08);
}

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

.surprise-service {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(180px, 0.35fr) minmax(320px, 1fr);
  align-items: center;
  gap: 32px;
  background: #fff;
}

.surprise-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.surprise-service img {
  width: min(220px, 100%);
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: min(420px, 100vw);
  height: 100vh;
  padding: 22px;
  background: #fff;
  box-shadow: -18px 0 60px rgba(42, 36, 48, 0.2);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

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

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-head h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 22px 0;
}

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

.cart-line img {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-line strong,
.cart-line small {
  display: block;
}

.cart-line small {
  margin-top: 4px;
  color: var(--muted);
}

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

.cart-page,
.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: start;
  gap: 24px;
  background: #fff;
}

.cart-page-items,
.checkout-form {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.cart-page-line {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(82, 54, 70, 0.08);
}

.cart-page-line img {
  width: 110px;
  height: 110px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-page-line h2 {
  margin-bottom: 6px;
  font-size: 22px;
}

.cart-page-line p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.55;
}

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

.quantity-control {
  display: inline-grid;
  grid-template-columns: 34px 42px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}

.quantity-control button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.quantity-control span {
  text-align: center;
  font-weight: 900;
}

.order-summary,
.form-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(82, 54, 70, 0.08);
}

.order-summary {
  position: sticky;
  top: 116px;
}

.summary-row,
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.summary-control {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 900;
}

.summary-control input,
.summary-control select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.coupon-row .button {
  min-height: 44px;
}

.coupon-message {
  min-height: 22px;
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 900;
}

.summary-row.total {
  border-bottom: 0;
  font-size: 20px;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-form .wide,
.check-row {
  grid-column: 1 / -1;
}

.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  line-height: 1.55;
}

.check-row input {
  width: auto;
  margin-top: 5px;
}

.form-note,
.form-success {
  color: var(--muted);
  line-height: 1.6;
}

.form-success {
  margin: 16px 0 0;
  color: #2f7d46;
  font-weight: 900;
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.empty-cart {
  color: var(--muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  background: rgba(42, 36, 48, 0.34);
}

.scrim.show {
  display: block;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 1fr 0.8fr;
  gap: 30px;
  padding: 56px clamp(18px, 5vw, 72px) 34px;
  background: var(--ink);
  color: #fff;
}

.page-hero {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: 430px;
  background: linear-gradient(135deg, rgba(247, 168, 200, 0.26), rgba(167, 217, 246, 0.34));
}

.page-hero.compact {
  min-height: 350px;
}

.page-hero.split {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.6fr);
}

.page-hero > div {
  max-width: 780px;
}

.page-hero img {
  width: 100%;
  max-height: 440px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  background: var(--cream);
}

.copy-block {
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(82, 54, 70, 0.08);
}

.copy-block.accent {
  background: linear-gradient(135deg, rgba(247, 168, 200, 0.22), rgba(167, 217, 246, 0.26)), #fff;
}

.copy-block p {
  color: var(--muted);
  line-height: 1.75;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  background: #fff;
}

.product-gallery img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.product-detail-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.detail-price {
  display: block;
  margin: 18px 0 24px;
  font-size: 32px;
}

.detail-list {
  margin: 26px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 16px;
}

.footer-brand .brand-mark {
  border-color: #fff;
  color: var(--ink);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.68);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1050px) {
  .category-grid,
  .product-grid,
  .compact-grid,
  .arrival-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-section,
  .surprise-service,
  .site-footer,
  .page-hero.split,
  .content-band,
  .product-detail,
  .cart-page,
  .checkout-page {
    grid-template-columns: 1fr 1fr;
  }

  .cart-page-line {
    grid-template-columns: 90px minmax(0, 1fr) auto;
  }

  .cart-page-line .quantity-control {
    grid-column: 2;
  }

  .surprise-service img {
    display: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .site-header {
    display: flex;
    gap: 12px;
    padding-inline: 12px;
  }

  .brand {
    order: 1;
    margin-right: auto;
  }

  .header-actions {
    order: 2;
    flex: 0 0 auto;
  }

  .menu-toggle {
    flex: 0 0 auto;
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    order: 4;
    display: none;
    flex-direction: column;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .site-nav.open {
    display: flex;
  }

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

  .search-panel {
    top: 78px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin: 0 18px 40px;
  }

  h1 {
    max-width: 9ch;
    font-size: 40px;
    line-height: 1;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero-content p:not(.eyebrow) {
    max-width: 30ch;
    font-size: 17px;
  }

  .hero-actions,
  .section-heading.inline {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .category-grid,
  .product-grid,
  .compact-grid,
  .arrival-grid,
  .review-track,
  .steps,
  .feature-section,
  .surprise-service,
  .site-footer,
  .page-hero.split,
  .content-band,
  .product-detail,
  .cart-page,
  .checkout-page,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .cart-page-line {
    grid-template-columns: 86px 1fr;
    align-items: start;
  }

  .cart-page-line > strong,
  .cart-page-line .quantity-control {
    grid-column: 2;
  }

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

  .filter-row {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand strong {
    font-size: 15px;
  }
}
