@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --ivory: #FFF5F9;
  --ivory-2: #FFEBF3;
  --beige: #FFD4E5;
  --beige-2: #FFBFD8;
  --gold: #FF4D94;
  --gold-2: #F02D7D;
  --gold-3: #FFA8CB;
  --gold-line: rgba(240, 45, 125, 0.16);
  --charcoal: #291B24;
  --ink: #3D2635;
  --muted: #7A5B6C;
  --muted-2: #9B788C;
  --white: #FFFFFF;
  --danger: #E62E7B;
  --ok: #2E7D32;
  --logo-pink: #F02D7D;
  --logo-purple: #7C6EE6;
  --logo-light-pink: #FFD4E5;
  --purple-accent: #7C6EE6;
  --purple-subtle: rgba(124, 110, 230, 0.12);
  --shadow: 0 10px 30px rgba(240, 45, 125, 0.1);
  --radius: 12px;
  --nav-h: 88px;
  --max: 1400px;
  --page-pad-x: clamp(16px, 4vw, 48px);
  --section-y: clamp(64px, 8vw, 100px);
  --page-bottom: clamp(72px, 10vw, 96px);
  --stack-xs: 8px;
  --stack-sm: 12px;
  --stack-md: 20px;
  --stack-lg: 32px;
  --stack-xl: 48px;
  --content-gap: 10px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 15px;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: #F8DCE8;
  color: var(--charcoal);
}

:focus-visible {
  outline: 1px solid var(--purple-accent);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--page-pad-x);
}

.container-wide {
  width: min(1400px, 100%);
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--page-pad-x);
}

/* Layout utilities — shared alignment & spacing */
.section-pad {
  padding-block: var(--section-y);
}

.section-pad-top-0 {
  padding-top: 0;
}

.page-bottom {
  padding-bottom: var(--page-bottom);
}

.container-narrow {
  max-width: 880px;
}

.text-center {
  text-align: center;
}

.content-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--content-gap);
}

.content-stack.text-center {
  align-items: center;
}

.stack-sm {
  gap: var(--stack-sm);
}

.stack-md {
  gap: var(--stack-md);
}

.mt-sm {
  margin-top: var(--stack-sm);
}

.mt-md {
  margin-top: var(--stack-md);
}

.mt-lg {
  margin-top: var(--stack-lg);
}

.page-lead {
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
}

.text-center>.page-lead,
.text-center>.muted.page-lead {
  margin-inline: auto;
}

.crumbs {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}

.crumbs-wrap {
  padding-top: var(--stack-lg);
}

.form-actions {
  margin-top: var(--stack-md);
}

.form-grid-single {
  grid-template-columns: 1fr;
}

.summary-note {
  font-size: 13px;
  margin: var(--stack-sm) 0 var(--stack-lg);
  line-height: 1.6;
}

.product-count {
  margin-bottom: var(--stack-md);
}

.section-head-centered {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.section-head-centered>div {
  text-align: center;
}

.section-head-centered .section-title {
  margin-bottom: var(--stack-xl);
}

/* Typography */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
}

h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--charcoal);
}

.display {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
}

h1 {
  font-size: clamp(36px, 4.6vw, 58px);
}

h2,
.section-title {
  font-size: clamp(32px, 4.2vw, 52px);
}

h3 {
  font-size: 22px;
}

small,
.text-sm {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.lab,
label.lab,
.field>span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 400;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 12px;
}

.muted {
  color: var(--muted);
}

.gold {
  color: var(--gold-2);
}

hr.gold-line {
  border: 0;
  height: 1px;
  background: var(--gold-line);
  margin: 28px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold-2);
  background: var(--gold-2);
  color: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(240, 45, 125, 0.22);
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover {
  background: #D81B60;
  border-color: #D81B60;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(216, 27, 96, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--gold-2);
  color: #FFFFFF;
}

.btn-gold {
  background: transparent;
  color: var(--gold-2);
  border-color: var(--gold);
  border-radius: 24px;
}

.btn-gold:hover {
  background: var(--gold-2);
  color: #FFFFFF;
  border-color: var(--gold-2);
}

.btn-text {
  border: 0;
  background: none;
  padding: 0;
  min-height: 0;
  color: var(--gold-2);
  letter-spacing: 0.14em;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  gap: 8px;
}

.btn-text::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-2);
  transition: width 0.4s var(--ease);
}

.btn-text:hover::after {
  width: 48px;
}

.btn-full {
  width: 100%;
}

.btn-buy {
  background: transparent;
  color: var(--gold-2);
  border-color: var(--gold-2);
  border-radius: 24px;
}

.btn-buy:hover {
  background: var(--gold-2);
  color: #FFFFFF;
  border-color: var(--gold-2);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(194, 24, 91, 0.1);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease),
    height 0.35s var(--ease);
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(194, 24, 91, 0.18);
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.06);
}

.nav-inner {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--page-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.logo-img {
  height: 56px;
  width: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  box-shadow: none;
  filter: none;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 1;
  display: block;
  transition: transform 0.3s var(--ease), height 0.35s var(--ease);
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.site-header.is-scrolled .logo-img {
  height: 46px;
  width: auto;
}

.site-footer .logo-img {
  height: 72px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: 12px;
}

.loader-brand .logo-img {
  height: 120px;
  width: auto;
  border-radius: 12px;
  object-fit: contain;
  margin-bottom: 12px;
}

.logo-mark {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.28em;
  font-weight: 500;
}

.logo-sub {
  font-size: 8px;
  letter-spacing: 0.42em;
  color: var(--gold-2);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 28px);
  flex: 1;
}

.nav-links>a,
.nav-item>a {
  font-family: var(--serif);
  font-size: 18.5px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  color: var(--charcoal);
  white-space: nowrap;
  transition: color 0.22s var(--ease);
}

.nav-links>a:hover,
.nav-item>a:hover,
.nav-links>a.active,
.nav-item>a.active {
  color: var(--gold-2);
}

.nav-links>a::after,
.nav-item>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}

.nav-links>a:hover::after,
.nav-item>a:hover::after,
.nav-links>a.active::after,
.nav-item>a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--charcoal);
  transition: color 0.22s var(--ease);
}

