:root {
  color-scheme: light;
  --ink: #25251f;
  --soft-ink: #4d5048;
  --muted: #77776d;
  --olive: #586532;
  --olive-dark: #3f4c25;
  --line: #dedbd1;
  --paper: #fbfaf6;
  --ivory: #fffdf8;
  --sand: #f1ece2;
  --mist: #ebe9df;
  --shadow: 0 16px 36px rgba(31, 33, 27, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}
body.drawer-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
textarea {
  min-height: 92px;
  resize: vertical;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 220px 1fr 250px;
  align-items: center;
  min-height: 80px;
  padding: 0 clamp(28px, 5vw, 82px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
}
.brand { text-decoration: none; letter-spacing: 0.25em; }
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 0.9;
}
.brand small {
  display: block;
  margin-top: 8px;
  padding-left: 8px;
  font-size: 10px;
  letter-spacing: 0.5em;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 5vw, 72px);
}
.main-nav a,
.header-actions button,
.cart-link {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.cart-link {
  position: relative;
  padding-right: 8px;
}
.cart-link span {
  position: absolute;
  top: -14px;
  right: -10px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--olive);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0;
}
.mobile-only { display: none; }

.hero {
  position: relative;
  min-height: 578px;
  overflow: hidden;
  background: #ebe8df;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(43vw, 560px);
  background: linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.9) 58%, rgba(251, 250, 246, 0) 100%);
  pointer-events: none;
}
.hero picture,
.hero picture img {
  width: 100%;
  height: min(72vw, 578px);
  min-height: 520px;
  object-fit: cover;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(36px, 5vw, 82px);
  top: 28%;
  max-width: 430px;
}
.hero-copy p,
.small-label {
  margin: 0 0 16px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-copy h1,
.catalog-heading h2,
.section-kicker h2,
.routine-band h2,
.discover h2,
.product-info h2,
.checkout h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}
.hero-copy h1 {
  max-width: 420px;
  font-size: clamp(56px, 6vw, 76px);
  line-height: 0.94;
}
.hero-copy span {
  display: block;
  max-width: 310px;
  margin: 20px 0 30px;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.55;
}
.olive-button,
.place-order {
  border: 0;
  background: var(--olive);
  color: #fff;
}
.olive-button {
  display: inline-flex;
  min-width: 188px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-notes {
  position: absolute;
  right: clamp(48px, 6vw, 100px);
  bottom: 70px;
  display: grid;
  gap: 20px;
  color: #fff;
  font-size: 13px;
  text-align: right;
}
.hero-notes span::after {
  content: "";
  display: inline-block;
  width: 54px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
}

.mobile-tabs {
  display: none;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 18px clamp(18px, 5vw, 64px);
  background: var(--paper);
}
.mobile-tabs::-webkit-scrollbar,
.shelf::-webkit-scrollbar {
  display: none;
}
.mobile-tabs button {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
}
.mobile-tabs .is-active {
  background: var(--olive);
  color: #fff;
}

.best-section {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 44px;
  padding: 34px clamp(40px, 7vw, 116px) 54px;
  background: var(--ivory);
}
.section-kicker {
  align-self: center;
}
.section-kicker h2 {
  font-size: 30px;
  line-height: 1.05;
}
.section-kicker p {
  margin: 20px 0 32px;
  color: var(--muted);
  line-height: 1.45;
}
.section-kicker a,
.under-button,
.philosophy-card a {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}
.shelf {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}
.shelf-card,
.product-card {
  position: relative;
}
.shelf-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  background: var(--sand);
}
.shelf-card h3,
.product-card h3 {
  margin: 16px 0 6px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}
