:root {
  --ink: #12110f;
  --muted: #6f6961;
  --paper: #f7f1e9;
  --paper-light: #fffaf5;
  --blush: #e9ddd3;
  --bone: #ede5dc;
  --emerald: #063a2b;
  --gold: #c8a66a;
  --line: rgba(18, 17, 15, 0.15);
  --line-dark: rgba(18, 17, 15, 0.32);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sorts Mill Goudy", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.eyebrow,
.nav-center a,
.nav-actions button,
.line-link,
.filter-tabs button,
.product-card__body > p,
.product-badge,
.product-number,
.site-footer a,
.site-footer p,
.site-footer small,
.category-filter a,
.sort-control,
.variant-group > span,
.pdp-facts,
.cart-line small {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.5rem;
  padding: 1.25rem 3.25rem;
  background: rgba(247, 241, 233, 0.76);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.solid,
.commerce-page .site-header {
  background: rgba(247, 241, 233, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 8.6rem;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-center,
.nav-actions,
.site-footer nav,
.socials {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}

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

.nav-actions {
  justify-content: flex-end;
}

.nav-center a,
.nav-actions button {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 2.25rem;
  height: 1.5rem;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.45rem 0;
  background: var(--ink);
}

.bijoux-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bone);
}

.bijoux-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bijoux-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 241, 233, 0.9) 0%, rgba(247, 241, 233, 0.58) 34%, rgba(247, 241, 233, 0.04) 72%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 42rem;
  max-width: calc(100% - 3rem);
  padding: 13.5rem 0 5rem 3.25rem;
}

.hero-copy h1 {
  margin: 1rem 0 1.55rem;
  font-size: 5.8rem;
}

.hero-side {
  position: absolute;
  right: 3.25rem;
  bottom: 3rem;
  z-index: 2;
  display: flex;
  gap: 1.35rem;
  color: var(--white);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.line-link {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
}

.line-link.light {
  color: var(--white);
}

.selection-intro {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 3.25rem 7.5rem;
  background: var(--paper-light);
}

.ghost-letter {
  position: absolute;
  right: 2rem;
  bottom: -2rem;
  color: #eee8e3;
  font-family: "Sorts Mill Goudy", Georgia, serif;
  font-size: 14rem;
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
}

.selection-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.22fr 1.25fr 0.72fr;
  gap: 3.5rem;
  align-items: start;
}

.section-number {
  color: var(--muted);
  font-family: Jomolhari, Georgia, serif;
  font-size: 1rem;
}

.selection-grid h2,
.section-heading h2,
.editorial-copy h2,
.collection-feature h2 {
  font-size: 5.2rem;
}

.selection-copy {
  display: grid;
  gap: 2rem;
  max-width: 26rem;
  color: var(--muted);
}

.selected-works,
.shop-section,
.related-products {
  padding: 7rem 3.25rem;
  background: var(--paper);
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin-bottom: 3rem;
}

.section-heading.wide {
  grid-template-columns: 1fr auto;
  max-width: none;
  align-items: end;
}

.section-heading.wide .eyebrow,
.section-heading.wide h2 {
  grid-column: 1;
}

.filter-tabs {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  gap: 1.4rem;
  align-items: end;
  flex-wrap: wrap;
}

.filter-tabs button {
  padding: 0 0 0.35rem;
  border-bottom: 1px solid transparent;
  color: var(--muted);
}

.filter-tabs button.active {
  color: var(--ink);
  border-color: var(--ink);
}

.product-grid,
.selected-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.5rem 2rem;
}

.product-card {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: var(--bone);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.045);
}

.product-number {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: rgba(18, 17, 15, 0.55);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.55rem;
  color: var(--ink);
  background: rgba(255, 250, 245, 0.74);
}

.wishlist-button {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  color: var(--ink);
  background: rgba(255, 250, 245, 0.84);
  border: 1px solid transparent;
  font-size: 1.2rem;
  line-height: 1;
}

.wishlist-button.active {
  color: var(--emerald);
  border-color: var(--emerald);
}

.wishlist-button.large {
  position: static;
  width: 3rem;
  height: 3rem;
  border-color: var(--line);
}