.icon-btn:hover {
  color: var(--gold-2);
}

.nav-item {
  position: static;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 0 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.nav-item.has-mega:hover .mega,
.nav-item.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

body.mega-off .mega,
body.mega-off .nav-item.has-mega:hover .mega,
body.mega-off .nav-item.has-mega:focus-within .mega {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(12px) !important;
}

.mega-inner {
  margin: 0 auto;
  width: min(1100px, 100%);
  background: var(--ivory-2);
  border: 1px solid var(--gold-line);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  overflow: hidden;
}

.mega-links {
  padding: 32px 36px;
  display: grid;
  gap: 8px;
}

.mega-links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 4px 0;
}

.mega-links a:hover {
  color: var(--gold-2);
}

.mega-all {
  margin-top: 12px;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
}

.mega-visual {
  position: relative;
  display: block;
  min-height: 220px;
  background: var(--beige);
}

.mega-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.mega-visual span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(26, 22, 18, 0.45);
  padding: 8px 12px;
}

.icon-btn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  border-radius: 99px;
  background: var(--gold-2);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  display: grid;
  place-items: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(194, 51, 101, 0.3);
}

.badge-count[hidden] {
  display: none;
}

/* Customer Reviews 3-Card Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  margin-top: 36px;
}

.review-card {
  background: var(--ivory-2);
  border: 1px solid rgba(194, 51, 101, 0.16);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(194, 51, 101, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 51, 101, 0.35);
  box-shadow: 0 16px 36px rgba(194, 51, 101, 0.12);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(194, 51, 101, 0.12);
}

.review-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}

.review-card .city {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.review-card .stars {
  color: var(--gold-2);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--charcoal);
  position: relative;
  transition: 0.28s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(41, 27, 36, 0.45);
  z-index: 88;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(255, 245, 249, 0.98);
  z-index: 90;
  padding: calc(72px + env(safe-area-inset-top, 0px)) 24px calc(24px + env(safe-area-inset-bottom, 0px));
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
  transform: none;
}

.mobile-nav .close-nav {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 42px;
}

.mob-links {
  display: flex;
  flex-direction: column;
}

.mob-links>a {
  min-height: 48px;
  padding: 14px 0;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-line);
  color: var(--ink);
}

.mob-mega {
  border-bottom: 1px solid var(--gold-line);
}

.mob-mega-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 14px 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
}

.mob-mega-toggle span {
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.25s var(--ease);
}

.mob-mega.open .mob-mega-toggle span {
  transform: rotate(45deg);
}

.mob-mega-panel {
  display: none;
  padding: 4px 0 14px;
  gap: 6px;
}

.mob-mega.open .mob-mega-panel {
  display: grid;
}

.mob-mega-panel a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 6px 0;
}

.mob-mega-panel a:hover {
  color: var(--gold-2);
}

.mob-mega-all {
  margin-top: 6px;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  color: var(--ink) !important;
}

.mob-utils {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-utils a,
.mob-utils button {
  min-height: 48px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  background: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: block;
  background: #f9e1de;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  max-width: 580px;
  padding: 120px 6vw 80px 6.5vw;
  /* Soft blush panel — matches banner, covers any residual image UI */
  background: linear-gradient(
    90deg,
    #f9e1de 0%,
    #f9e1de 58%,
    rgba(249, 225, 222, 0.88) 76%,
    rgba(249, 225, 222, 0) 100%
  );
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 22px;
  font-weight: 600;
}

.hero-kicker::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold-2);
}

.hero h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 16ch;
  color: var(--charcoal);
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
}

.hero p {
  max-width: 380px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-side {
  position: absolute;
  top: var(--nav-h);
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background: #f9e1de;
}

.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  transform: none;
  will-change: transform;
}

.hero-frame {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 252, 248, 0.22);
  pointer-events: none;
  z-index: 3;
}

.hero-caption {
  position: absolute;
  bottom: 40px;
  right: 36px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(42, 36, 30, 0.55);
  z-index: 3;
}

/* Intro */
.intro {
  padding: var(--section-y) 0;
  text-align: center;
}

.intro .eyebrow+h2,
.intro .eyebrow+.section-title {
  margin-top: var(--stack-sm);
}

.intro h2 {
  margin: var(--stack-sm) auto var(--stack-md);
  max-width: 720px;
}

.intro p.muted,
.intro .page-lead {
  max-width: 540px;
  margin: 0 auto var(--stack-lg);
  color: var(--muted);
  line-height: 1.65;
}

.intro p:not(.page-lead):not(.muted) {
  max-width: 540px;
  margin: 0 auto var(--stack-lg);
  color: var(--muted);
  line-height: 1.65;
}

/* Categories */
.section {
  padding: var(--section-y) 0;
}

.section.beige {
  background: var(--beige);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--stack-lg);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.section-head>div {
  flex: 1;
  min-width: 0;
}

.section-head .eyebrow+.section-title,
.section-head .eyebrow+h2 {
  margin-top: var(--stack-sm);
  line-height: 1.12;
}

.section-head p,
.section-head .page-lead {
  color: var(--muted);
  max-width: 520px;
  margin-top: var(--content-gap);
  line-height: 1.65;
}

.section-head .btn-text {
  flex-shrink: 0;
  align-self: flex-end;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.jewellery-grid {
  grid-template-columns: repeat(5, 1fr);
}

.jewellery-grid .cat-card {
  min-height: 380px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: block;
  color: var(--ivory-2);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(41, 27, 36, 0.65) 0%,
      rgba(41, 27, 36, 0.08) 55%);
  transition: background 0.5s;
}

.cat-card:hover img {
  transform: scale(1.07);
}

.cat-card:hover::after {
  background: linear-gradient(to top,
      rgba(41, 27, 36, 0.75) 0%,
      rgba(240, 45, 125, 0.18) 70%);
}

.cat-card .meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
}

.cat-card h3 {
  color: var(--ivory-2);
  font-size: 34px;
  margin-bottom: 6px;
}

.cat-card span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-3);
}

/* Shop by Categories — homepage */
.shop-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  align-items: stretch;
}

