:root {
  --ink: #080808;
  --paper: #ffffff;
  --milk: #f7f5f0;
  --line: #dfdcd4;
  --muted: #6f6a62;
  --gold: #9a7538;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

img,
video {
  display: block;
}

.site-shell {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

html.is-overlay-open,
html.is-overlay-open body {
  overflow: hidden;
}

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

.site-shell a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 220, 212, 0.72);
}

.top-banner {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 72px);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(223, 220, 212, 0.7);
}

.top-banner a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.top-banner span:last-child {
  justify-self: end;
}

.top-nav {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(26px, 4vw, 72px);
}

.nav-cluster,
.commerce-actions,
.loop-tabs {
  display: flex;
  align-items: center;
}

.nav-cluster {
  gap: 30px;
}

.nav-toggle {
  display: none !important;
}

.nav-cluster.right {
  justify-content: flex-end;
}

.nav-cluster button,
.nav-cluster a,
.commerce-actions button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-cluster button,
.nav-cluster a {
  width: 38px;
  height: 38px;
  padding: 0;
  text-decoration: none;
}

.nav-cluster svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cluster button:hover,
.commerce-actions button:hover,
.nav-cluster a:hover {
  opacity: 0.62;
  transform: translateY(-1px);
}

.footer-logo {
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: 0.2em;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wordmark img {
  width: clamp(76px, 6vw, 104px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  transition: transform 0.35s ease;
  image-rendering: auto;
}

.wordmark:hover img {
  transform: rotate(-8deg) scale(1.06);
}

.mega-nav {
  position: relative;
  z-index: 41;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.25vw, 38px);
  min-height: 50px;
  padding: 0 clamp(20px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(223, 220, 212, 0.72);
  border-bottom: 1px solid rgba(223, 220, 212, 0.72);
  overflow: visible;
}

.mega-nav .helios-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.25vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-nav .menu-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
}

.mega-nav .menu-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  color: #2a2723;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.mega-nav .menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.mega-nav .menu-item:hover > a::after,
.mega-nav .menu-item:focus-within > a::after {
  transform: scaleX(1);
}

.mega-nav .sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 44;
  display: grid;
  gap: 15px;
  min-width: 250px;
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid var(--line);
  box-shadow: 0 24px 44px rgba(44, 39, 32, 0.08);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-nav .menu-item:hover > .sub-menu,
.mega-nav .menu-item:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-nav .sub-menu .menu-item {
  min-height: 0;
}

.mega-nav .sub-menu a {
  min-height: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
}

.mega-nav-item {
  display: flex;
  align-items: center;
  min-height: 50px;
}

.mega-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  color: #2a2723;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.mega-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.mega-nav-item:hover .mega-nav-link::after,
.mega-nav-item:focus-within .mega-nav-link::after {
  transform: scaleX(1);
}

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 42;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;
}

.mega-nav-item:hover .mega-panel,
.mega-nav-item:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
  gap: clamp(34px, 5vw, 86px);
  padding: 38px clamp(28px, 4vw, 72px) 36px;
  background: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 44px rgba(44, 39, 32, 0.08);
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 270px;
  padding-right: clamp(18px, 3vw, 46px);
  border-right: 1px solid rgba(154, 117, 56, 0.3);
}

.mega-column:last-child {
  border-right: 0;
}

.mega-column h3 {
  margin: 0 0 10px;
  color: #2a2723;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1;
}

.mega-column a {
  width: fit-content;
  color: #2f3438;
  font-size: 16px;
  line-height: 1.25;
  transition: color 0.18s ease, transform 0.18s ease;
}

.mega-column a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.mega-feature {
  position: relative;
  display: block;
  min-height: 290px;
  overflow: hidden;
  background: var(--milk);
}

.mega-feature img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mega-feature:hover img {
  transform: scale(1.04);
}

.mega-feature span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.44);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: start;
  padding: clamp(28px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  animation: riseIn 0.28s ease both;
}

.overlay-close {
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-overlay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(34px, 7vw, 120px);
  width: min(100%, 1040px);
  margin: clamp(44px, 8vw, 110px) auto 0;
}

.nav-overlay-grid div,
.search-overlay > div {
  display: grid;
  gap: 18px;
}

.nav-overlay span,
.search-overlay span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-overlay-grid a {
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1;
}

.search-overlay > div {
  width: min(100%, 960px);
  margin: clamp(44px, 8vw, 100px) auto 0;
}

.search-overlay label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 18px;
}

.search-overlay input {
  border: 0;
  outline: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 70px);
}

.search-suggestions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.search-suggestions a {
  display: grid;
  gap: 10px;
}

.search-suggestions img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--milk);
}

.search-suggestions b {
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 70%) minmax(320px, 30%);
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  min-height: inherit;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #e4e1db;
}

.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96) brightness(1.02);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96) brightness(1.02);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 50% 84%, rgba(0, 0, 0, 0.72), transparent 48%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 62%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 clamp(28px, 5vw, 86px) clamp(60px, 8vw, 112px);
  color: white;
  text-align: left;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.48);
  animation: riseIn 0.8s ease both;
}

