:root {
  --color-white: #fffdf8;
  --color-cream: #f7efe2;
  --color-beige: #e8d7bf;
  --color-gold: #b88935;
  --color-gold-dark: #8f6826;
  --color-emerald: #047857;
  --color-emerald-dark: #065f46;
  --color-emerald-soft: #dff4ec;
  --color-charcoal: #2c2520;
  --color-muted: #74685f;
  --color-soft: #fbf7ef;
  --shadow-soft: 0 20px 50px rgba(66, 48, 28, 0.12);
  --shadow-card: 0 16px 36px rgba(55, 43, 30, 0.1);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 86px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-charcoal);
  background: var(--color-white);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(184, 137, 53, 0.16);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-mark {
  flex: 0 0 auto;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--color-gold-dark);
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--color-emerald);
  border-radius: var(--radius);
  background: var(--color-emerald);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 58px 0 72px;
  background:
    radial-gradient(circle at 80% 18%, rgba(184, 137, 53, 0.14), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f8efe0 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: 56px;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: 6rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 34px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary,
.btn-card {
  color: white;
  background: var(--color-emerald);
  box-shadow: 0 12px 26px rgba(4, 120, 87, 0.22);
}

.btn-primary:hover,
.btn-card:hover {
  background: var(--color-emerald-dark);
}

.btn-secondary {
  color: white;
  border-color: var(--color-emerald);
  background: var(--color-emerald);
}

.btn-secondary:hover {
  background: var(--color-emerald-dark);
}

.hero-showcase {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(184, 137, 53, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow-soft);
}

.hero-showcase img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.hero-badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  min-width: 150px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-card);
}

.hero-badge span {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.filter-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 15;
  padding: 14px 0;
  border-block: 1px solid rgba(184, 137, 53, 0.14);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.filter-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
}

.filter-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-arrow {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-emerald);
  border-radius: 50%;
  color: white;
  background: var(--color-emerald);
  box-shadow: 0 10px 22px rgba(4, 120, 87, 0.16);
  cursor: pointer;
}

.filter-arrow span {
  width: 11px;
  height: 11px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.filter-arrow-next span {
  transform: rotate(-135deg);
}

.filter-arrow:hover {
  background: var(--color-emerald-dark);
}

.filter-arrow:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.filter-arrow:disabled:hover {
  background: var(--color-emerald);
}

.filter-btn {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-height: 42px;
  border: 1px solid var(--color-emerald);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--color-emerald);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: white;
  border-color: var(--color-emerald-dark);
  background: var(--color-emerald-dark);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 38px;
}

.section-heading h2 {
  font-size: 3.5rem;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--color-muted);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(184, 137, 53, 0.14);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 2px 8px rgba(55, 43, 30, 0.04);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

/* Image protection is a deterrent, not full protection. Any image visible in a browser can still be captured. */
.product-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f6efe6;
  user-select: none;
}

.product-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}

.product-image-wrap img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}


.product-content {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 20px;
}

.product-category {
  color: var(--color-gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stock-badge,
.sold-out-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.stock-badge.in-stock {
  color: var(--color-emerald-dark);
  background: var(--color-emerald-soft);
}

.stock-badge.low-stock {
  color: #8a5a00;
  background: #fff2cc;
}

.stock-badge.sold-out,
.stock-badge.hidden,
.sold-out-badge {
  color: #8a1f11;
  background: #ffe2dc;
}



.sold-out-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
}

.product-card.is-sold-out img {
  opacity: 0.64;
}

.btn-card:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.catalog-message {
  grid-column: 1 / -1;
  border: 1px solid rgba(184, 137, 53, 0.16);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--color-muted);
  background: rgba(255, 253, 248, 0.86);
  text-align: center;
}