.shelf-card p,
.product-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 316px 1fr;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.filters {
  min-height: 820px;
  padding: 40px 38px;
  border-right: 1px solid var(--line);
}
.filter-head,
.filter-title,
.range-row,
.catalog-heading,
.product-meta,
.price-line,
.drawer-head,
.cart-summary > div,
.cart-line,
.dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.filter-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.filter-head button,
.category-filter {
  border: 0;
  background: transparent;
  color: var(--olive);
}
.filter-group {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.filter-title {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  text-transform: uppercase;
}
.filter-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.category-filter {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 0;
  text-align: left;
  color: var(--ink);
}
.category-filter.is-active {
  color: var(--olive);
  font-weight: 700;
}
.range-row {
  margin: 18px 0 8px;
  color: var(--soft-ink);
  font-size: 13px;
}
input[type="range"] {
  width: 100%;
  accent-color: var(--olive);
}
.philosophy-card {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  background: var(--sand);
}
.philosophy-card img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}
.philosophy-card div {
  display: none;
}
.philosophy-card h3 {
  max-width: 150px;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.05;
  text-transform: uppercase;
}
.philosophy-card p {
  max-width: 132px;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}
.philosophy-card a {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.catalog-main {
  padding: 34px clamp(28px, 4vw, 68px) 64px;
}
.catalog-heading {
  margin-bottom: 28px;
}
.catalog-heading h2 {
  font-size: clamp(48px, 5vw, 64px);
}
.catalog-heading p {
  max-width: 430px;
  margin: 14px 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.catalog-heading span {
  font-family: var(--serif);
  font-size: 18px;
}
.catalog-heading label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--soft-ink);
}
.mobile-filter-toggle {
  display: none;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--olive);
  background: transparent;
  color: var(--olive-dark);
  font-weight: 700;
}
select,
.search-row input,
.checkout input,
.checkout textarea {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
}
select {
  min-width: 186px;
  padding: 14px 42px 14px 16px;
}
.search-row {
  display: none;
  margin-bottom: 22px;
}
.search-row.is-open { display: block; }
.search-row input {
  width: 100%;
  padding: 15px 18px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 14px;
}
.product-card button.wish,
.quick-add {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
}
.product-card button.wish {
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 20px;
}
.product-card button.is-saved,
.heart.is-saved {
  color: #9f3f42;
}
.quick-add {
  top: 16px;
  right: 56px;
  width: 32px;
  height: 32px;
  font-size: 22px;
}
.product-card h3 { font-size: 17px; }
.product-card .brand-name {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 18px;
  text-transform: uppercase;
}
.price-line {
  margin-top: 8px;
  align-items: flex-end;
}
.routine-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 42px clamp(40px, 7vw, 116px);
  padding: 30px 46px;
  background: linear-gradient(90deg, rgba(245, 241, 232, 0.94), rgba(245, 241, 232, 0.7)),
    url("/assets/imagen/shelf-essential-cream.jpg") center / cover;
}
.routine-band h2 {
  font-size: 28px;
}
.routine-band p {
  margin: 8px 0 0;
  color: var(--soft-ink);
  font-size: 18px;
}
.under-button {
  font-size: 16px;
  text-transform: none;
  white-space: nowrap;
}