.product-card__body {
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
}

.product-card__body > p {
  color: var(--muted);
}

.product-card h3 {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
}

.price-row {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.price-row strong {
  font-weight: 600;
}

.price-row span {
  color: var(--muted);
}

.price-row em {
  color: #4d8a62;
  font-style: normal;
  font-weight: 600;
}

.option-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.mini-swatches {
  display: flex;
  gap: 0.35rem;
}

.mini-swatches span,
.swatch {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(18, 17, 15, 0.18);
}

.mini-swatches span.active,
.swatch.active {
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}

.card-add,
.outline-button,
.solid-button {
  display: inline-grid;
  place-items: center;
  min-height: 2.9rem;
  padding: 0.25rem 1.2rem;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.card-add {
  width: 100%;
  margin-top: 0.45rem;
}

.card-add:hover,
.solid-button {
  color: var(--white);
  background: var(--ink);
}

.outline-button:hover,
.solid-button:hover {
  transform: translateY(-1px);
}

.editorial-split {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: stretch;
  min-height: 44rem;
  background: var(--blush);
}

.editorial-image {
  min-height: 44rem;
  overflow: hidden;
}

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

.editorial-copy {
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 5.5rem 5rem;
}

.editorial-copy p:not(.eyebrow),
.collection-feature p,
.pdp-description,
.product-accordion p,
.checkout-help {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.occasion-edit {
  overflow: hidden;
  padding: 7rem 3.25rem 8rem;
  background: var(--paper-light);
}

.occasion-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.carousel-controls {
  display: flex;
  gap: 1rem;
}

.carousel-controls button {
  min-width: 4rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.occasion-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: end;
  min-height: 38rem;
}

.occasion-card {
  position: relative;
  height: 31rem;
  overflow: hidden;
  background: var(--bone);
}

.occasion-card.featured {
  height: 38rem;
}

.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.occasion-card:hover img {
  transform: scale(1.04);
}

.occasion-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.44));
}

.occasion-card span,
.occasion-card h3,
.occasion-card p {
  position: absolute;
  z-index: 2;
  color: var(--white);
}

.occasion-card span {
  left: 1.4rem;
  top: 1.25rem;
  font-size: 0.82rem;
}

.occasion-card h3 {
  left: 1.4rem;
  right: 1.4rem;
  bottom: 3.8rem;
  font-size: 2.4rem;
}

.occasion-card p {
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.45rem;
  font-size: 0.88rem;
}

.collection-feature {
  position: relative;
  min-height: 43rem;
  display: grid;
  align-items: center;
  padding: 5rem 3.25rem;
  overflow: hidden;
  color: var(--white);
  background: var(--emerald);
}

.collection-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.26) 54%, rgba(0, 0, 0, 0.04));
}

.collection-feature > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
  max-width: 38rem;
}

.collection-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.commerce-main {
  padding-top: 5.5rem;
  background: var(--paper);
}

.category-hero {
  position: relative;
  min-height: 34rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding: 5rem 3.25rem;
  overflow: hidden;
  color: var(--white);
}

.category-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.16));
}

.category-hero > div,
.category-hero > strong {
  position: relative;
  z-index: 1;
}

.category-hero h1,
.pdp-copy h1,
.not-found-panel h1 {
  margin: 0.9rem 0 1.4rem;
  font-size: 6rem;
}

.category-hero p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.category-hero strong {
  align-self: end;
  font-weight: 400;
}

.listing-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem 3.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.category-filter {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.category-filter a {
  color: var(--muted);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid transparent;
}

.category-filter a.active {
  color: var(--ink);
  border-color: var(--ink);
}

.sort-control {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--muted);
}

.sort-control select {
  min-height: 2.4rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  background: transparent;
}

.category-listing {
  padding: 4rem 3.25rem 7rem;
}

.pdp-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(25rem, 0.75fr);
  gap: 4.5rem;
  padding: 4rem 3.25rem 6rem;
  background: var(--paper-light);
}

.pdp-gallery {
  display: grid;
  gap: 1rem;
}