.product-content h3 {
  margin: 8px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.product-content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.product-meta {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.product-meta strong {
  font-size: 1.12rem;
}

.btn-card {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.why-section {
  background: linear-gradient(180deg, var(--color-soft), #fffaf1);
}

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

.feature,
.step {
  border: 1px solid rgba(184, 137, 53, 0.14);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 253, 248, 0.82);
}

.feature span,
.step strong {
  color: var(--color-gold-dark);
  font-weight: 800;
}

.feature h3,
.step h3 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
}

.feature p,
.step p {
  margin: 0;
  color: var(--color-muted);
}

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

.footer {
  padding: 42px 0;
  color: white;
  background: var(--color-charcoal);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logotype {
  display: inline-flex;
  align-items: center;
  max-width: min(320px, 100%);
}

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

.footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

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

  .section-heading h2 {
    font-size: 3rem;
  }

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

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: 34px;
  }

  .feature-grid {
    gap: 16px;
  }

  .feature,
  .step {
    padding: 22px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 68px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 78px);
  }

  .section {
    padding: 64px 0;
  }

  .nav {
    gap: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - var(--header-height) - 24px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(184, 137, 53, 0.18);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
  }

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

  .nav-links a {
    min-height: 46px;
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 60px;
  }

  .hero-inner,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .hero-copy p:not(.eyebrow) {
    margin: 18px 0 28px;
    font-size: 1rem;
  }

  .hero-showcase {
    width: min(100%, 460px);
    margin-inline: auto;
  }

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

@media (max-width: 560px) {
  html {
    scroll-padding-top: calc(var(--header-height) + 72px);
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 54px 0;
  }

  .logo {
    font-size: 1.08rem;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 38px 0 52px;
  }

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

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 2.3rem;
  }

  .btn-primary,
  .footer .btn {
    width: 100%;
  }

  .filter-bar {
    padding: 10px 0;
  }

  .filter-shell {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .filter-arrow {
    width: 38px;
    height: 38px;
  }

  .filter-btn {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.9rem;
  }

  .hero-showcase {
    padding: 10px;
  }

  .hero-badge {
    right: 20px;
    bottom: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-content {
    min-height: auto;
    padding: 18px;
  }

  .product-content h3 {
    font-size: 1.28rem;
  }

  .feature,
  .step {
    padding: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .logo {
    gap: 8px;
    font-size: 1rem;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

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

  .section-heading h2 {
    font-size: 2.05rem;
  }

  .hero-badge {
    right: 14px;
    bottom: 14px;
    min-width: 132px;
    padding: 12px 14px;
  }

  .btn {
    padding-inline: 16px;
  }
}

@media (hover: none) {
  .btn:hover,
  .product-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* Phase 2 luxury catalogue enhancements */
.wishlist-nav-link span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--color-emerald);
  font-size: 0.75rem;
}

.catalog-controls {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.search-field,
.advanced-filters label {
  display: grid;
  gap: 7px;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.search-field input,
.advanced-filters select {
  min-height: 46px;
  border: 1px solid rgba(184, 137, 53, 0.22);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--color-charcoal);
  background: white;
  font: inherit;
}

.advanced-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
}

.product-open {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: var(--color-emerald);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.wishlist-btn.active {
  color: white;
  border-color: var(--color-emerald);
  background: var(--color-emerald);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 26px;
  margin-top: 8px;
}

.premium-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: var(--color-gold-dark);
  background: rgba(184, 137, 53, 0.14);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rating-line {
  margin-top: 10px;
  color: var(--color-gold-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.collection-card {
  overflow: hidden;
  border: 1px solid rgba(184, 137, 53, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-card);
}

.collection-card img,
.instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.collection-card div {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.collection-card h3,
.collection-card p {
  margin: 0;
}

.instagram-grid a {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.instagram-follow {
  margin-top: 22px;
}

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

.mini-product {
  border: 1px solid rgba(184, 137, 53, 0.14);
  border-radius: var(--radius);
  padding: 8px;
  color: var(--color-charcoal);
  background: white;
  cursor: pointer;
  text-align: left;
}

.mini-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
}

.mini-product span {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 22px;
}

.product-modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 14, 0.58);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  width: min(100%, 1080px);
  max-height: calc(100svh - 44px);
  margin: 0 auto;
  overflow: auto;
  border-radius: var(--radius);
  padding: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  animation: modalFade 220ms ease;
}

.modal-close,
.modal-arrow {
  border: 0;
  color: white;
  background: var(--color-emerald);
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
}

.modal-gallery {
  position: relative;
}

.modal-image-stage {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-cream);
}

.modal-image-stage img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.modal-image-stage:hover img,
.modal-image-stage.zoomed img {
  transform: scale(1.65);
}

.modal-arrow {
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
}

.modal-prev { left: 10px; }
.modal-next { right: 10px; }

.modal-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
}

.modal-thumbs button {
  flex: 0 0 72px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  cursor: pointer;
}

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

.modal-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.modal-info {
  display: grid;
  align-content: start;
  gap: 16px;
}

.modal-info h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.related-products {
  grid-column: 1 / -1;
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: calc(var(--stagger, 0) * 40ms);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.wishlist-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5rem);
}

@keyframes modalFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .collection-grid,
  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .modal-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .advanced-filters,
  .collection-grid,
  .instagram-grid,
  .mini-product-row {
    grid-template-columns: 1fr;
  }

  .product-modal {
    padding: 10px;
  }

  .modal-panel {
    max-height: calc(100svh - 20px);
    padding: 14px;
  }
}

/* Phase 4 luxury brand experience */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-trust-strip span,
.trust-list span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(184, 137, 53, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--color-charcoal);
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.luxury-intro {
  padding-bottom: 42px;
}

.luxury-rails {
  display: grid;
  gap: 18px;
}

.product-rail {
  border: 1px solid rgba(184, 137, 53, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-card);
}

.rail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.rail-heading h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
}