.shop-cat-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory-2);
  border: 1px solid rgba(194, 51, 101, 0.16);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(194, 51, 101, 0.07);
  color: var(--charcoal);
  overflow: hidden;
  min-width: 0;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.shop-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 51, 101, 0.4);
  box-shadow: 0 14px 32px rgba(194, 51, 101, 0.16);
}

.shop-cat-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--beige);
}

.shop-cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: none;
}

.shop-cat-card:hover .shop-cat-media img {
  transform: none;
}

.shop-cat-copy {
  padding: 18px 18px 20px;
  text-align: left;
}

.shop-cat-copy h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 6px;
  line-height: 1.2;
}

.shop-cat-link {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.section-categories {
  padding-bottom: var(--section-y);
}

/* Shop by metal */
.metal-grid {
  display: grid;
  grid-template-columns: 1.12fr 1.12fr 1.12fr 0.88fr;
  gap: 22px;
  align-items: start;
}

.metal-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 520px;
  color: var(--ivory-2);
  isolation: isolate;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.metal-card.metal-gold,
.metal-card.metal-silver,
.metal-card.metal-diamond {
  min-height: 560px;
}

.metal-card:nth-child(2) {
  margin-top: 40px;
}

.metal-card:nth-child(4) {
  margin-top: 72px;
  min-height: 460px;
}

.metal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.95s var(--ease);
}

.metal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(41, 27, 36, 0.68) 0%,
      rgba(41, 27, 36, 0.08) 58%);
  opacity: 1;
  transition: opacity 0.5s, background 0.5s;
}

.metal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(240, 45, 125, 0.16);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.metal-card.metal-silver::before {
  background: rgba(190, 198, 206, 0.22);
}

.metal-card.metal-diamond::before {
  background: rgba(232, 236, 240, 0.18);
}

.metal-card.metal-platinum::before {
  background: rgba(176, 180, 186, 0.2);
}

.metal-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.metal-copy .eyebrow {
  color: var(--gold-3);
  margin-bottom: 8px;
}

.metal-copy h3 {
  color: var(--ivory-2);
  font-size: clamp(32px, 3vw, 44px);
  margin-bottom: 8px;
}

.metal-copy p {
  max-width: 260px;
  color: rgba(247, 243, 238, 0.82);
  font-size: 14px;
  margin-bottom: 18px;
}

.metal-copy::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.metal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.metal-cta i {
  font-style: normal;
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.metal-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 60px rgba(26, 22, 18, 0.16);
}

.metal-card:hover img {
  transform: scale(1.08);
}

.metal-card:hover::before {
  opacity: 1;
}

.metal-card:hover .metal-copy::before {
  transform: scaleX(1);
}

.metal-card:hover .metal-cta i {
  transform: translateX(7px);
}

.metal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}

.metal-pills a {
  border: 1px solid var(--gold-line);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}

.metal-pills a:hover,
.metal-pills a.on {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.metal-hero-gold {
  background: linear-gradient(180deg, rgba(196, 165, 116, 0.1), transparent);
}

.metal-hero-silver {
  background: linear-gradient(180deg, rgba(186, 194, 202, 0.14), transparent);
}

.metal-hero-diamond {
  background: linear-gradient(180deg, rgba(228, 232, 236, 0.4), transparent);
}

.metal-hero-platinum {
  background: linear-gradient(180deg, rgba(176, 180, 186, 0.16), transparent);
}

.metal-grid.collections-metals {
  grid-template-columns: repeat(3, 1fr);
}

.metal-grid.collections-metals .metal-card:nth-child(2),
.metal-grid.collections-metals .metal-card:nth-child(4) {
  margin-top: 0;
}

.metal-grid.collections-metals .metal-card {
  min-height: 420px;
}

/* Signature editorial */
.signature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  max-height: 540px;
  border-radius: 20px;
  overflow: hidden;
  width: min(var(--max), calc(100% - (var(--page-pad-x) * 2)));
  margin-inline: auto;
  margin-block: clamp(32px, 5vw, 64px);
  box-shadow: 0 12px 36px rgba(194, 51, 101, 0.08);
}

.signature-media {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  max-height: 540px;
}

.signature-copy {
  background: linear-gradient(135deg, #FFEBF3 0%, #FFD4E5 100%);
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 48px);
  position: relative;
  border: 1px solid rgba(240, 45, 125, 0.16);
}

.signature-copy .eyebrow {
  color: var(--gold-2);
}

.signature-copy h2 {
  color: var(--charcoal);
  font-size: clamp(28px, 3.2vw, 44px);
  margin: 10px 0 14px;
}

.signature-copy p {
  color: var(--muted);
  max-width: 480px;
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.signature-copy .btn-ghost {
  border-color: var(--gold-2);
  color: var(--gold-2);
  width: fit-content;
}

.signature-copy .btn-ghost:hover {
  background: var(--gold-2);
  color: #FFFFFF;
}

.sig-ornament {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px) clamp(16px, 2.5vw, 36px);
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--ivory-2);
  border: 1px solid rgba(194, 51, 101, 0.16);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(194, 51, 101, 0.07);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 51, 101, 0.4);
  box-shadow: 0 14px 32px rgba(194, 51, 101, 0.16);
}

.product-hit {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  color: inherit;
  cursor: pointer;
}

