:root {
  --pb-buyer-preview-ink: #100d0c;
  --pb-buyer-preview-cream: #f6efe7;
  --pb-buyer-preview-soft: #fbf6ef;
  --pb-buyer-preview-line: rgba(131, 91, 55, .22);
  --pb-buyer-preview-gold: #b98754;
  --pb-buyer-preview-gold-light: #d9b77c;
  --pb-buyer-preview-night: #111111;
}

.pb-buyer-preview,
.pb-buyer-preview * { box-sizing: border-box; }

.pb-buyer-preview {
  width: min(100%, 1920px);
  margin: 0 auto;
  color: var(--pb-buyer-preview-ink);
  background: #f7f0e8;
  font-family: inherit;
  overflow: hidden;
}

.pb-buyer-preview img { display: block; max-width: 100%; }

.pb-buyer-preview-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--pb-buyer-preview-gold);
  font-size: clamp(.72rem, .85vw, .9rem);
  font-weight: 800;
  letter-spacing: .32em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pb-buyer-preview-hero {
  display: grid;
  grid-template-columns: minmax(340px, .76fr) minmax(420px, 1.24fr);
  min-height: clamp(560px, 54vw, 760px);
  background:
    radial-gradient(circle at 18% 40%, rgba(185, 135, 84, .18), transparent 34%),
    linear-gradient(110deg, #111 0%, #151312 44%, #231c18 100%);
  color: #fff;
  position: relative;
  isolation: isolate;
}

.pb-buyer-preview-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.35), transparent 62%);
  pointer-events: none;
  z-index: -1;
}

.pb-buyer-preview-hero__copy {
  align-self: center;
  padding: clamp(60px, 9vw, 120px) clamp(32px, 7vw, 120px);
  max-width: 760px;
}

.pb-buyer-preview-hero h1 {
  margin: 16px 0 24px;
  color: #f9f2e8;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.2rem, 6.2vw, 7.25rem);
  line-height: .91;
  letter-spacing: -.055em;
}

.pb-buyer-preview-hero h1 span,
.pb-buyer-preview-hero h1 em { display: block; }

.pb-buyer-preview-hero h1 em {
  color: var(--pb-buyer-preview-gold-light);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.06em;
}

.pb-buyer-preview-hero p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.75;
}

.pb-buyer-preview-hero__actions,
.pb-buyer-preview-final-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.pb-buyer-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid rgba(185, 135, 84, .7);
  border-radius: 4px;
  color: var(--pb-buyer-preview-gold-light);
  background: transparent;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.pb-buyer-preview-button:hover,
.pb-buyer-preview-button:focus-visible {
  transform: translateY(-2px);
  background: var(--pb-buyer-preview-gold);
  color: #17110f;
  border-color: var(--pb-buyer-preview-gold-light);
}

.pb-buyer-preview-button--ghost { color: #f8ead9; border-color: rgba(255,255,255,.25); }
.pb-buyer-preview-button--gold { background: linear-gradient(135deg, #d8b072, #a56f43); color: #1a1110; border: 0; }
.pb-buyer-preview-button--primary span { margin-left: 12px; }

.pb-buyer-preview-hero__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.pb-buyer-preview-hero__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 54vw, 760px);
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.05);
}

.pb-buyer-preview-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,.88), transparent 35%, rgba(17,17,17,.16));
  z-index: 1;
  pointer-events: none;
}

.pb-buyer-preview-luxe-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(68%, 620px);
  aspect-ratio: 1.55;
  transform: translate(-45%, -50%) rotate(-8deg);
  border-radius: 10px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.16), transparent 26%),
    linear-gradient(135deg, #4a423c, #191716 58%, #0c0b0b);
  box-shadow: 0 45px 100px rgba(0,0,0,.62), inset 0 0 0 1px rgba(255,255,255,.08);
}

.pb-buyer-preview-luxe-box__seal {
  position: absolute;
  top: 32%;
  left: 48%;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e7c581, #9c673f);
  color: #20130e;
  font-weight: 900;
  letter-spacing: .12em;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.pb-buyer-preview-luxe-box__label {
  position: absolute;
  right: 10%;
  bottom: 22%;
  color: rgba(217,183,124,.75);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.3rem, 2vw, 2.5rem);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.pb-buyer-preview-showcase {
  display: grid;
  grid-template-columns: minmax(260px, .76fr) minmax(520px, 1.84fr) minmax(260px, .9fr);
  gap: clamp(24px, 3vw, 52px);
  width: min(96%, 1840px);
  margin: clamp(-54px, -3vw, -30px) auto 0;
  padding: clamp(34px, 4vw, 58px);
  background: linear-gradient(135deg, #fbf5ed, #f0e4d9);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 28px 74px rgba(36, 25, 18, .22);
  position: relative;
  z-index: 2;
}

.pb-buyer-preview-showcase h2,
.pb-buyer-preview-community h2,
.pb-buyer-preview-final-cta h2 {
  margin: 10px 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 2.35vw, 3.25rem);
  line-height: .96;
  letter-spacing: -.04em;
}

.pb-buyer-preview-showcase p,
.pb-buyer-preview-community p,
.pb-buyer-preview-footer-band p {
  color: rgba(30, 24, 20, .72);
  line-height: 1.65;
}

.pb-buyer-preview-collections-intro a,
.pb-buyer-preview-featured-sellers a,
.pb-buyer-preview-journal a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
  color: #4a2e1e;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.pb-buyer-preview-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.pb-buyer-preview-collection-card__image {
  height: clamp(190px, 17vw, 280px);
  overflow: hidden;
  background: #dfd0c4;
  margin-bottom: 16px;
}