.hero-category-panel {
  position: relative;
  min-width: 0;
  min-height: inherit;
  display: block;
  padding: 0;
  background: #fbfaf7;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.hero-category-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-category-track {
  min-width: 0;
  height: 100%;
  display: flex;
  width: 100%;
  gap: 0;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-category-card {
  position: relative;
  flex: 0 0 100%;
  min-height: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--milk);
}

.hero-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.hero-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 35%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 58%);
}

.hero-category-card div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 24px 24px 62px;
  color: white;
}

.hero-category-card span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.6vw, 44px);
  font-weight: 400;
  line-height: 0.96;
}

.hero-category-card b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-category-card:hover img {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.045);
}

.hero-category-pagination {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-height: 22px;
}

.hero-category-pagination button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-category-pagination button.active {
  width: 34px;
  background: #fff;
}

.hero-copy span,
.debeers-intro span,
.section-title span,
.editorial-grid span,
.instagram-section > span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy span {
  color: rgba(255, 255, 255, 0.84);
}

.hero-copy h1 {
  margin: 16px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.6vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p {
  margin: -12px 0 26px;
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.hero-copy a,
.debeers-intro a,
.editorial-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.couture-section {
  display: grid;
  grid-template-columns: minmax(420px, 34vw) minmax(0, 1fr);
  min-height: 760px;
  border-bottom: 1px solid var(--line);
}

.campaign-image {
  position: relative;
  overflow: hidden;
  background: var(--milk);
}

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

.campaign-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 54%);
}

.campaign-image div {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  color: white;
}

.campaign-image span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.campaign-image strong {
  max-width: 460px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.commerce-panel {
  min-width: 0;
  padding: clamp(46px, 5.4vw, 86px) 0 clamp(38px, 5vw, 74px)
    clamp(36px, 5vw, 86px);
}

.commerce-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  padding-right: clamp(26px, 4vw, 76px);
}

.commerce-head h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.commerce-actions {
  gap: 30px;
  font-size: 18px;
}

.commerce-actions a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
}

.loop-tabs {
  gap: 8px;
  margin: 26px 0 26px;
}

.loop-tabs button {
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.product-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 32%);
  gap: 34px;
  overflow-x: auto;
  padding: 0 clamp(26px, 4vw, 76px) 26px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.product-tabs-section .product-strip {
  display: none;
}

.product-tabs-section .product-strip.active {
  display: grid;
}

.product-strip::-webkit-scrollbar {
  display: none;
}

.product-strip a,
.product-strip img,
.slider-track a,
.slider-track img,
.product-slider-track a,
.product-slider-track img,
.loved-gallery-track a,
.loved-gallery-track img {
  -webkit-user-drag: none;
  user-select: none;
}

.product-strip.is-dragging,
.slider-track.is-dragging,
.product-slider-track.is-dragging,
.loved-gallery-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.product-card {
  scroll-snap-align: start;
  display: grid;
  gap: 18px;
}

.product-image {
  position: relative;
  aspect-ratio: 0.72;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.product-image > span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 6px;
  background: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5%;
  transform: scale(1.08);
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.14);
}

.quick-actions {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-card:hover .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.quick-actions b {
  font-size: 15px;
  font-weight: 500;
}

.product-card h3 {
  margin: 0;
  min-height: 48px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}

.product-card strong {
  font-size: 22px;
}

.scroll-indicator {
  height: 5px;
  margin-right: clamp(26px, 4vw, 76px);
  background: #cecbc3;
}

.scroll-indicator span {
  display: block;
  width: 26%;
  height: 100%;
  background: var(--ink);
}

.debeers-intro {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 126px) 24px;
  text-align: center;
}

.debeers-intro h2,
.section-title h2,
.instagram-section h2 {
  margin: 12px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
}