.product-card>a {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-media {
  position: relative;
  overflow: hidden;
  background: var(--beige);
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
}

.product-media>a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.product-media img.alt {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-media img.main {
  transform: scale(1.02);
}

.product-card:hover .product-media img.alt {
  opacity: 1;
  transform: scale(1.02);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 16px 16px;
  min-width: 0;
  text-align: left;
}

.wish-btn:not(.wish-text) {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(240, 45, 125, 0.22);
  box-shadow: 0 2px 8px rgba(240, 45, 125, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  color: var(--charcoal);
  z-index: 3;
  opacity: 1;
  transform: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover .wish-btn:not(.wish-text),
.wish-btn:not(.wish-text).on,
.wish-btn:not(.wish-text):focus-visible {
  opacity: 1;
  transform: none;
}

.wish-btn:not(.wish-text):hover,
.wish-btn:not(.wish-text):focus-visible {
  color: var(--gold-2);
  border-color: rgba(240, 45, 125, 0.5);
  background: var(--ivory-2);
  box-shadow: 0 3px 12px rgba(240, 45, 125, 0.12);
}

.wish-btn:not(.wish-text).on {
  background: rgba(255, 245, 249, 0.98);
  border-color: var(--gold);
  color: var(--gold-2);
}

.wish-heart,
.wish-btn:not(.wish-text) svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  display: block;
  stroke: currentColor;
  fill: none;
  pointer-events: none;
  transition: fill 0.18s ease, stroke 0.18s ease;
}

.wish-btn:not(.wish-text).on .wish-heart,
.wish-btn:not(.wish-text).on svg {
  fill: var(--gold-2);
  stroke: var(--gold-2);
}

.wish-btn.wish-text,
.pdp-actions .wish-btn.wish-text,
#p-wish.wish-btn.wish-text {
  position: relative;
  top: auto;
  right: auto;
  width: auto;
  min-width: 148px;
  height: 48px;
  border-radius: 0;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gold-line);
  box-shadow: none;
  transform: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.wish-btn.wish-text:hover,
.wish-btn.wish-text:focus-visible {
  border-color: var(--gold);
  color: var(--gold-2);
  background: transparent;
  transform: none;
}

.wish-btn.wish-text.on {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-2);
}

.wish-btn.wish-text .wish-heart,
.wish-btn.wish-text svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.wish-btn.wish-text.on .wish-heart,
.wish-btn.wish-text.on svg {
  fill: var(--gold-2);
  stroke: var(--gold-2);
}

@media (max-width: 767px) {
  .wish-btn:not(.wish-text) {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
}

.pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--purple-subtle);
  color: #6D28D9;
  border: 1px solid rgba(139, 92, 246, 0.22);
  padding: 5px 10px;
  border-radius: 4px;
}

.product-card h3 {
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.28;
  margin-bottom: var(--stack-xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.product-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: var(--stack-sm);
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-align: left;
}

.product-price {
  margin: 0;
  margin-top: auto;
  padding-top: 4px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: left;
}

.product-card .btn-add-cart {
  flex-shrink: 0;
  margin: 0;
  width: 100%;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid var(--charcoal);
  border-top: 1px solid rgba(240, 45, 125, 0.25);
  background: var(--charcoal);
  color: var(--ivory);
  opacity: 1;
  visibility: visible;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.product-card .btn-add-cart:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: #FFFFFF;
}

.product-card .btn-add-cart.is-added {
  background: var(--ok);
  border-color: var(--ok);
  color: var(--ivory-2);
}

.product-card .btn-add-cart.is-added:hover {
  background: var(--ok);
  border-color: var(--ok);
  color: var(--ivory-2);
}

.stars {
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: var(--stack-sm);
  text-align: left;
  line-height: 1.4;
}

.stars .muted {
  letter-spacing: 0.04em;
  font-size: 11px;
}

.card-actions,
.quick-view {
  display: none !important;
}

/* Promo banner */
.promo {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory-2);
  text-align: center;
}

.promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.42);
}

.promo-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.promo h2 {
  color: var(--ivory-2);
  font-size: clamp(40px, 5vw, 64px);
  margin: 12px 0 16px;
}

.promo p {
  margin-bottom: 28px;
  color: rgba(247, 243, 238, 0.85);
}

.promo .btn-ghost {
  border-color: var(--ivory-2);
  color: var(--ivory-2);
}

.promo .btn-ghost:hover {
  background: var(--ivory-2);
  color: var(--charcoal);
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ivory-2);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 24px 16px;
  box-shadow: var(--shadow);
}

.benefits.trust {
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.benefit {
  text-align: center;
  padding: 16px 20px;
  position: relative;
}

.benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--gold-line);
}

.benefit svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-2);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 14px;
}

.benefit h3 {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.benefit p {
  color: var(--muted);
  font-size: 13px;
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.story img {
  width: 100%;
  height: auto;
  min-height: 360px;
  max-height: 560px;
  object-fit: cover;
}

.story blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-style: italic;
  line-height: 1.4;
  margin: var(--stack-md) 0;
}

.story .content-stack .section-title {
  margin-top: var(--stack-sm);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.review {
  padding: 32px 28px;
  border: 1px solid var(--gold-line);
  background: var(--ivory-2);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-top img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.review h4 {
  font-family: var(--serif);
  font-size: 20px;
}

.review .city {
  font-size: 12px;
  color: var(--muted);
}

.review p {
  color: var(--ink);
  font-size: 14px;
}

/* Instagram */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ig-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.ig-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.28);
  opacity: 0;
  transition: opacity 0.4s;
}

.ig-item svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}

.ig-item:hover img {
  transform: scale(1.08);
}

.ig-item:hover::after,
.ig-item:hover svg {
  opacity: 1;
}

/* Newsletter */
.newsletter {
  text-align: center;
  padding: var(--section-y) 0;
  border-top: 1px solid var(--gold-line);
}

.newsletter .eyebrow+.section-title,
.newsletter .eyebrow+h2 {
  margin-top: var(--stack-sm);
}

.newsletter .section-title+.muted,
.newsletter h2+.muted {
  margin: var(--stack-sm) auto 0;
  max-width: 480px;
  line-height: 1.65;
}

.news-form {
  display: flex;
  max-width: 480px;
  margin: var(--stack-lg) auto 0;
  border-bottom: 1px solid var(--charcoal);
}

.news-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 0;
  outline: none;
  font-size: 14px;
}

.news-form button {
  letter-spacing: 0.2em;
  font-size: 11px;
  text-transform: uppercase;
  padding: 0 8px 0 16px;
  color: var(--gold-2);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #FFF0F6 0%, #FFE5F0 100%);
  color: var(--charcoal);
  border-top: 1px solid rgba(240, 45, 125, 0.16);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.site-footer .logo-mark {
  color: var(--charcoal);
}

.site-footer p {
  color: var(--muted);
  max-width: 280px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 600;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--stack-md);
}

.social-row a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(240, 45, 125, 0.22);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(240, 45, 125, 0.08);
  transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.2s;
}

.social-row a:hover {
  color: #FFFFFF;
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-2px);
}

.social-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}