.pb-buyer-preview-collection-card__image img,
.pb-buyer-preview-featured-sellers__image img,
.pb-buyer-preview-journal img { width: 100%; height: 100%; object-fit: cover; }

.pb-buyer-preview-collection-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 32% 38%, rgba(80,28,42,.7), transparent 14%),
    radial-gradient(circle at 60% 54%, rgba(25,23,23,.6), transparent 18%),
    linear-gradient(135deg, #211716, #d8b6a0 52%, #f6eadc);
}
.pb-buyer-preview-collection-card__placeholder--1 { background: linear-gradient(135deg, #ead6c5, #7c2438 48%, #2c1718); }
.pb-buyer-preview-collection-card__placeholder--2 { background: linear-gradient(135deg, #111, #4a423a 48%, #c9975f); }

.pb-buyer-preview-collection-card h3,
.pb-buyer-preview-trust-bar h3,
.pb-buyer-preview-footer-band h3 {
  margin: 0 0 5px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.05rem, 1vw, 1.25rem);
}

.pb-buyer-preview-collection-card p { margin: 0; font-size: .9rem; }

.pb-buyer-preview-featured-sellers {
  padding-left: clamp(18px, 2vw, 38px);
  border-left: 1px solid var(--pb-buyer-preview-line);
}

.pb-buyer-preview-featured-sellers__image {
  width: 100%;
  height: 112px;
  margin: 18px 0 10px;
  overflow: hidden;
  border-radius: 999px;
}

.pb-buyer-preview-avatar-strip { display: flex; margin: 20px 0 12px; }
.pb-buyer-preview-avatar-strip span {
  width: 54px; height: 54px; margin-right: -10px; border-radius: 999px;
  border: 3px solid #f6eee5;
  background: radial-gradient(circle at 50% 34%, #c5a184 0 12%, #201615 13% 56%, #090807 57%);
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}

.pb-buyer-preview-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(96%, 1840px);
  margin: 0 auto;
  padding: clamp(28px, 3vw, 42px);
  background: linear-gradient(135deg, #181818, #24201d);
  color: #f9efe2;
}

.pb-buyer-preview-trust-bar article,
.pb-buyer-preview-footer-band__features article {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 16px;
  padding: 0 clamp(12px, 2vw, 30px);
  border-right: 1px solid rgba(217, 183, 124, .28);
}
.pb-buyer-preview-trust-bar article:last-child,
.pb-buyer-preview-footer-band__features article:last-child { border-right: 0; }

.pb-buyer-preview-trust-bar article > span,
.pb-buyer-preview-footer-band__features article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 183, 124, .65);
  border-radius: 999px;
  color: var(--pb-buyer-preview-gold-light);
  font-size: 1.35rem;
}

.pb-buyer-preview-trust-bar h3 { color: var(--pb-buyer-preview-gold-light); font-size: .9rem; letter-spacing: .15em; text-transform: uppercase; font-family: inherit; }
.pb-buyer-preview-trust-bar p { margin: 0; color: rgba(255,255,255,.74); font-size: .92rem; line-height: 1.55; }

.pb-buyer-preview-community {
  display: grid;
  grid-template-columns: minmax(260px, .64fr) minmax(480px, 1.25fr) minmax(320px, .8fr);
  gap: clamp(22px, 3vw, 48px);
  width: min(96%, 1840px);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 70px) clamp(34px, 4vw, 58px);
  background: #f7eee5;
}

.pb-buyer-preview-stars { color: var(--pb-buyer-preview-gold); letter-spacing: .12em; margin: 12px 0 4px; }

.pb-buyer-preview-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.pb-buyer-preview-testimonials blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 12px;
  background: rgba(255,255,255,.56);
  box-shadow: inset 0 0 0 1px rgba(131, 91, 55, .1);
}