.pdp-main-image {
  min-height: 42rem;
  background: var(--bone);
  overflow: hidden;
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  min-height: 42rem;
  object-fit: cover;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pdp-thumbs button {
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
  border: 1px solid transparent;
  background: var(--bone);
}

.pdp-thumbs button.active {
  border-color: var(--ink);
}

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

.pdp-copy {
  position: sticky;
  top: 7rem;
  align-self: start;
  display: grid;
  gap: 1.35rem;
}

.pdp-breadcrumb {
  display: flex;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.pdp-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.pdp-price {
  font-size: 1.02rem;
}

.tax-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.pdp-facts {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.variant-group {
  display: grid;
  gap: 0.75rem;
}

.variant-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.swatch {
  width: 1.15rem;
  height: 1.15rem;
}

.size-button {
  min-width: 2.75rem;
  min-height: 2.35rem;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.8rem;
}

.size-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.gift-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
}

.gift-option input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--ink);
}

.pdp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.product-accordion {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

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

.product-accordion p {
  margin-top: 1rem;
}

.not-found-panel {
  min-height: 32rem;
  display: grid;
  align-content: center;
  gap: 1.5rem;
  padding: 5rem 3.25rem;
}

.not-found-panel p {
  max-width: 32rem;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 3.25rem;
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.site-footer img {
  width: 7rem;
}

.site-footer p,
.site-footer small {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
}

.site-footer nav {
  justify-content: center;
}

.socials {
  justify-content: flex-end;
  gap: 1.6rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  justify-content: flex-end;
  background: rgba(18, 17, 15, 0.45);
}

.cart-drawer[aria-hidden="false"] {
  display: flex;
}

.drawer-panel {
  width: min(32rem, 100%);
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 2rem;
  background: var(--paper-light);
}

.drawer-panel header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.drawer-panel h2,
.checkout-dialog h2 {
  font-size: 3rem;
}

.drawer-panel header button,
.dialog-close {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.8rem;
  line-height: 1;
}

.cart-lines {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 2rem 0;
  overflow: auto;
}

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

.cart-line img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  background: var(--bone);
}

.cart-line h3 {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.cart-line p {
  margin-top: 0.25rem;
  font-size: 0.84rem;
}

.cart-line small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
}

.cart-line button {
  color: var(--muted);
  font-size: 0.76rem;
  text-decoration: underline;
}

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

.checkout-dialog {
  width: min(34rem, calc(100% - 2rem));
  padding: 0;
  border: 0;
  background: var(--paper-light);
}

.checkout-dialog::backdrop {
  background: rgba(18, 17, 15, 0.52);
}

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

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.checkout-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}

.checkout-apply {
  min-height: 2.9rem;
  padding-inline: 1.1rem;
}

.checkout-summary {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.72);
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-summary strong {
  color: var(--ink);
  font-weight: 500;
}

.checkout-summary__total {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}

.checkout-summary__total span,
.checkout-summary__total strong {
  color: var(--ink);
}

.checkout-dialog label,
.search-panel label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.checkout-dialog input,
.checkout-dialog textarea,
.checkout-dialog select,
.search-panel input {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  background: transparent;
}

.dialog-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: start center;
  padding-top: 7rem;
  background: rgba(18, 17, 15, 0.45);
}

.search-panel {
  position: relative;
  width: min(42rem, calc(100% - 2rem));
  display: grid;
  gap: 1.4rem;
  padding: 2rem;
  background: var(--paper-light);
}

[data-search-results] {
  display: grid;
  gap: 0.75rem;
}

[data-search-results] a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

[data-search-results] small {
  color: var(--muted);
}