.site-footer a {
  display: block;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  border-top: 1px solid rgba(240, 45, 125, 0.14);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom a {
  color: var(--muted);
}

.footer-bottom a:hover {
  color: var(--gold-2);
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

/* Page hero */
.page-hero {
  padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 40px);
  text-align: center;
}

.page-hero .eyebrow+h1 {
  margin-top: var(--stack-sm);
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
}

.page-hero h1+.muted,
.page-hero h1+.page-lead {
  margin: var(--stack-sm) auto 0;
  max-width: 540px;
  line-height: 1.65;
}

/* Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 4vw, 48px);
  padding-bottom: var(--page-bottom);
  align-items: start;
}

.shop-layout .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 28px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--stack-lg);
  flex-wrap: wrap;
}

.shop-toolbar>div:first-child {
  display: flex;
  align-items: center;
  gap: var(--stack-md);
  flex-wrap: wrap;
  min-width: 0;
}

#product-count,
#cat-count {
  line-height: 1.5;
}

.shop-toolbar select,
.shop-search {
  background: transparent;
  border: 1px solid var(--gold-line);
  padding: 10px 14px;
  min-width: 180px;
  outline: none;
}

.filter-group {
  margin-bottom: 28px;
}

.filter-group summary {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  margin-bottom: 12px;
}

.filter-group summary::-webkit-details-marker {
  display: none;
}

.filter-group h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-group input {
  accent-color: var(--charcoal);
}

.filter-mobile {
  display: none;
}

/* Product detail */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  padding: 40px 0 80px;
}

.gallery-main {
  background: var(--beige);
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumbs button {
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 1px solid transparent;
}

.thumbs button.active,
.thumbs button:hover {
  border-color: var(--gold);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-info .eyebrow {
  margin-bottom: 10px;
}

.pdp-info h1 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 8px;
}

.pdp-price {
  font-size: 22px;
  font-family: var(--serif);
  margin: 12px 0 18px;
}

.pdp-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 8px 0 28px;
  border-top: 1px solid var(--gold-line);
}

.pdp-specs>div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-line);
}

.pdp-specs dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.pdp-specs dd {
  font-size: 15px;
  color: var(--ink);
}

.pdp-info>p {
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 28px;
}

.field {
  margin-bottom: 18px;
}

.field span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-width: 44px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--gold-line);
  font-size: 13px;
}

.chip.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold-line);
}

.qty button {
  width: 40px;
  height: 40px;
}

.qty input {
  width: 44px;
  text-align: center;
  border: 0;
  background: transparent;
  outline: none;
}

.pdp-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 24px 0 36px;
}

.pdp-actions-primary {
  margin: 24px 0 0;
}

.pdp-actions-primary+.pdp-actions {
  margin-top: 12px;
}

.pdp-actions .icon-btn {
  border: 1px solid var(--gold-line);
}

.pdp-actions .wish-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 148px;
  height: 48px;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.accordion {
  border-top: 1px solid var(--gold-line);
}

.acc-item {
  border-bottom: 1px solid var(--gold-line);
}

.acc-item button {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.acc-item .acc-body {
  display: none;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.acc-item.open .acc-body {
  display: block;
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: clamp(32px, 4vw, 48px);
  padding-bottom: var(--page-bottom);
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gold-line);
}

.cart-item img {
  width: 120px;
  height: 150px;
  object-fit: cover;
}

.summary {
  background: var(--beige);
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.row.total {
  border-top: 1px solid var(--gold-line);
  margin-top: 14px;
  padding-top: 14px;
  font-size: 16px;
}

.linkish {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 14px;
}

.linkish:hover {
  color: var(--gold-2);
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 4vw, 48px);
  padding-bottom: var(--page-bottom);
  align-items: start;
}

.panel {
  background: var(--ivory-2);
  border: 1px solid var(--gold-line);
  padding: 32px;
  margin-bottom: 20px;
}

.panel h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label.lab {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

label.lab input,
label.lab textarea,
label.lab select {
  border: 1px solid var(--gold-line);
  background: var(--white);
  padding: 12px 14px;
  outline: none;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

label.lab input:focus,
label.lab textarea:focus {
  border-color: var(--gold);
}

.pay-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-line);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.error {
  color: var(--danger);
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.confirm {
  text-align: center;
  padding: 80px 24px;
}

.confirm h2 {
  font-size: 48px;
  margin: 12px 0;
}

/* Auth */
.auth-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 40px 0 96px;
}

.auth-card {
  width: min(460px, 100%);
  border: 1px solid var(--gold-line);
  background: var(--ivory-2);
  padding: 48px 40px;
}

.auth-head {
  text-align: center;
  margin-bottom: var(--stack-md);
}

.auth-head h1 {
  font-size: 40px;
  margin: var(--stack-xs) 0 0;
  line-height: 1.1;
}

.is-hidden {
  display: none !important;
}

.track-result {
  margin-top: var(--stack-md);
}

.summary .row.mt-md {
  margin-top: var(--stack-md);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 28px;
}

.auth-tabs button {
  padding: 12px;
  letter-spacing: 0.2em;
  font-size: 11px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-line);
}

.auth-tabs button.active {
  border-bottom-color: var(--charcoal);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: var(--stack-lg);
  align-items: start;
}

.info-list dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: var(--stack-md);
}

.info-list dt:first-child {
  margin-top: 0;
}

.info-list dd {
  color: var(--ink);
  line-height: 1.65;
  margin-top: 4px;
}

.map-embed {
  height: 420px;
  background: var(--beige);
  margin: var(--stack-md) 0 var(--page-bottom);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(0.95);
}

/* About */
.about-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 4vw, 56px);
  align-items: center;
  margin-bottom: var(--page-bottom);
}

.about-block:last-of-type {
  margin-bottom: 0;
}

.about-block .content-stack {
  gap: 16px;
}

.about-block .content-stack h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  margin-bottom: 4px;
}

.about-block .content-stack .muted {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.5;
}

.about-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(240, 45, 125, 0.1);
  color: var(--gold-2);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-block.reverse {
  direction: rtl;
}

.about-block.reverse>* {
  direction: ltr;
}

.about-img-wrap {
  width: 100%;
  max-width: 520px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  justify-self: center;
  box-shadow: 0 12px 32px rgba(194, 51, 101, 0.08);
}

