:root {
  --black: #070605;
  --black-soft: #12100d;
  --cream: #fff8ec;
  --ivory: #fffdf8;
  --sand: #eee1c9;
  --gold: #d8b76b;
  --gold-deep: #9a6f27;
  --rose: #d6a18d;
  --ink: #181310;
  --muted: #776b61;
  --line: rgba(154, 111, 39, 0.22);
  --shadow: 0 28px 80px rgba(18, 13, 7, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.view-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.topline {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 80px);
  min-height: 36px;
  padding: 9px 16px;
  background: var(--black-soft);
  color: rgba(255, 248, 236, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topline span:nth-child(2) {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 6, 5, 0.95);
  border-bottom: 1px solid rgba(216, 183, 107, 0.22);
  backdrop-filter: blur(18px);
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1220px, calc(100% - 32px));
  min-height: 104px;
  margin: 0 auto;
}

.brand img {
  width: min(230px, 46vw);
  height: auto;
  max-height: 88px;
  object-fit: contain;
}

.header-actions {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(216, 183, 107, 0.28);
  color: var(--gold);
}

.header-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mobile-menu {
  position: absolute;
  left: 0;
  display: none;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 183, 107, 0.38);
  background: transparent;
  color: var(--gold);
}

.icon-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 46px);
  min-height: 50px;
  padding: 0 16px;
  background: var(--ivory);
  border-top: 1px solid rgba(216, 183, 107, 0.18);
}

.category-nav a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.category-nav a:hover {
  color: var(--gold-deep);
}

.gold-button,
.outline-button,
.outline-dark-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gold-button {
  background: linear-gradient(135deg, #e7c878, #a7772d);
  color: #fffaf2;
  box-shadow: 0 16px 34px rgba(154, 111, 39, 0.25);
}

.gold-button.small {
  min-height: 40px;
  padding: 0 16px;
}

.outline-button {
  border-color: rgba(255, 248, 236, 0.34);
  background: rgba(255, 248, 236, 0.05);
  color: var(--cream);
}

.outline-dark-button {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.ghost-button {
  min-height: 40px;
  padding: 0 8px;
  background: transparent;
  color: rgba(255, 248, 236, 0.78);
}

.gold-button:hover,
.outline-button:hover,
.outline-dark-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  min-height: 740px;
  padding: clamp(38px, 6vw, 84px) max(24px, calc((100vw - 1220px) / 2));
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.99), rgba(7, 6, 5, 0.94) 48%, rgba(7, 6, 5, 0.74)),
    radial-gradient(circle at 72% 28%, rgba(216, 183, 107, 0.22), transparent 32%),
    var(--black);
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.collection-toolbar h2,
.editorial-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 7vw, 102px);
  line-height: 0.92;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 248, 236, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.hero-card-main {
  position: absolute;
  inset: 0 7% 0 0;
  overflow: hidden;
  border: 1px solid rgba(216, 183, 107, 0.24);
  background: #1a1511;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.42);
}

.hero-card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7, 6, 5, 0.62));
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: -34px;
  bottom: 34px;
  z-index: 2;
  width: min(390px, calc(100% - 40px));
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: rgba(7, 6, 5, 0.82);
  backdrop-filter: blur(16px);
}

.floating-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  line-height: 1.1;
}

.floating-card em {
  display: block;
  margin-top: 12px;
  color: rgba(255, 248, 236, 0.78);
  font-style: normal;
  font-weight: 900;
}