.discover {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 18px;
  padding: 42px clamp(40px, 7vw, 116px) 74px;
}
.discover > div {
  align-self: center;
  max-width: 560px;
}
.discover h2 {
  font-size: 44px;
}
.discover p:not(.small-label) {
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.65;
}
.discover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-dialog {
  width: min(1480px, calc(100vw - 42px));
  max-height: calc(100vh - 42px);
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.product-dialog::backdrop {
  background: rgba(22, 23, 19, 0.42);
}
.thank-you-dialog {
  width: min(420px, calc(100vw - 36px));
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  box-shadow: var(--shadow);
  text-align: center;
}
.thank-you-dialog::backdrop {
  background: rgba(22, 23, 19, 0.42);
}
.thank-you-dialog p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.45;
}
.thank-you-dialog button {
  min-width: 96px;
  min-height: 42px;
  border: 0;
  background: var(--olive);
  color: #fff;
}
.close-dialog {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.88);
  font-size: 26px;
}
.product-detail {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 0;
}
.detail-gallery {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 26px;
}
.thumbs {
  display: grid;
  align-content: start;
  gap: 12px;
}
.thumbs img {
  width: 74px;
  height: 92px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.detail-gallery > img {
  width: 100%;
  height: min(72vh, 680px);
  object-fit: cover;
}
.product-info {
  padding: 48px clamp(34px, 4vw, 58px);
}
.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: #dcddc9;
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-info h2 {
  margin-top: 20px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
}
.subtitle {
  margin: 12px 0 18px;
  color: var(--soft-ink);
  font-size: 18px;
}
.dialog-price {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin: 18px 0;
}
.dialog-price strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}
.size-row,
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}
.size-row span,
.qty-row span {
  width: 42px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.size-row button,
.qty-control button,
.dialog-actions button {
  border: 1px solid var(--line);
  background: transparent;
}
.size-row button {
  padding: 12px 22px;
}
.size-row .selected {
  border-color: var(--olive);
}
.qty-control {
  display: inline-grid;
  grid-template-columns: 44px 64px 44px;
  border: 1px solid var(--line);
}
.qty-control button {
  height: 52px;
  border-width: 0;
}
.qty-control output {
  display: grid;
  place-items: center;
}
.dialog-actions {
  justify-content: flex-start;
  margin: 18px 0 28px;
}
.dialog-actions .add-main {
  flex: 1;
  min-height: 54px;
  border: 0;
  background: var(--olive);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dialog-actions .heart {
  width: 62px;
  min-height: 54px;
  font-size: 24px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 20px 0;
  color: var(--olive-dark);
  font-size: 12px;
}
.accordion-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}
.accordion-panel {
  padding: 0 0 18px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.55;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(26, 27, 22, 0.26);
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(462px, 100%);
  height: 100vh;
  overflow-y: auto;
  transform: translateX(104%);
  transition: transform 180ms ease;
  padding: 38px 30px;
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-head h2,
.checkout h3 {
  font-size: 24px;
}
.drawer-head button {
  border: 0;
  background: transparent;
  font-size: 32px;
}
.cart-items {
  display: grid;
  gap: 22px;
  margin: 28px 0;
}
.cart-line {
  align-items: flex-start;
}
.cart-line img {
  width: 100px;
  height: 104px;
  object-fit: cover;
  background: var(--sand);
}
.cart-line h3 {
  margin: 4px 0 6px;
  font-size: 15px;
}
.cart-line p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.mini-qty {
  display: inline-grid;
  grid-template-columns: 34px 42px 34px;
  border: 1px solid var(--line);
}
.mini-qty button {
  height: 34px;
  border: 0;
  background: transparent;
}
.mini-qty output {
  display: grid;
  place-items: center;
}
.cart-price {
  display: grid;
  justify-items: end;
  gap: 42px;
}
.cart-price button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--soft-ink);
  font-size: 12px;
}
.cart-summary {
  display: grid;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.checkout input,
.checkout textarea {
  width: 100%;
  padding: 15px 14px;
}
.cart-total strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}
.checkout {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.checkout-note {
  margin: 0 0 4px;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.45;
}
.checkout label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 12px;
}
.place-order {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 20px;
}
#checkoutMessage {
  min-height: 22px;
  margin: 0;
  color: var(--olive);
}
.thank-you-dialog {
  max-width: min(420px, calc(100vw - 36px));
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.thank-you-dialog::backdrop {
  background: rgba(37, 37, 31, 0.32);
}
.thank-you-dialog p {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}
.thank-you-dialog button {
  min-height: 42px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  background: var(--olive);
  color: #fff;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  transform: translateX(-50%);
  max-width: min(420px, calc(100vw - 36px));
  padding: 13px 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 14px;
}

.sticky-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: none;
  grid-template-columns: 74px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 28px;
  background: var(--olive-dark);
  color: #fff;
}
.sticky-cart img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
}
.sticky-cart span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.sticky-cart strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}
.sticky-cart button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
}