.about-block img,
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.about-block h2 {
  font-size: clamp(32px, 4vw, 40px);
  margin: 0;
  line-height: 1.15;
}

/* Wishlist */
.wish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 96px;
}

.wish-card {
  border: 1px solid var(--gold-line);
  background: var(--ivory-2);
}

.wish-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.wish-card .body {
  padding: 20px;
}

.stock {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ok);
  margin: 8px 0 14px;
}

.empty {
  text-align: center;
  padding: 80px 20px 120px;
}

.empty h2 {
  margin: 10px 0 12px;
}

.empty .muted {
  max-width: 360px;
  margin: 0 auto 28px;
}

.bag-empty {
  text-align: center;
  padding: 48px 12px 32px;
}

.bag-empty h3 {
  font-size: 28px;
  margin: 8px 0 10px;
}

.bag-empty .muted {
  margin-bottom: 24px;
  font-size: 14px;
}

/* Overlay / modal / toast */
.search-overlay,
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 18, 0.42);
  z-index: 100;
  display: none;
  place-items: start center;
  padding: 10vh 24px 40px;
  overflow: auto;
}

.search-overlay.open,
.qv-overlay.open {
  display: grid;
}

.search-box,
.qv-box {
  width: min(920px, 100%);
  background: var(--ivory-2);
  padding: 32px;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--charcoal);
  background: transparent;
  font-family: var(--serif);
  font-size: 32px;
  outline: none;
  padding-bottom: 12px;
  padding-right: 72px;
}

.search-clear {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.search-clear[hidden] {
  display: none;
}

.search-suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.search-chip {
  border: 1px solid var(--gold-line);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.search-chip:hover,
.search-chip:focus-visible {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(240, 45, 125, 0.08);
}

.search-empty {
  padding: 28px 0 8px;
}

.search-empty h3 {
  font-size: 28px;
  margin: 8px 0 10px;
}

.search-results {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.search-hit {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold-line);
}

.search-hit img {
  width: 64px;
  height: 80px;
  object-fit: cover;
}

.qv-overlay {
  place-items: center;
  padding: 5vh 24px;
}

.qv-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  width: min(1040px, 100%);
  background: var(--ivory-2);
  padding: 0;
  border: 1px solid var(--gold-line);
  max-height: min(88vh, 720px);
  min-height: 400px;
  overflow: hidden;
}

.qv-copy {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  overflow: auto;
}

.qv-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 40px;
  padding: 0 8px;
}

.qv-copy h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 10px 0 14px;
}

.qv-copy .pdp-price {
  margin: 8px 0 18px;
}

.qv-copy .muted {
  margin-bottom: 28px;
}

.qv-specs {
  margin: 0 0 18px;
}

.qv-copy .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.qv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.qv-actions .btn,
.qv-actions .btn-ghost {
  flex: 1 1 auto;
  min-width: 140px;
}

.qv-actions .btn-full {
  flex: 1 1 100%;
  width: 100%;
}

.qv-close:hover,
.qv-close:focus-visible {
  color: var(--gold-2);
}

.qv-media {
  background: var(--beige);
  min-height: 0;
  overflow: hidden;
  cursor: zoom-in;
  align-self: stretch;
  position: relative;
}

.qv-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.gallery-open {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 14px;
  background: rgba(26, 22, 18, 0.62);
  color: var(--ivory);
  border: 1px solid rgba(247, 243, 238, 0.22);
  backdrop-filter: blur(6px);
}

.gallery-open:hover,
.gallery-open:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.look-open-btn {
  margin-top: 14px;
  width: 100%;
}

/* Full-screen product image viewer */
.zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: none;
  background: #1c1917;
  overflow: hidden;
}

.zoom-overlay.open {
  display: block;
}

.zoom-overlay.is-closing .look-viewer {
  animation: lookOut 0.22s ease forwards;
}

@keyframes lookOut {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.98);
  }
}

body.look-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.look-viewer {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #1c1917;
  animation: lookIn 0.25s ease;
}

@keyframes lookIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.look-head {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 4px;
  min-height: 52px;
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
}

.look-back {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  font-size: 22px;
  line-height: 1;
  color: rgba(247, 243, 238, 0.88);
  background: none;
}

.look-back:hover,
.look-back:focus-visible {
  color: var(--gold);
}

.look-title {
  font-family: var(--serif);
  font-size: clamp(14px, 2.4vw, 17px);
  font-weight: 500;
  color: var(--ivory);
  text-align: center;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.look-count {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(247, 243, 238, 0.62);
  padding-right: 4px;
  min-width: 52px;
  text-align: right;
}

.look-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
  position: relative;
}