.rail-heading a,
.text-link {
  color: var(--color-emerald-dark);
  font-weight: 900;
}

.premium-rail .mini-product strong {
  display: block;
  margin-top: 4px;
  color: var(--color-emerald-dark);
  font-size: 0.9rem;
}

.product-card,
.mini-product,
.collection-card,
.review-card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.mini-product:hover,
.collection-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 120, 87, 0.32);
  box-shadow: var(--shadow-card);
}

.wishlist-btn,
.wishlist-detail {
  transition: transform 170ms ease, background 170ms ease, color 170ms ease;
}

.wishlist-btn:active,
.wishlist-detail:active,
.btn:active {
  transform: scale(0.96);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 36px;
  align-items: start;
}

.detail-gallery {
  position: relative;
  min-width: 0;
}

.detail-stage {
  overflow: hidden;
  border: 1px solid rgba(184, 137, 53, 0.16);
  border-radius: var(--radius);
  background: var(--color-cream);
}

.detail-stage img {
  width: 100%;
  max-height: 680px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  transition: opacity 180ms ease, transform 220ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-nav {
  position: absolute;
  top: 45%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--color-emerald);
  font-size: 1.6rem;
  cursor: pointer;
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.detail-info {
  display: grid;
  gap: 16px;
}

.detail-info h1,
.collection-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.04;
}

.detail-info p {
  margin: 0;
  color: var(--color-muted);
}

.detail-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-price-row strong {
  font-size: 1.8rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.detail-reviews {
  margin-top: 58px;
}

.review-card,
.insight-card {
  border: 1px solid rgba(184, 137, 53, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: white;
}

.review-card + .review-card {
  margin-top: 12px;
}

.review-card span {
  color: var(--color-gold-dark);
  font-weight: 900;
}

.collection-hero {
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-charcoal), #16372e);
  color: white;
}

.collection-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.collection-hero .eyebrow {
  color: #f3c767;
}

.collection-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: center;
}

.collection-hero-inner img {
  width: 220px;
  opacity: 0.42;
}

.sticky-whatsapp-cta {
  display: none;
}

@media (max-width: 960px) {
  .product-detail-layout,
  .collection-hero-inner {
    grid-template-columns: 1fr;
  }

  .collection-hero-inner img {
    width: 150px;
  }
}

@media (max-width: 620px) {
  body[data-product-detail-page] {
    padding-bottom: 86px;
  }

  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .detail-actions .btn {
    width: 100%;
  }

  .product-rail {
    padding: 14px;
  }

  .premium-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .premium-rail .mini-product {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .detail-stage img {
    max-height: 520px;
  }

  .sticky-whatsapp-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 35;
    display: block;
  }

  .sticky-whatsapp-cta .btn {
    width: 100%;
    box-shadow: 0 16px 34px rgba(4, 120, 87, 0.34);
  }
}

/* Product card images should crop to fill their card image area without leaving empty space. */
.product-card .product-image-wrap {
  height: 260px;
  border-radius: 18px 18px 0 0;
}

.product-card .product-image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.collection-card img,
.mini-product img,
.instagram-grid img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 780px) {
  .product-card .product-image-wrap {
    height: 280px;
  }
}

@media (max-width: 420px) {
  .product-card .product-image-wrap {
    height: 250px;
  }
}

/* Premium full-screen loader for The Exclusive. */
body.is-loading {
  overflow: hidden;
  height: 100vh;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff8f3;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  padding: 32px;
}

.loader-logo {
  color: #2c2520;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
}

.loader-content p {
  margin: 14px 0 0;
  color: #8b6835;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loader-line {
  width: 160px;
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, #b88935, transparent);
  transform-origin: center;
  animation: luxuryLoader 1.2s infinite ease-in-out;
}

@keyframes luxuryLoader {
  0% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-line {
    animation: none;
  }
}