.pb-buyer-preview-testimonials blockquote > span { color: var(--pb-buyer-preview-gold); font-size: 2.2rem; line-height: .6; }
.pb-buyer-preview-testimonials p { margin: 10px 0 22px; font-size: .96rem; }
.pb-buyer-preview-testimonials cite { color: #3d2a20; font-style: normal; font-weight: 700; }

.pb-buyer-preview-journal {
  min-height: 280px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 42px);
  background: linear-gradient(135deg, #1b1918, #4a3426);
  color: #fff;
}
.pb-buyer-preview-journal img { position: absolute; inset: 0; z-index: 0; filter: saturate(.9) contrast(1.05); }
.pb-buyer-preview-journal::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.12)); }
.pb-buyer-preview-journal > div { position: relative; z-index: 2; }
.pb-buyer-preview-journal h2 { margin: 0 0 8px; color: #fff; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.9rem, 2.4vw, 3.2rem); }
.pb-buyer-preview-journal p { color: rgba(255,255,255,.82); margin: 0; }
.pb-buyer-preview-journal a { color: var(--pb-buyer-preview-gold-light); }

.pb-buyer-preview-community--no-reviews {
  grid-template-columns: minmax(0, 1fr);
}

.pb-buyer-preview-community--no-reviews .pb-buyer-preview-journal {
  min-height: clamp(320px, 28vw, 520px);
}

.pb-buyer-preview-footer-band {
  display: grid;
  grid-template-columns: 1.7fr .85fr;
  width: min(96%, 1840px);
  margin: 0 auto clamp(36px, 5vw, 70px);
  background: #f2e6dc;
}

.pb-buyer-preview-footer-band--no-cta {
  grid-template-columns: 1fr;
}

.pb-buyer-preview-footer-band__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: clamp(28px, 3.8vw, 54px);
}

.pb-buyer-preview-footer-band__features article > span { color: #7f5739; border-color: rgba(127,87,57,.35); }
.pb-buyer-preview-footer-band__features h3 { color: #765136; font-family: inherit; font-size: .86rem; letter-spacing: .16em; text-transform: uppercase; }
.pb-buyer-preview-footer-band__features p { margin: 0; font-size: .92rem; }

.pb-buyer-preview-final-cta {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(28px, 4vw, 58px);
  background: linear-gradient(135deg, #151414, #2a241f);
  color: #fff;
}
.pb-buyer-preview-final-cta h2 { margin: 0; color: #fff; font-size: clamp(1.6rem, 2vw, 2.6rem); }
.pb-buyer-preview-final-cta p { margin: 0; color: rgba(255,255,255,.72); }

@media (max-width: 1180px) {
  .pb-buyer-preview-hero,
  .pb-buyer-preview-showcase,
  .pb-buyer-preview-community,
  .pb-buyer-preview-footer-band { grid-template-columns: 1fr; }
  .pb-buyer-preview-showcase { margin-top: 0; width: 100%; }
  .pb-buyer-preview-trust-bar,
  .pb-buyer-preview-footer-band__features { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .pb-buyer-preview-featured-sellers { padding-left: 0; border-left: 0; border-top: 1px solid var(--pb-buyer-preview-line); padding-top: 28px; }
  .pb-buyer-preview-community { width: 100%; }
  .pb-buyer-preview-footer-band { width: 100%; }
}

@media (max-width: 760px) {
  .pb-buyer-preview-hero { min-height: auto; }
  .pb-buyer-preview-hero__copy { padding: 52px 22px; }
  .pb-buyer-preview-hero__media img { min-height: 320px; }
  .pb-buyer-preview-showcase,
  .pb-buyer-preview-community { padding: 28px 18px; }
  .pb-buyer-preview-collection-grid,
  .pb-buyer-preview-testimonials,
  .pb-buyer-preview-trust-bar,
  .pb-buyer-preview-footer-band__features { grid-template-columns: 1fr; }
  .pb-buyer-preview-trust-bar article,
  .pb-buyer-preview-footer-band__features article { border-right: 0; border-bottom: 1px solid rgba(217, 183, 124, .22); padding: 18px 0; }
  .pb-buyer-preview-trust-bar article:last-child,
  .pb-buyer-preview-footer-band__features article:last-child { border-bottom: 0; }
}

.pb-buyer-preview-collection-card {
  transition: opacity .38s ease, filter .38s ease, transform .38s ease, box-shadow .38s ease;
}

.pb-buyer-preview-collection-card--has-video .pb-buyer-preview-collection-card__image {
  position: relative;
  background: #14100f;
}

.pb-buyer-preview-collection-card__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pb-buyer-preview-collection-card.is-playing {
  opacity: 1;
  filter: none;
  transform: translateY(-4px);
}

.pb-buyer-preview-collection-card.is-playing .pb-buyer-preview-collection-card__image {
  box-shadow: 0 18px 42px rgba(28, 18, 14, .28);
}

.pb-buyer-preview-collection-card.is-dimmed {
  opacity: .42;
  filter: saturate(.55) brightness(.74);
}

.pb-buyer-preview-collection-card.is-dimmed .pb-buyer-preview-collection-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 13, 12, .28);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .pb-buyer-preview-collection-card {
    transition: none;
  }

  .pb-buyer-preview-collection-card.is-playing {
    transform: none;
  }
}

.pb-buyer-preview-collection-card__image {
  position: relative;
}