.look-stage {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.look-track {
  display: flex;
  height: 100%;
  transition: transform 0.28s ease;
  will-change: transform;
}

.look-slide {
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  box-sizing: border-box;
}

.look-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.look-arrow {
  flex: 0 0 auto;
  align-self: center;
  width: 52px;
  height: 52px;
  margin: 0 4px;
  border: 1px solid rgba(247, 243, 238, 0.22);
  color: var(--ivory);
  font-size: 28px;
  line-height: 1;
  background: rgba(28, 25, 23, 0.55);
  z-index: 2;
}

.look-arrow:hover,
.look-arrow:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.look-foot {
  flex: 0 0 auto;
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(247, 243, 238, 0.08);
  display: flex;
  justify-content: center;
}

.look-thumbs {
  display: flex;
  gap: 10px;
  max-width: min(920px, 100%);
  overflow-x: auto;
  padding-bottom: 2px;
}

.look-thumbs button {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.look-thumbs button.active,
.look-thumbs button:hover {
  border-color: var(--gold);
  opacity: 1;
}

.look-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .look-arrow {
    display: none;
  }

  .look-foot {
    display: none;
  }

  .look-head {
    padding: 6px 10px 6px 2px;
  }

  .look-slide {
    padding: 0 4px;
  }
}

@media (min-width: 768px) {
  .look-body {
    padding: 0 8px;
  }

  .look-slide {
    padding: 8px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .look-viewer {
    animation: none;
  }

  .look-track {
    transition: none;
  }
}

.toast {
  position: fixed;
  top: calc(var(--nav-h) + 12px);
  right: clamp(16px, 4vw, 28px);
  z-index: 120;
  background: var(--ivory-2);
  border: 1px solid var(--gold);
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  box-shadow: var(--shadow);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.drawer-foot .btn+.btn-text,
.drawer-foot .btn-text {
  margin-top: var(--stack-md);
  display: inline-flex;
}

.drawer-foot .row.total {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease) forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.observe {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.observe.in {
  opacity: 1;
  transform: none;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--gold-line);
  padding: 14px 0;
  background: var(--ivory-2);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide 28s linear infinite;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Help / legal */
.prose {
  max-width: 760px;
  margin: 0 auto var(--page-bottom);
  padding-inline: var(--page-pad-x);
}

.prose h2 {
  font-size: 32px;
  margin: 36px 0 12px;
}

.prose p,
.prose li {
  color: var(--muted);
  margin-bottom: 12px;
}

.prose ul {
  padding-left: 18px;
  list-style: disc;
}

@media (max-width: 1280px) {
  .nav-links {
    gap: 10px;
  }

  .nav-links>a,
  .nav-item>a {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 1024px) {
  .nav-inner {
    gap: 12px;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .logo {
    flex: 0 0 auto;
    text-align: left;
    margin-right: auto;
  }

  .nav-actions {
    flex-shrink: 0;
    gap: 2px;
    display: flex;
    align-items: center;
  }

  .nav-actions .icon-btn[href*="wishlist"],
  .nav-actions .icon-btn[href*="login"] {
    display: none;
  }

  .menu-toggle {
    display: grid;
    order: initial;
    flex-shrink: 0;
    margin-left: 4px;
  }
}

/* Responsive */
@media (max-width: 1200px) {

  .product-grid,
  .shop-layout .product-grid,
  .cat-stage .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metal-grid,
  .jewellery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metal-card:nth-child(2),
  .metal-card:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero,
  .signature,
  .story,
  .pdp,
  .shop-layout,
  .cart-layout,
  .checkout-layout,
  .contact-grid,
  .about-block,
  .about-block.reverse,
  .qv-box {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .hero {
    max-height: none;
  }

  .qv-media,
  .about-img-wrap {
    min-height: clamp(300px, 45vh, 440px);
    height: auto;
  }

  .qv-box img,
  .qv-media img {
    min-height: 240px;
    max-height: 42vh;
  }

  .qv-copy {
    padding: 28px 24px 36px;
  }

  .hero-side {
    position: relative;
    top: 0;
    left: 0;
    flex: 0 0 auto;
    width: 100%;
    min-height: 56vw;
    height: min(58vw, 420px);
    margin-top: var(--nav-h);
    order: -1;
    background: #f9e1de;
  }

  .hero-side img,
  .hero-img-wrap img {
    object-fit: cover;
    object-position: 78% 22%;
    width: 100%;
    height: 100%;
    transform: none !important;
  }

  .hero-parallax,
  .hero-img-wrap {
    inset: 0;
  }

  .hero-frame {
    inset: 14px;
  }

  .hero-copy {
    min-height: 0;
    max-width: none;
    width: 100%;
    align-items: flex-start;
    padding: 28px 7vw 48px;
    background: #f9e1de;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(32px, 8.5vw, 44px);
    line-height: 1.18;
  }

  .hero p {
    max-width: 36em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-caption {
    color: rgba(247, 243, 238, 0.75);
  }

  .cat-grid,
  .metal-grid,
  .jewellery-grid,
  .benefits,
  .footer-grid,
  .wish-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .benefits.trust {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid,
  .shop-layout .product-grid,
  .cat-stage .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .shop-layout aside {
    display: none;
  }

  .shop-layout aside.open {
    display: block;
    background: var(--ivory-2);
    border: 1px solid var(--gold-line);
    padding: 24px;
    margin-bottom: 8px;
  }

  .filter-mobile {
    display: inline-flex;
    margin-right: 12px;
  }

  .pdp-actions {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .signature-copy {
    padding: 56px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 72px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .container,
  .container-wide,
  .nav-inner,
  .cat-page {
    padding-inline: 16px;
  }

  .shop-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .shop-cat-copy {
    padding: 14px 12px 16px;
  }

  .shop-cat-copy h3 {
    font-size: 18px;
  }

  .product-card .btn-add-cart {
    padding: 12px 10px;
    font-size: 10px;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

  .product-grid,
  .shop-layout .product-grid {
    gap: 22px 12px;
  }

  .product-card h3 {
    font-size: 17px;
  }

  .product-body {
    padding: 14px 12px 16px;
  }

  .product-meta {
    font-size: 11px;
  }

  .section-head .btn-text {
    align-self: flex-start;
  }

  .nav-inner {
    gap: 8px;
  }

  .reviews-grid,
  .cat-grid,
  .metal-grid,
  .jewellery-grid,
  .benefits,
  .footer-grid,
  .wish-grid {
    grid-template-columns: 1fr;
  }

  .benefits.trust {
    grid-template-columns: 1fr 1fr;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cart-item {
    grid-template-columns: 88px 1fr;
  }

  .cart-item>div:last-child {
    grid-column: 2;
  }

  .section,
  .intro {
    padding: clamp(56px, 10vw, 72px) 0;
  }

  .card-actions,
  .quick-view,
  .wish-btn {
    opacity: 1;
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .auth-card {
    padding: 36px 24px;
  }

  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 520px) {
  .benefits.trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .product-grid {
    gap: 20px 12px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .logo-mark {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
}

/* ---------- Catalogue (sidebar categories) ---------- */
.cat-page {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 0 clamp(24px, 4vw, 48px);
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--page-pad-x);
  padding-top: var(--stack-lg);
  padding-bottom: var(--page-bottom);
  align-items: start;
}

.cat-menu-btn {
  display: none;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  border: 1px solid var(--gold-line);
  background: var(--ivory-2);
  padding: 12px 18px;
  margin-bottom: 20px;
}

.cat-rail-close {
  display: none;
}

body.cat-nav-open {
  overflow: hidden;
}

.cat-rail {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  align-self: start;
  max-height: calc(100vh - var(--nav-h) - 40px);
  overflow-y: auto;
  padding: 8px 28px 40px 0;
  border-right: 1px solid var(--gold-line);
}

.cat-rail .eyebrow {
  margin-bottom: 28px;
}

.cat-nav {
  display: flex;
  flex-direction: column;
}

.cat-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 16px 0 16px 14px;
  border-bottom: 1px solid var(--gold-line);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: color 0.4s var(--ease), font-weight 0.3s, letter-spacing 0.4s;
}

.cat-nav-item:last-child {
  border-bottom: 0;
}

.cat-nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}

.cat-nav-icon {
  width: 18px;
  height: 18px;
  color: var(--muted-2);
  flex-shrink: 0;
  transition: color 0.4s;
}

.cat-nav-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
}

.cat-nav-item:hover {
  color: var(--gold-2);
}

.cat-nav-item:hover .cat-nav-icon {
  color: var(--gold-2);
}

.cat-nav-item.is-active {
  color: var(--gold-2);
  font-weight: 500;
}

.cat-nav-item.is-active::before {
  transform: scaleY(1);
}

.cat-nav-item.is-active .cat-nav-icon {
  color: var(--gold-2);
}

.cat-rail-backdrop,
.cat-filter-backdrop {
  display: none;
}

.cat-stage {
  min-width: 0;
}

.cat-banner {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--beige);
  margin-bottom: 36px;
}

.cat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease), clip-path 0.8s var(--ease);
}

.cat-banner img.is-in {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}

.cat-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(26, 22, 18, 0.55) 0%,
      rgba(26, 22, 18, 0.12) 55%,
      rgba(26, 22, 18, 0.08) 100%);
  pointer-events: none;
}

.cat-banner-copy {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  z-index: 1;
  color: var(--ivory-2);
}

.cat-banner-copy .eyebrow {
  color: var(--gold-3);
  margin-bottom: 8px;
}

.cat-banner-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--ivory-2);
  margin-bottom: 6px;
}

.cat-banner-copy p {
  max-width: 420px;
  color: rgba(247, 243, 238, 0.82);
  font-size: 14px;
}

.cat-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin-bottom: 28px;
}

.cat-sub {
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 8px 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.35s, border-color 0.35s;
}

.cat-sub:hover {
  color: var(--charcoal);
}

.cat-sub.is-active {
  color: var(--gold-2);
  border-bottom-color: var(--gold);
  font-weight: 500;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gold-line);
}

.cat-toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cat-toolbar select {
  background: transparent;
  border: 1px solid var(--gold-line);
  padding: 10px 14px;
  min-width: 200px;
  outline: none;
}

.cat-stage .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 28px;
}

.cat-stage .quick-view,
.cat-stage .card-actions {
  display: none !important;
}

.cat-stage .wish-btn {
  opacity: 1;
  transform: none;
}

.cat-stage .product-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  z-index: 2;
}

.cat-stage .product-card:hover .product-media::after {
  transform: scaleX(1);
}

.cat-filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: var(--ivory-2);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(26, 22, 18, 0.12);
}