.debeers-intro p {
  margin: 0 auto 26px;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.debeers-intro div {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.slider-section {
  padding: clamp(44px, 6vw, 86px) 0 clamp(34px, 5vw, 64px)
    clamp(24px, 5vw, 92px);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.slider-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  padding-right: clamp(24px, 5vw, 92px);
  margin-bottom: 26px;
}

.slider-section-head > div:first-child {
  max-width: 680px;
}

.slider-section-head span,
.gallery-head .section-title span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slider-section-head h2 {
  margin: 12px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.slider-section-head p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.slider-track,
.product-slider-track,
.loved-gallery-track {
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.slider-track::-webkit-scrollbar,
.product-slider-track::-webkit-scrollbar,
.loved-gallery-track::-webkit-scrollbar {
  display: none;
}

.product-slider-track {
  grid-auto-columns: minmax(420px, 34vw);
  gap: 18px;
  padding-right: clamp(24px, 5vw, 92px);
}

.slider-product {
  scroll-snap-align: start;
  min-width: 0;
  display: grid;
  gap: 16px;
}

.slider-product-image {
  position: relative;
  aspect-ratio: 1.02;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.slider-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
}

.slider-product-image > span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 14px;
  background: var(--milk);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slider-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5%;
  transform: scale(1.1);
  transition: transform 0.35s ease;
}

.slider-product:hover .slider-product-image img {
  transform: scale(1.16);
}

.slider-product-meta {
  display: grid;
  gap: 8px;
}

.slider-product-meta h3 {
  margin: 0;
  min-height: 58px;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.08;
}

.slider-product-meta strong {
  font-size: 22px;
}

.slider-product-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-progress {
  margin-top: 28px;
  margin-right: clamp(24px, 5vw, 92px);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

.feature-rail {
  display: grid;
  grid-template-columns: minmax(360px, 38%) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: start;
  padding: clamp(20px, 3vw, 42px) clamp(24px, 5vw, 92px)
    clamp(24px, 4vw, 58px);
  border-top: 1px solid var(--line);
}

.feature-rail.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 38%);
}

.feature-copy {
  grid-column: 2;
  grid-row: 1;
}

.feature-media {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.feature-products {
  grid-column: 2;
  grid-row: 2;
}

.feature-rail.reverse .feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.feature-rail.reverse .feature-media {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.feature-rail.reverse .feature-products {
  grid-column: 1;
  grid-row: 2;
}

.feature-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) auto;
  column-gap: 22px;
  align-items: end;
  padding: 2px 0 8px;
}

.feature-copy span {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-copy h2 {
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 400;
  line-height: 1.02;
}

.feature-copy p {
  grid-column: 1;
  margin: 0;
  max-width: 430px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-copy a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-media {
  overflow: hidden;
  min-height: 640px;
  background: var(--milk);
}

.feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.feature-rail:hover .feature-media img {
  transform: scale(1.025);
}

.feature-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-content: start;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.feature-product {
  min-width: 0;
  display: grid;
  grid-column: span 3;
  grid-template-columns: minmax(0, 56%) minmax(0, 1fr);
  align-items: center;
  min-height: 224px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.feature-product.primary {
  grid-row: span 3;
  align-items: stretch;
  grid-template-columns: 1fr;
}

.feature-product-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 224px;
  overflow: hidden;
  background: #fff;
}

.feature-product.primary .feature-product-visual {
  min-height: 500px;
}

.feature-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2.5%;
  transform: scale(1.08);
  transition: transform 0.35s ease;
}

.feature-product:hover .feature-product-visual img {
  transform: scale(1.14);
}

.feature-product-visual > span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 7px 12px;
  background: var(--milk);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-product-meta {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: #fff;
}

.feature-product-meta h3 {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 400;
  line-height: 1.14;
}

.feature-product-meta strong {
  font-size: 18px;
}

.feature-product-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 0 clamp(24px, 5vw, 92px) clamp(64px, 8vw, 122px);
}

.category-tile {
  position: relative;
  min-height: 390px;
  grid-column: span 2;
  overflow: hidden;
  background: var(--milk);
}

.category-tile.large {
  min-height: 620px;
  grid-column: span 3;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
}

.category-tile div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  color: white;
}

.category-tile strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
}

.category-tile span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.shape-section,
.instagram-section,
.loved-gallery {
  padding: clamp(54px, 7vw, 104px) clamp(24px, 5vw, 92px);
  border-top: 1px solid var(--line);
}

.section-title {
  margin-bottom: 34px;
  text-align: center;
}

.shape-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 54px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: end;
}

.shape-card {
  display: grid;
  gap: 18px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.shape-card img {
  width: 100%;
  height: 138px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.08));
  transition: transform 0.28s ease;
}

.shape-card:hover img {
  transform: translateY(-6px) scale(1.04);
}

.shape-card span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 clamp(24px, 5vw, 92px) clamp(70px, 8vw, 132px);
}

.editorial-grid article {
  display: grid;
  gap: 18px;
}

.editorial-grid img {
  width: 100%;
  height: min(62vw, 720px);
  object-fit: cover;
  background: var(--milk);
}

.editorial-grid h2 {
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.02;
}

.editorial-grid a {
  width: fit-content;
}

.loved-gallery {
  padding: clamp(46px, 6vw, 88px) 0 clamp(48px, 6vw, 84px)
    clamp(24px, 5vw, 92px);
  overflow: hidden;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-right: clamp(24px, 5vw, 92px);
  margin-bottom: 28px;
}

.gallery-head .section-title {
  margin: 0;
  text-align: left;
}

.gallery-head .section-title h2 {
  margin-bottom: 0;
}

.loved-gallery-track {
  grid-auto-columns: minmax(500px, 32vw);
  gap: 8px;
  padding-right: clamp(24px, 5vw, 92px);
}

.loved-gallery-card {
  scroll-snap-align: start;
  display: grid;
  gap: 18px;
  text-align: center;
}

.loved-gallery-card img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  background: #eaf1f3;
}

.loved-gallery-card span {
  font-size: 18px;
}

.instagram-section {
  text-align: center;
}