.mini-stack {
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.mini-stack button {
  overflow: hidden;
  width: 92px;
  height: 104px;
  padding: 0;
  border: 1px solid rgba(216, 183, 107, 0.36);
  background: var(--black-soft);
  cursor: pointer;
}

.mini-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  transform: translateY(-38px);
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.benefits div {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.benefits div:last-child {
  border-right: 0;
}

.benefits strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.benefits span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 68px max(24px, calc((100vw - 1220px) / 2));
}

.product-page-mode .hero,
.product-page-mode .benefits,
.product-page-mode .mood-section,
.product-page-mode .collection-section,
.product-page-mode .editorial,
.product-page-mode .payment-section,
.product-page-mode .social-section {
  display: none;
}

.product-page-section {
  padding: clamp(36px, 6vw, 78px) max(20px, calc((100vw - 1220px) / 2));
  background: var(--ivory);
}

.product-page-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.product-page-gallery {
  display: grid;
  gap: 14px;
}

.product-page-main-image {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border: 1px solid rgba(154, 111, 39, 0.2);
  background: var(--sand);
}

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

.product-page-thumbs button {
  padding: 0;
  border: 1px solid rgba(154, 111, 39, 0.22);
  background: #fff;
  cursor: pointer;
}

.product-page-thumbs button.active {
  border-color: var(--gold-deep);
}

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

.product-page-copy {
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

.product-back-link {
  justify-self: start;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-page-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.product-page-price {
  color: var(--gold-deep);
  font-size: 22px;
}

.product-page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sale-badge-inline,
.stock-badge-inline {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: #c0182b;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stock-badge-inline {
  background: #9c2929;
}

.stock-badge-inline.available {
  background: var(--black);
  color: var(--gold);
}

.product-page-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.product-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.product-page-note {
  max-width: 680px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.collection-toolbar h2,
.editorial-copy h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

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

.mood-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--sand);
  cursor: pointer;
}

.mood-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.mood-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.02) 38%, rgba(7, 6, 5, 0.76));
}

.mood-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

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

.collection-section {
  background: var(--ivory);
}

.collection-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.toolbar-controls {
  display: flex;
  align-items: end;
  gap: 12px;
}

.search-box {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-box input,
.toolbar-controls select {
  min-height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.search-box input {
  width: min(320px, 46vw);
  padding: 0 14px;
}

.toolbar-controls select {
  padding: 0 12px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.filter-chip.active {
  background: var(--black);
  color: var(--gold);
}

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

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(154, 111, 39, 0.18);
  background: #fff;
}

.product-media {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  transition: transform 280ms ease;
}

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

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  background: rgba(7, 6, 5, 0.82);
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sale-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 11px 18px;
  background: #c0182b;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(192, 24, 43, 0.26);
}

.quick-button {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  background: rgba(255, 248, 236, 0.94);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.product-info {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-category {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 46px;
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-actions-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.price {
  color: var(--gold-deep);
  font-weight: 900;
}

.price-stack {
  display: grid;
  gap: 2px;
  color: var(--gold-deep);
  font-weight: 900;
}

.price-stack del {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.price-stack strong {
  color: var(--gold-deep);
}

.daraz-link {
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.daraz-link:disabled {
  border-bottom-color: transparent;
  color: var(--muted);
  cursor: not-allowed;
}

.share-link {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(154, 111, 39, 0.28);
  background: #fffdf8;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.share-link:hover {
  border-color: var(--gold-deep);
  background: var(--black);
  color: var(--gold);
}

.stock-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 7px 10px;
  background: #9c2929;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  padding: 80px max(24px, calc((100vw - 1220px) / 2));
  background: var(--black);
  color: var(--cream);
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(216, 183, 107, 0.26);
}

.editorial-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 248, 236, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stats span {
  padding: 18px;
  border: 1px solid rgba(216, 183, 107, 0.25);
}

.stats strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

.order-view {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

.order-view.open {
  pointer-events: auto;
  opacity: 1;
}

.order-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 16px;
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--ivory);
  transform: translate(-50%, -50%);
}

.order-panel h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order-panel label {
  display: grid;
  gap: 8px;
}

.order-panel label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-panel input,
.order-panel select,
.order-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.order-panel input,
.order-panel select {
  min-height: 46px;
  padding: 0 14px;
}

.order-panel textarea {
  resize: vertical;
  padding: 12px 14px;
}

.payment-proof-field em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.box-option {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.box-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--gold-deep);
}

.box-option span {
  display: grid;
  gap: 4px;
  color: var(--ink) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.35;
  text-transform: none !important;
}

.box-option strong {
  color: var(--ink);
}

.box-option em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.payment-hint {
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff8ec;
  color: var(--muted);
  font-weight: 800;
}

.payment-hint strong {
  color: var(--gold-deep);
}

.payment-hint span {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--gold-deep);
  font-weight: 800;
}

.quick-view.open {
  pointer-events: auto;
  opacity: 1;
}

.quick-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 5, 0.68);
}

.quick-view-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 1.05fr);
  width: min(1040px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--ivory);
  transform: translate(-50%, -46%);
  transition: transform 220ms ease;
}

