@font-face {
  font-family: Manuale;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("https://sirselwyn.com/cdn/fonts/manuale/manuale_n3.0baac6564b6ed416af2c179e69ad2689bd829f1a.woff2") format("woff2");
}
@font-face {
  font-family: Manuale;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("https://sirselwyn.com/cdn/fonts/manuale/manuale_n7.3ba047f22d4f96763fb98130d717aa23f3693e91.woff2") format("woff2");
}

:root {
  --gold: #ebbf85;
  --black: #000000;
  --muted: rgba(235, 191, 133, .74);
  --soft: rgba(235, 191, 133, .22);
  --font: Manuale, Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font);
  font-weight: 300;
  letter-spacing: .055rem;
}

a { color: inherit; }

.top-banner {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 13px 18px 12px;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.top-banner a {
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.page {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 76px 40px 92px;
}

.product {
  display: grid;
  grid-template-columns: minmax(360px, 548px) minmax(380px, 1fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}

.gallery { min-width: 0; }

.main-media {
  width: 100%;
  max-width: 548px;
  aspect-ratio: 1 / 1.27;
  background: #050505;
  overflow: hidden;
}
.main-media img,
.main-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.main-media video { background: #000; }

.thumbs {
  width: 100%;
  max-width: 548px;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 28px 0 8px;
  scrollbar-width: none;
}
.thumbs::-webkit-scrollbar { display: none; }

.thumb {
  position: relative;
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  border: 1px solid transparent;
  padding: 0;
  background: #050505;
  cursor: pointer;
  opacity: .74;
}
.thumb.active {
  border-color: var(--gold);
  opacity: 1;
}
.thumb img,
.thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb.video-thumb::after {
  content: '▶';
  position: absolute;
  right: 6px;
  bottom: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.72);
  color: var(--gold);
  font-size: 10px;
}

.product-info {
  max-width: 620px;
  padding-top: 28px;
}
.vendor {
  margin: 0 0 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 700;
}
h1 {
  margin: 0 0 24px;
  font-size: clamp(44px, 5.1vw, 74px);
  line-height: .98;
  font-weight: 300;
  letter-spacing: .025em;
}
.price {
  margin: 0 0 7px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .055em;
}
.notice {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}
.variant-block { margin: 0 0 43px; }
.variant-label {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
}
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.variant {
  min-width: 86px;
  padding: 13px 22px;
  border: 1px solid rgba(235,191,133,.58);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.variant.active {
  background: var(--gold);
  color: #000;
  box-shadow: 2px 2px 5px rgba(235,191,133,.34);
}

.description {
  max-width: 590px;
  color: rgba(235,191,133,.83);
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: .045em;
}
.description p { margin: 0 0 24px; }

@media (max-width: 900px) {
  .page { padding: 34px 20px 56px; }
  .product { grid-template-columns: 1fr; gap: 32px; }
  .main-media, .thumbs, .product-info { max-width: none; }
  .product-info { padding-top: 0; }
  h1 { font-size: clamp(38px, 12vw, 58px); }
  .description { font-size: 18px; }
  .top-banner { font-size: 12px; }
}