.search-overlay[hidden],
[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .hero-copy h1 {
    font-size: 4.85rem;
  }

  .selection-grid {
    grid-template-columns: 0.2fr 1fr;
  }

  .selection-copy {
    grid-column: 2;
  }

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

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

  .occasion-card,
  .occasion-card.featured {
    height: 32rem;
  }

  .pdp-shell {
    grid-template-columns: 1fr;
  }

  .pdp-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.8rem;
    padding: 1rem 1.25rem;
  }

  .brand {
    width: 7rem;
  }

  .nav-center {
    position: fixed;
    inset: 4.8rem 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
    background: var(--paper-light);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .nav-center {
    display: flex;
  }

  .nav-actions {
    gap: 1rem;
  }

  .nav-actions button:not(.menu-toggle) {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-copy {
    width: auto;
    padding: 10rem 1.25rem 4rem;
  }

  .hero-copy h1 {
    font-size: 4.2rem;
  }

  .hero-side {
    display: none;
  }

  .selection-intro,
  .selected-works,
  .shop-section,
  .related-products,
  .occasion-edit,
  .collection-feature,
  .category-listing,
  .not-found-panel {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .selection-grid,
  .section-heading.wide,
  .editorial-split,
  .category-hero,
  .listing-toolbar,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .selection-copy,
  .section-heading.wide .eyebrow,
  .section-heading.wide h2,
  .filter-tabs {
    grid-column: auto;
    grid-row: auto;
  }

  .selection-grid h2,
  .section-heading h2,
  .editorial-copy h2,
  .collection-feature h2,
  .category-hero h1,
  .pdp-copy h1,
  .not-found-panel h1 {
    font-size: 3.6rem;
  }

  .ghost-letter {
    font-size: 8rem;
  }

  .product-grid,
  .selected-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1rem;
  }

  .editorial-image {
    min-height: 28rem;
  }

  .editorial-copy {
    padding: 4rem 1.25rem;
  }

  .category-hero {
    padding: 4rem 1.25rem;
  }

  .listing-toolbar {
    padding: 1.5rem 1.25rem;
  }

  .pdp-shell {
    gap: 2.5rem;
    padding: 2rem 1.25rem 4rem;
  }

  .pdp-main-image,
  .pdp-main-image img {
    min-height: 30rem;
  }

  .site-footer nav,
  .socials {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .bijoux-hero {
    min-height: 42rem;
  }

  .bijoux-hero > img {
    object-position: 64% center;
  }

  .bijoux-hero::after {
    background: linear-gradient(180deg, rgba(247, 241, 233, 0.92), rgba(247, 241, 233, 0.58) 44%, rgba(247, 241, 233, 0.05));
  }

  .hero-copy {
    padding-top: 7rem;
  }

  .hero-copy h1 {
    font-size: 3.45rem;
  }

  .selection-intro,
  .selected-works,
  .shop-section,
  .related-products,
  .occasion-edit {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .selection-grid h2,
  .section-heading h2,
  .editorial-copy h2,
  .collection-feature h2,
  .category-hero h1,
  .pdp-copy h1,
  .not-found-panel h1 {
    font-size: 2.85rem;
  }

  .occasion-track,
  .pdp-thumbs,
  .pdp-actions {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .selected-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.45rem 0.7rem;
  }

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

  .product-number {
    display: none;
  }

  .product-badge {
    top: 0.55rem;
    left: 0.55rem;
    padding: 0.22rem 0.38rem;
    font-size: 0.55rem;
    background: rgba(255, 250, 245, 0.82);
  }

  .wishlist-button {
    top: 0.5rem;
    right: 0.5rem;
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.98rem;
    background: rgba(255, 250, 245, 0.9);
  }

  .product-card__body {
    gap: 0.34rem;
    padding-top: 0.58rem;
  }

  .product-card__body > p {
    display: none;
  }

  .product-card h3 {
    display: -webkit-box;
    min-height: 2.1rem;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .price-row {
    gap: 0.22rem 0.38rem;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .price-row span,
  .price-row em {
    font-size: 0.66rem;
  }

  .option-preview {
    display: none;
  }

  .card-add {
    min-height: 2.05rem;
    margin-top: 0.26rem;
    padding: 0.2rem 0.35rem;
    font-size: 0.62rem;
  }

  .occasion-card,
  .occasion-card.featured {
    height: 28rem;
  }

  .collection-feature {
    min-height: 34rem;
  }

  .category-hero {
    min-height: 28rem;
  }

  .pdp-main-image,
  .pdp-main-image img {
    min-height: 24rem;
  }

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

  .cart-line button {
    grid-column: 2;
    justify-self: start;
  }

  .checkout-fields,
  .checkout-inline {
    grid-template-columns: 1fr;
  }
}