.quick-view.open .quick-view-panel {
  transform: translate(-50%, -50%);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}

.quick-gallery {
  padding: 18px;
  background: #f3eadb;
}

.quick-gallery > img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.thumbs button {
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.thumbs button.active {
  border-color: var(--gold-deep);
}

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

.quick-copy {
  padding: clamp(28px, 5vw, 54px);
}

.quick-copy h2 {
  margin: 8px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.quick-price {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 22px;
}

.quick-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 48px 24px;
  background: #080706;
  color: rgba(255, 248, 236, 0.7);
  text-align: center;
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: 70px max(24px, calc((100vw - 1220px) / 2));
  background: #fffdf8;
}

.payment-section h2,
.social-section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.payment-section p:not(.eyebrow),
.social-section .section-heading p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.payment-card {
  display: grid;
  gap: 8px;
  padding: 30px;
  border: 1px solid rgba(216, 183, 107, 0.32);
  background: var(--black);
  color: var(--cream);
}

.payment-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
}

.payment-copy-button {
  justify-self: start;
  min-height: 42px;
  margin-top: 12px;
  padding: 0 16px;
  border: 1px solid rgba(216, 183, 107, 0.48);
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.social-section {
  padding: 70px max(24px, calc((100vw - 1220px) / 2));
  background: var(--cream);
}

.facebook-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.4vw, 14px);
  width: 100%;
  max-width: 1060px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
}

.facebook-post-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(154, 111, 39, 0.18);
  background: #fffdf8;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.facebook-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(18, 13, 7, 0.12);
}

.facebook-post-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--sand);
}

.facebook-post-card.image-only {
  border: 0;
  background: transparent;
}

.facebook-post-card.image-only img {
  border: 1px solid rgba(154, 111, 39, 0.18);
}

.facebook-post-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.facebook-post-card span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sale-badge + .stock-badge {
  top: 58px;
}

.facebook-post-card h3 {
  min-height: 44px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.facebook-post-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feed-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.feed-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #080706;
  color: var(--cream);
}

.feed-heading span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-heading a {
  border-bottom: 1px solid var(--gold);
  color: rgba(255, 248, 236, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.feed-panel iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

.feed-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  min-height: 520px;
  padding: 30px;
  color: var(--ink);
  text-align: center;
}

.feed-fallback-overlay {
  position: absolute;
  inset: 58px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0.96)),
    #fffdf8;
  text-decoration: none;
}

.feed-fallback svg {
  width: 54px;
  height: 54px;
  color: var(--gold-deep);
  fill: currentColor;
}

.feed-fallback strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}

.feed-fallback p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tiktok-embed {
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 18px !important;
}

.tiktok-video-feed {
  display: grid;
  gap: 16px;
  min-height: 520px;
  padding: 16px;
  background: #fffdf8;
}

.tiktok-video-feed .feed-fallback {
  min-height: 488px;
}

.tiktok-empty {
  text-decoration: none;
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-socials a {
  border-bottom: 1px solid rgba(216, 183, 107, 0.55);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  box-shadow: 0 18px 44px rgba(18, 140, 74, 0.34);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(18, 140, 74, 0.44);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .topline {
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .mobile-menu {
    display: block;
  }

  .header-actions .ghost-button {
    display: none;
  }

  .header-socials {
    display: none;
  }

  .category-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }

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

  .category-nav a {
    padding: 11px 0;
  }

  .hero,
  .editorial,
  .product-page-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 520px;
  }

  .benefits,
  .mood-grid,
  .product-grid,
  .stats,
  .feed-grid,
  .payment-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 620px) {
  .header-main {
    min-height: 88px;
  }

  .brand img {
    width: min(180px, 48vw);
    max-height: 70px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-card-main {
    inset: 0;
  }

  .floating-card {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .mini-stack {
    display: none;
  }

  .benefits,
  .mood-grid,
  .product-grid,
  .stats,
  .feed-grid,
  .payment-section,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    transform: none;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .benefits div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .toolbar-controls {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .search-box input,
  .toolbar-controls select {
    width: 100%;
  }

  .quick-copy {
    padding: 26px 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 0 15px 0 12px;
  }
}

@media (max-width: 760px) {
  .facebook-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .facebook-post-grid {
    grid-template-columns: 1fr;
  }
}