.cat-filter-drawer.open {
  transform: none;
}

.cat-filter-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
}

.cat-filter-drawer .drawer-foot {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--gold-line);
}

.cat-filter-drawer .btn-text {
  margin-top: 16px;
}

@media (max-width: 1200px) {
  .cat-stage .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .cat-page {
    display: block;
    width: calc(100% - 32px);
    padding: 16px 0 72px;
  }

  .cat-menu-btn {
    display: inline-flex;
    min-height: 48px;
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 12px;
  }

  .cat-rail {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(340px, 88vw);
    max-height: none;
    z-index: 160;
    background: var(--ivory-2);
    padding: calc(72px + env(safe-area-inset-top, 0px)) 28px 40px;
    border-right: 1px solid var(--gold-line);
    transform: translateX(-102%);
    transition: transform 0.45s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cat-rail.open {
    transform: none;
  }

  .cat-rail-close {
    display: block;
    position: absolute;
    top: calc(20px + env(safe-area-inset-top, 0px));
    right: 22px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    min-height: 44px;
    padding: 0 8px;
  }

  .cat-nav-item {
    min-height: 52px;
    font-size: 13px;
    padding: 14px 0 14px 16px;
  }

  .cat-rail-backdrop,
  .cat-filter-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(26, 22, 18, 0.42);
    z-index: 155;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .cat-filter-backdrop {
    z-index: 165;
  }

  .cat-rail-backdrop.open,
  .cat-filter-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .cat-stage .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .cat-banner {
    height: 190px;
    margin-bottom: 22px;
  }

  .cat-banner-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cat-banner-copy h1 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .cat-banner-copy p {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cat-subs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -4px 20px;
    padding-bottom: 8px;
  }

  .cat-subs::-webkit-scrollbar {
    display: none;
  }

  .cat-sub {
    flex: 0 0 auto;
    padding: 10px 8px;
    min-height: 44px;
  }

  .cat-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cat-toolbar-left {
    justify-content: space-between;
  }

  .cat-toolbar select,
  .shop-toolbar select,
  .shop-search {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .cat-filter-drawer {
    width: 100%;
    z-index: 170;
  }

  .cat-stage .product-card h3 {
    font-size: 18px;
  }

  .cat-stage .wish-btn {
    opacity: 1;
    transform: none;
  }

  .metal-card,
  .metal-card.metal-gold,
  .metal-card.metal-silver,
  .metal-card.metal-diamond {
    min-height: 340px;
    margin-top: 0 !important;
  }

  .jewellery-grid .cat-card,
  .cat-card {
    min-height: 280px;
  }

  .cat-card h3 {
    font-size: 26px;
  }
}

@media (min-width: 993px) {
  .cat-filter-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(26, 22, 18, 0.42);
    z-index: 145;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .cat-filter-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .cat-stage .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .cat-stage .product-card h3 {
    font-size: 16px;
  }

  .cat-banner {
    height: 168px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (min-width: 1440px) {

  .shop-layout .product-grid,
  .cat-stage .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1600px) {

  .product-grid,
  .shop-layout .product-grid,
  .cat-stage .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .nav-inner {
    gap: 20px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links > a,
  .nav-item > a {
    font-size: 15.5px;
  }
}