.empty {
  grid-column: 1 / -1;
  padding: 50px 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 190px 1fr 210px; padding-inline: 28px; }
  .main-nav { gap: 24px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shelf { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shelf-card:nth-child(n + 4) { display: none; }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 48px 1fr 92px;
    min-height: 118px;
    padding: 0 28px;
  }
  .mobile-only {
    display: inline-grid;
    gap: 6px;
    width: 42px;
    border: 0;
    background: transparent;
  }
  .mobile-only span {
    display: block;
    height: 2px;
    background: var(--ink);
  }
  .brand { justify-self: center; text-align: center; }
  .brand strong { font-size: 44px; }
  .brand small { font-size: 13px; }
  .main-nav {
    position: fixed;
    inset: 165px 20px auto;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .header-actions {
    gap: 14px;
    justify-content: flex-end;
  }
  .text-icon { width: 28px; overflow: hidden; color: transparent !important; }
  .text-icon::before {
    content: "⌕";
    color: var(--ink);
    font-size: 32px;
  }
  .account { display: none; }
  .cart-link {
    width: 38px;
    overflow: hidden;
    color: transparent !important;
  }
  .cart-link::before {
    content: "▢";
    color: var(--ink);
    font-size: 30px;
  }
  .cart-link span {
    top: -4px;
    right: -2px;
  }
  .hero { min-height: 566px; }
  .hero picture img {
    height: 566px;
    min-height: 566px;
  }
  .hero-copy {
    top: 8%;
    left: 34px;
    max-width: 330px;
  }
  .hero-copy p {
    font-size: 17px;
    letter-spacing: 0.2em;
  }
  .hero-copy h1 {
    font-size: 82px;
    line-height: 0.92;
  }
  .hero-copy span {
    max-width: 245px;
    font-size: 22px;
  }
  .olive-button {
    min-width: 180px;
    min-height: 56px;
    border-radius: 4px;
    font-size: 20px;
    letter-spacing: 0;
    text-transform: none;
  }
  .hero-notes { display: none; }
  .mobile-tabs { display: flex; }
  .best-section {
    display: block;
    padding: 28px 28px 34px;
  }
  .section-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
  }
  .section-kicker h2 {
    font-size: 36px;
  }
  .section-kicker p { display: none; }
  .section-kicker a {
    font-size: 20px;
    letter-spacing: 0;
    text-transform: none;
    border: 0;
  }
  .shelf {
    grid-template-columns: repeat(3, 275px);
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 16px;
  }
  .shelf-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(31, 33, 27, 0.12);
  }
  .shelf-card img { aspect-ratio: 1 / 0.86; }
  .shelf-card h3,
  .shelf-card p {
    padding-inline: 22px;
  }
  .shelf-card h3 { font-size: 24px; }
  .shelf-card p:last-child {
    padding-bottom: 22px;
    color: var(--ink);
    font-weight: 700;
  }
  .catalog-layout { display: block; }
  .filters { display: none; }
  .catalog-main { padding: 30px 28px 120px; }
  .catalog-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .catalog-heading h2 { font-size: 44px; }
  .catalog-heading label {
    grid-column: 1 / -1;
    margin-top: 18px;
    justify-content: flex-start;
  }
  .mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .filters.is-open {
    position: fixed;
    inset: 118px 0 0;
    z-index: 35;
    display: block;
    min-height: 0;
    overflow-y: auto;
    padding: 24px 28px 132px;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .filters.is-open .philosophy-card { display: none; }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }
  .product-card h3 { font-size: 18px; }
  .product-card .brand-name { font-size: 16px; }
  .routine-band {
    margin: 0 28px 34px;
    padding: 28px;
    display: grid;
  }
  .discover {
    grid-template-columns: 1fr 1fr;
    padding: 20px 28px 120px;
  }
  .discover > div { grid-column: 1 / -1; }
  .discover h2 { font-size: 36px; }
  .product-dialog {
    width: 100vw;
    max-height: 100vh;
  }
  .product-detail { display: block; }
  .detail-gallery {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .thumbs { display: none; }
  .detail-gallery > img { height: 50vh; }
  .product-info { padding: 28px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .sticky-cart { display: grid; }
  .cart-drawer { padding-bottom: 126px; }
  .cart-drawer {
    left: 0;
    width: 100%;
    border-left: 0;
  }
}