.instagram-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.instagram-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--milk);
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 74px);
  padding: 58px clamp(24px, 5vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.footer-logo {
  display: block;
  margin-bottom: 14px;
  font-size: 30px;
}

.footer p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer nav,
.footer-social {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer nav a,
.footer-social a,
.footer-bar a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer nav a:hover,
.footer-social a:hover,
.footer-bar a:hover {
  color: var(--ink);
}

.footer-social div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-bar img {
  display: block;
  width: 128px;
  max-width: 100%;
  height: auto;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-bar > span {
  justify-self: end;
}

.collection-page {
  background: #fff;
}

.collection-hero {
  padding: 42px clamp(20px, 4vw, 72px) 38px;
  border-bottom: 1px solid var(--line);
}

.collection-hero nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 13px;
}

.collection-hero nav b {
  color: var(--ink);
  font-weight: 500;
}

.collection-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(320px, 0.45fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.collection-hero-grid span,
.collection-product-meta span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-hero h1 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.5vw, 132px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.collection-hero p {
  margin: 0;
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.7;
}

.shop-departments {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.shop-departments a,
.shop-departments button {
  display: grid;
  justify-items: start;
  gap: 8px;
  min-height: 104px;
  padding: 24px clamp(18px, 2.4vw, 34px);
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 0.22s ease, color 0.22s ease;
}

.shop-departments a:last-child,
.shop-departments button:last-child {
  border-right: 0;
}

.shop-departments span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-departments b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1;
}

.shop-departments a:hover,
.shop-departments a.active,
.shop-departments button:hover,
.shop-departments button.active {
  background: var(--ink);
  color: #fff;
}

.shop-departments a:hover span,
.shop-departments a.active span,
.shop-departments button:hover span,
.shop-departments button.active span {
  color: rgba(255, 255, 255, 0.7);
}

.collection-hero-image {
  display: block;
  margin-top: clamp(34px, 5vw, 70px);
  overflow: hidden;
  background: var(--milk);
}

.collection-hero-image img {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 620px);
  object-fit: cover;
}

.collection-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(30px, 4vw, 56px);
  padding: 34px clamp(20px, 4vw, 72px) 76px;
}

.collection-shell.no-filters {
  grid-template-columns: minmax(0, 1fr);
}

.collection-filters {
  position: sticky;
  top: 138px;
  align-self: start;
  border-top: 1px solid var(--line);
}

.filter-head,
.filter-group summary,
.collection-toolbar,
.collection-tools,
.active-filters {
  display: flex;
  align-items: center;
}

.filter-head {
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
}

.filter-head b {
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.filter-head button,
.filter-head a,
.filter-trigger,
.collection-tools select,
.view-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.filter-head button,
.filter-head a,
.filter-trigger {
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-group {
  border-bottom: 1px solid var(--line);
}

.filter-group summary {
  justify-content: space-between;
  min-height: 58px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.filter-group summary::-webkit-details-marker {
  display: none;
}

.filter-group summary::after {
  content: "+";
  color: var(--muted);
  font-size: 18px;
}

.filter-group[open] summary::after {
  content: "-";
}

.filter-group div {
  display: grid;
  gap: 14px;
  padding: 0 0 22px;
}

.filter-group label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
}

.filter-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
}

.filter-group small {
  color: #a6a19a;
}

.collection-toolbar {
  justify-content: space-between;
  gap: 22px;
  min-height: 54px;
  margin-bottom: 18px;
}

.collection-toolbar > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.collection-toolbar span {
  color: var(--muted);
  font-size: 14px;
}

.collection-tools {
  justify-content: end;
  gap: 16px;
}

.collection-tools select {
  min-width: 210px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.view-button {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  gap: 3px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  opacity: 0.42;
}

.view-button.active {
  opacity: 1;
}

.view-button span {
  width: 6px;
  height: 6px;
  background: var(--ink);
}

.view-button.list {
  grid-template-columns: 1fr;
}

.view-button.list span {
  width: 22px;
  height: 2px;
}

.active-filters {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.active-filters span {
  padding: 8px 12px;
  background: var(--milk);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 22px;
}

.woocommerce-pagination {
  margin-top: 48px;
}

.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.woocommerce-pagination li {
  border: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.woocommerce-pagination .current {
  background: var(--ink);
  color: #fff;
}

.helios-load-more-wrap {
  display: grid;
  place-items: center;
  margin-top: clamp(38px, 5vw, 70px);
}

.helios-load-more {
  min-width: min(100%, 220px);
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.helios-load-more:hover,
.helios-load-more.is-loading {
  background: var(--ink);
  color: #fff;
}

.helios-load-more:disabled {
  cursor: wait;
  opacity: 0.72;
}

.collection-product {
  display: block;
  min-width: 0;
}

.collection-product.is-filtered-out {
  display: none;
}

.collection-product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 74%, rgba(205, 201, 193, 0.34), transparent 24%),
    linear-gradient(180deg, #fbfaf8 0%, #f6f4ef 100%);
}

.collection-product-media > span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  transform: scale(1.18);
  transition: opacity 0.36s ease, transform 0.5s ease;
}

.diamond-product .collection-product-media {
  background:
    radial-gradient(circle at 50% 68%, rgba(126, 118, 102, 0.2), transparent 34%),
    linear-gradient(180deg, #fbfaf7 0%, #eee9df 100%);
}

.diamond-product .collection-product-media img {
  padding: 6%;
  filter:
    contrast(1.18)
    saturate(1.08)
    drop-shadow(0 20px 22px rgba(50, 44, 35, 0.16));
  transform: scale(1.08);
}

.diamond-product:hover .collection-product-primary {
  opacity: 1;
  transform: scale(1.12);
}

.diamond-product .collection-product-hover {
  display: none;
}

.watch-product .collection-product-media {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0)),
    #f6f3ed;
}

.watch-product .collection-product-media img {
  object-fit: cover;
  padding: 0;
  filter: contrast(1.04) saturate(0.96);
  transform: scale(1);
}

.watch-product:hover .collection-product-primary {
  opacity: 0;
  transform: scale(1.05);
}

.watch-product:hover .collection-product-hover {
  opacity: 1;
  transform: scale(1.04);
}

.collection-product-hover {
  opacity: 0;
  transform: scale(1.22);
}

.collection-product-actions {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.collection-product-actions b {
  margin-right: auto;
  font-size: 14px;
  font-weight: 500;
}

.collection-product:hover .collection-product-primary {
  opacity: 0;
  transform: scale(1.22);
}

.collection-product:hover .collection-product-hover {
  opacity: 1;
  transform: scale(1.18);
}

.collection-product:hover .collection-product-actions {
  opacity: 1;
  transform: translateY(0);
}

.collection-product-meta {
  display: grid;
  gap: 9px;
  padding-top: 18px;
}

.collection-product-meta h3 {
  margin: 0;
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.diamond-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.diamond-specs span {
  border: 1px solid var(--line);
  padding: 6px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.collection-product-meta strong {
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 800;
}

.product-page {
  padding-bottom: 74px;
  overflow-x: hidden;
}

.product-detail-shell {
  padding: 34px clamp(20px, 4vw, 72px) 72px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
}

.product-breadcrumb b {
  color: var(--ink);
  font-weight: 500;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.68fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
  min-width: 0;
}

.product-gallery {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.product-main-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(76vw, 860px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 75%, rgba(204, 199, 190, 0.35), transparent 28%),
    linear-gradient(180deg, #fbfaf8 0%, #f3f1eb 100%);
  animation: riseIn 0.7s ease both;
}

.product-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 42%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-main-image:hover::after {
  opacity: 1;
}

.product-main-image > span {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  max-height: min(76vw, 860px);
  object-fit: contain;
  transform: scale(1.1);
  transition: transform 0.55s ease;
}

.product-main-image:hover img {
  transform: scale(1.16);
}

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

.product-thumbs button {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: #f7f5f0;
  cursor: pointer;
  overflow: hidden;
}

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

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.product-thumbs button:hover img {
  transform: scale(1.06);
}

.product-purchase {
  position: sticky;
  top: 146px;
  display: grid;
  gap: 20px;
  padding-top: 10px;
  animation: riseIn 0.75s 0.08s ease both;
  min-width: 0;
}

.product-kicker,
.product-info-intro span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-purchase h1 {
  margin: 0;
  max-width: 640px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.product-rating span {
  color: var(--ink);
  letter-spacing: 0.16em;
}

.product-rating a {
  border-bottom: 1px solid currentColor;
}

.product-price {
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1;
}

.product-purchase p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 54px;
  gap: 10px;
  margin-top: 4px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  min-height: 54px;
  border: 1px solid var(--ink);
}

.quantity-control button,
.add-to-cart-button,
.wishlist-button,
.sticky-product-bar button {
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.quantity-control button {
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0;
}

.quantity-control span {
  display: grid;
  place-items: center;
  font-weight: 700;
}

.add-to-cart-button {
  min-height: 54px;
}

.wishlist-button {
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.add-to-cart-button:hover,
.wishlist-button:hover,
.sticky-product-bar button:hover,
.quantity-control button:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.payment-note {
  padding: 16px 18px;
  background: var(--milk);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-cart-form form.cart {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
}

.product-cart-form .quantity {
  display: grid;
}

.product-cart-form .quantity input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: center;
}

.product-cart-form .single_add_to_cart_button,
.product-cart-form button.button {
  min-height: 54px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-cart-form .single_add_to_cart_button:hover,
.product-cart-form button.button:hover {
  opacity: 0.72;
  transform: translateY(-1px);
}

.product-cart-form .variations {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.product-cart-form .variations select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: #fff;
}

.product-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-service-grid div {
  display: grid;
  gap: 7px;
  min-height: 120px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-service-grid b {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-service-grid span,
.product-meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-meta {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.product-info-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 6vw, 96px);
  padding: clamp(54px, 7vw, 104px) clamp(20px, 4vw, 72px);
  border-top: 1px solid var(--line);
}

.product-info-intro h2 {
  margin: 14px 0 18px;
  max-width: 580px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.product-info-intro p {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  line-height: 1.7;
}

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

.product-accordions details {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.product-accordions summary::-webkit-details-marker {
  display: none;
}

.product-accordions summary::after {
  content: "+";
  color: var(--muted);
  font-size: 20px;
}

.product-accordions details[open] summary::after {
  content: "-";
}

.product-accordions p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.product-related {
  padding: clamp(46px, 6vw, 88px) clamp(20px, 4vw, 72px)
    clamp(70px, 8vw, 124px);
  border-top: 1px solid var(--line);
}

.collection-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sticky-product-bar {
  position: fixed;
  left: clamp(16px, 3vw, 40px);
  right: clamp(16px, 3vw, 40px);
  bottom: 14px;
  z-index: 38;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 220, 212, 0.9);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.sticky-product-bar div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sticky-product-bar img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--milk);
}

.sticky-product-bar span {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-product-bar button {
  min-height: 46px;
  padding: 0 24px;
  font-size: 12px;
}

.static-hero,
.commerce-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(320px, 0.48fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: 44px clamp(20px, 4vw, 72px) clamp(50px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.commerce-hero {
  display: block;
  max-width: none;
}

.static-hero nav {
  display: flex;
  gap: 8px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 13px;
}

.static-hero > div > span,
.commerce-hero > span,
.static-blocks h2,
.static-panel h2,
.order-summary h2,
.checkout-form legend {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.static-hero h1,
.commerce-hero h1 {
  margin: 12px 0 22px;
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.6vw, 104px);
  font-weight: 400;
  line-height: 0.98;
}

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

.static-hero img {
  width: 100%;
  height: min(54vw, 680px);
  object-fit: cover;
  background: var(--milk);
}

.static-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(44px, 6vw, 88px) clamp(20px, 4vw, 72px);
}

.static-blocks {
  display: grid;
  gap: 28px;
}

.static-blocks article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.static-blocks h2,
.static-panel h2 {
  margin: 0 0 12px;
}

.static-blocks p,
.static-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.static-gallery img {
  width: 100%;
  height: clamp(220px, 30vw, 440px);
  object-fit: cover;
  background: var(--milk);
}

.static-gallery img.large {
  grid-column: 1 / -1;
  height: clamp(320px, 42vw, 620px);
}

.static-panel,
.size-table,
.cart-items,
.order-summary,
.checkout-form {
  border-top: 1px solid var(--line);
}

.simple-form,
.checkout-form,
.order-summary {
  display: grid;
  gap: 16px;
}

.simple-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.simple-form .full,
.custom-form .full {
  grid-column: 1 / -1;
}

.simple-form label,
.order-summary label,
.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.simple-form input,
.simple-form textarea,
.order-summary input,
.checkout-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

.simple-form textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.simple-form button,
.checkout-link,
.checkout-summary button {
  min-height: 52px;
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-summary .checkout-link {
  color: #fff;
  text-align: center;
}

.size-table {
  display: grid;
}

.size-table div {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.size-table b {
  font-size: 18px;
}

.size-table span,
.size-table small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.34fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding: clamp(36px, 5vw, 72px) clamp(20px, 4vw, 72px);
}

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

.cart-row img,
.mini-order-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--milk);
}

.cart-row span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cart-row h2 {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
}

.cart-row p {
  margin: 0;
  color: var(--muted);
}

.cart-row button {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-summary {
  position: sticky;
  top: 146px;
  padding-top: 22px;
}

.order-summary h2 {
  margin: 0 0 10px;
}

.order-summary > div:not(.mini-order-item) {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.summary-total b,
.summary-total span {
  font-size: 22px;
  color: var(--ink);
}

.order-summary > a:not(.checkout-link) {
  color: var(--muted);
  text-align: center;
}

.checkout-form {
  gap: 28px;
  padding-top: 0;
}

.checkout-form fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.payment-choice {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
}

.payment-choice span {
  color: var(--muted);
}

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

.wishlist-page {
  padding-top: clamp(36px, 5vw, 72px);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 6vw, 96px);
  padding: clamp(36px, 5vw, 72px) clamp(20px, 4vw, 72px);
}

.account-form {
  grid-template-columns: 1fr;
  align-self: start;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.account-form a {
  color: var(--muted);
  text-align: center;
}

.account-benefits {
  display: grid;
  gap: 22px;
}

.account-benefits article,
.empty-cart {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.account-benefits h2,
.empty-cart h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.account-benefits p,
.empty-cart p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.empty-cart {
  grid-column: 1 / -1;
  max-width: 780px;
}

.empty-cart > span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.empty-cart .checkout-link {
  width: fit-content;
  margin-top: 24px;
  padding: 0 28px;
  color: #fff;
  text-align: center;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-grid !important;
  }

  .mega-nav {
    display: none;
  }

  .couture-section {
    grid-template-columns: 1fr;
  }

  .campaign-image {
    min-height: 620px;
  }

  .commerce-panel {
    padding-left: clamp(24px, 5vw, 72px);
  }

  .category-tile,
  .category-tile.large {
    grid-column: span 3;
    min-height: 470px;
  }

  .shape-grid,
  .instagram-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .loved-gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-rail,
  .feature-rail.reverse {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-copy,
  .feature-media,
  .feature-products,
  .feature-rail.reverse .feature-copy,
  .feature-rail.reverse .feature-media,
  .feature-rail.reverse .feature-products {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-copy {
    display: block;
  }

  .feature-copy p {
    margin-bottom: 24px;
  }

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

  .feature-media {
    min-height: 520px;
  }

  .slider-section-head,
  .gallery-head {
    align-items: start;
    flex-direction: column;
  }

  .product-slider-track {
    grid-auto-columns: minmax(320px, 42vw);
  }

  .loved-gallery-track {
    grid-auto-columns: minmax(420px, 48vw);
  }

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

  .collection-filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

  .filter-head {
    grid-column: 1 / -1;
  }

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

  .product-detail-grid,
  .product-info-band {
    grid-template-columns: 1fr;
  }

  .product-purchase {
    position: static;
  }

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

  .static-hero,
  .static-content,
  .cart-layout,
  .checkout-layout,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .top-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    padding-block: 7px;
    text-align: center;
  }

  .top-banner span:last-child {
    display: none;
  }

  .top-nav {
    height: 78px;
    padding: 0 18px;
  }

  .wordmark img {
    width: 86px;
    height: auto;
  }

  .nav-cluster {
    gap: 14px;
  }

  .nav-cluster.right a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

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

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 28%),
      radial-gradient(circle at 50% 54%, rgba(0, 0, 0, 0.18), transparent 42%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 74%);
  }

  .hero-copy {
    position: absolute;
    top: 86px;
    left: 18px;
    right: 18px;
    max-width: 360px;
    margin-inline: 0;
    padding: 0;
    text-align: left;
  }

  .hero-copy span {
    max-width: 280px;
    margin-inline: 0;
    font-size: 11px;
    line-height: 1.35;
  }

  .product-strip {
    grid-auto-columns: minmax(280px, 86%);
  }

  .commerce-panel {
    order: 1;
  }

  .campaign-image {
    order: 2;
    min-height: 480px;
  }

  .hero-copy h1 {
    margin: 10px 0 14px;
    font-size: clamp(34px, 10.7vw, 46px);
    line-height: 0.98;
  }

  .hero-copy p {
    display: none;
  }

  .hero-copy a {
    min-height: 38px;
    padding: 0 18px;
    font-size: 11px;
  }

  .hero-category-panel {
    min-height: auto;
    padding: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-category-card {
    min-height: 360px;
  }

  .hero-category-card img {
    height: 100%;
    padding: 0;
  }

  .hero-category-card div {
    padding: 18px 18px 56px;
  }

  .hero-category-pagination {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .feature-products {
    grid-template-columns: 1fr;
  }

  .feature-product,
  .feature-product.primary {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .feature-product.primary .feature-product-visual,
  .feature-product-visual {
    min-height: 320px;
  }

  .feature-media {
    min-height: 430px;
  }

  .slider-section {
    padding-left: 18px;
  }

  .slider-section-head,
  .gallery-head {
    align-items: start;
    gap: 16px;
    padding-right: 18px;
  }

  .slider-section-head .commerce-actions,
  .gallery-head .commerce-actions,
  .commerce-head .commerce-actions {
    gap: 18px;
    margin-left: auto;
  }

  .slider-section-head .commerce-actions a,
  .gallery-head .commerce-actions a,
  .commerce-head .commerce-actions a {
    font-size: 14px;
    white-space: nowrap;
  }

  .slider-section-head .commerce-actions button,
  .gallery-head .commerce-actions button,
  .commerce-head .commerce-actions button {
    width: 34px;
    height: 34px;
  }

  .commerce-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 14px;
  }

  .commerce-head .commerce-actions {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
  }

  .commerce-head h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .loop-tabs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(112px, max-content);
    overflow-x: auto;
    gap: 8px;
    margin-top: 18px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .loop-tabs::-webkit-scrollbar {
    display: none;
  }

  .product-slider-track {
    grid-auto-columns: minmax(284px, 84vw);
    gap: 14px;
    padding-right: 18px;
  }

  .loved-gallery {
    padding-left: 18px;
  }

  .loved-gallery-track {
    grid-auto-columns: minmax(290px, 86vw);
    padding-right: 18px;
  }

  .slider-product-meta h3 {
    min-height: 0;
  }

  .commerce-head,
  .editorial-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .commerce-head {
    align-items: start;
    flex-direction: column;
  }

  .category-mosaic,
  .shape-grid,
  .instagram-row {
    grid-template-columns: 1fr;
  }

  .category-tile,
  .category-tile.large {
    grid-column: span 1;
    min-height: 420px;
  }

  .editorial-grid {
    padding-inline: 18px;
  }

  .editorial-grid img {
    height: 460px;
  }

  .footer,
  .footer nav,
  .footer-social {
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-brand p,
  .footer-social p {
    margin-inline: auto;
  }

  .footer-social div,
  .footer-bar {
    justify-content: center;
  }

  .footer-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .footer-bar > span {
    justify-self: center;
  }

  .collection-hero {
    padding-inline: 18px;
  }

  .shop-departments {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .shop-departments a,
  .shop-departments button {
    flex: 0 0 58%;
    min-height: 86px;
    scroll-snap-align: start;
  }

  .collection-hero-grid,
  .collection-toolbar,
  .collection-toolbar > div,
  .collection-tools {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .collection-shell {
    padding: 26px 18px 58px;
  }

  .collection-filters,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-tools select {
    width: min(100%, 320px);
  }

  .collection-product-actions {
    opacity: 1;
    transform: none;
  }

  .product-detail-shell,
  .product-info-band,
  .product-related {
    padding-inline: 18px;
  }

  .product-main-image {
    min-height: 450px;
  }

  .product-main-image img {
    transform: scale(1.18);
  }

  .product-main-image:hover img {
    transform: scale(1.22);
  }

  .product-purchase h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .product-price {
    font-size: 26px;
  }

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

  .purchase-actions,
  .product-service-grid,
  .collection-grid.compact {
    grid-template-columns: 1fr;
  }

  .wishlist-button {
    min-height: 54px;
  }

  .sticky-product-bar {
    display: none;
  }

  .static-hero,
  .static-content,
  .commerce-hero,
  .cart-layout,
  .checkout-layout,
  .account-layout {
    padding-inline: 18px;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    overflow-y: auto;
    padding: 22px 18px 34px;
    background: #fff !important;
    backdrop-filter: none;
  }

  .nav-overlay-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    width: 100%;
    margin: 42px 0 0;
  }

  .search-suggestions {
    grid-template-columns: 1fr;
  }

  .nav-overlay-grid a {
    font-family: inherit;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.25;
  }

  .nav-overlay-grid div {
    gap: 15px;
    align-content: start;
  }

  .nav-overlay span,
  .search-overlay span {
    font-size: 11px;
  }

  .overlay-close {
    position: sticky;
    top: 0;
    z-index: 2;
    justify-self: end;
    padding: 8px 0;
    background: #fff;
  }

  .static-hero img {
    height: 420px;
  }

  .static-gallery {
    grid-template-columns: 1fr;
  }

  .static-gallery img,
  .static-gallery img.large {
    height: 380px;
  }

  .simple-form,
  .form-grid,
  .cart-row,
  .size-table div,
  .mini-order-item {
    grid-template-columns: 1fr;
  }

  .cart-row img,
  .mini-order-item img {
    width: 150px;
  }
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.is-overlay-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .collection-filters {
    position: fixed;
    inset: auto 0 0;
    z-index: 70;
    max-height: 74vh;
    overflow-y: auto;
    padding: 0 18px 24px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -24px 54px rgba(0, 0, 0, 0.12);
    transform: translateY(105%);
    transition: transform 0.25s ease;
  }

  .collection-filters.is-open {
    transform: translateY(0);
  }

  .collection-shell.has-filters {
    grid-template-columns: 1fr;
  }

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

  .mega-nav .helios-menu {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 1px;
  }
}

/* Live hardening: keep WooCommerce/plugin defaults from changing the designed product/footer system. */
body .collection-page,
body .product-page,
body .footer,
body .footer-bar {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body .collection-page a,
body .product-page a,
body .footer a,
body .footer-bar a {
  color: inherit;
  text-decoration: none;
}

body .collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 3.6vw, 58px) clamp(24px, 2.8vw, 42px);
  align-items: start;
}

body .collection-product {
  display: grid;
  gap: 16px;
  min-width: 0;
  color: var(--ink);
}

body .collection-product-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f7f3;
}

body .collection-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
}

body .jewelry-product .collection-product-media img,
body .watch-product .collection-product-media img {
  object-fit: cover;
}

body .collection-product-media > span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

body .collection-product-meta {
  display: grid;
  gap: 9px;
  min-width: 0;
}

body .collection-product-meta > .product-card-category {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

body .collection-product-meta h3 {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

body .collection-product-meta strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

body .collection-product-meta strong span,
body .product-card strong span,
body .slider-product strong span,
body .product-price span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

body .collection-product-meta strong bdi,
body .product-card strong bdi,
body .slider-product strong bdi,
body .product-price bdi {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  white-space: nowrap;
}

body .product-title,
body .product-purchase h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 74px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

body .product-price {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 800;
  letter-spacing: 0;
}

body .product-summary,
body .product-purchase {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

body .product-detail-grid {
  align-items: start;
}

body .product-main-image {
  min-height: clamp(520px, 62vw, 860px);
}

body .product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

body .product-cart-form form.cart {
  display: grid;
  grid-template-columns: 132px minmax(220px, 1fr);
  gap: 10px;
}

body .product-cart-form .single_add_to_cart_button,
body .product-cart-form button.button,
body .product-cart-form .button {
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body .product-meta,
body .product-meta a {
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

body .collection-filters a {
  color: inherit;
  text-decoration: none;
}

body .collection-product:hover .collection-product-primary,
body .watch-product:hover .collection-product-primary,
body .diamond-product:hover .collection-product-primary {
  opacity: 1 !important;
  visibility: visible !important;
}

body .collection-product-hover {
  pointer-events: none;
}

body .woocommerce-Price-amount,
body .woocommerce-Price-currencySymbol {
  white-space: nowrap;
}

body .product-strip {
  gap: clamp(20px, 2vw, 32px);
}

body .product-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: min(360px, 78vw);
  color: var(--ink);
  text-decoration: none;
}

body .product-card .product-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 80%, rgba(194, 187, 175, 0.2), transparent 34%),
    linear-gradient(180deg, #fbfaf8 0%, #f4f1eb 100%);
}

body .product-card .product-image img,
body .slider-product img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1.08);
}

body .product-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(17px, 1.3vw, 24px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
}

body .product-card strong,
body .slider-product strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

body .quick-actions,
body .collection-product-actions {
  border-radius: 0;
}

body .footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(260px, 1fr);
  gap: clamp(38px, 6vw, 96px);
  padding: clamp(52px, 6vw, 86px) clamp(24px, 6vw, 104px) 42px;
  background: #fff;
  border-top: 1px solid var(--line);
}

body .footer ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body .footer h6 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
}

body .footer p,
body .footer li,
body .footer input {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

body .footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
}

body .footer-financing-logo {
  display: block;
  width: 96px;
  height: auto;
  margin-top: 18px;
}

body .footer form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 20px;
}

body .footer input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
}

body .footer button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body .footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(24px, 6vw, 104px) 30px;
  background: #fff;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

@media (max-width: 980px) {
  body .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  body .collection-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body .collection-product-meta h3 {
    font-size: 22px;
  }

  body .footer,
  body .footer-bar {
    grid-template-columns: 1fr;
    display: grid;
  }

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