/* ──────────────────────────────────────────
   PRODUCT SINGLE
   Two-column hero: bottle stage (LEFT, smaller) + info column (RIGHT, larger).

   Per-product theming flows from `--card-color` set on <main class="product">.
   The backdrop image for the bottle is set via `--bg-url` on .product-stage,
   so there are no inner wrappers (frame / bg-div) — just the stage itself
   plus the bottle and the awards aside.
─────────────────────────────────────────── */
.product {
  max-width: 1500px;
  margin: 0 auto;
  padding: 150px 48px 120px;
}

/* ──────────────────────────────────────────
   HERO — bottle (smaller, left) + info (larger, right)
─────────────────────────────────────────── */
.product-hero {
  display: grid;
  /* Left column intentionally narrower than right (≈ 38% / 62%) */
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: center;
}

/* ──────────────────────────────────────────
   BOTTLE STAGE
   Single element: the rounded backdrop is .product-stage::before (image),
   the bottle and awards are direct children that overhang it.
─────────────────────────────────────────── */
.product-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}
.product-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  box-shadow:
    inset 0 0 90px 10px rgba(0, 0, 0, 0.28),     /* baked-in vignette */
    0 36px 70px -28px rgba(0, 0, 0, 0.65);       /* outer drop shadow */
  z-index: 0;
}

.product-bottle {
  position: absolute;
  bottom: 4%;
  left: 50%;
  width: 40%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 36px 44px rgba(0, 0, 0, 0.55));
  /* Gentle idle float */
  animation: bottle-float 6s ease-in-out infinite;
}
@keyframes bottle-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* ──────────────────────────────────────────
   AWARDS · stacked medallions, pinned to the top-right of the stage,
   slightly rotated for character. No pill chrome — just the medal + caption.
─────────────────────────────────────────── */
.product-awards {
  position: absolute;
  top: -22px;
  right: -34px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-award {
  width: 115px;
  text-align: center;
  transform: rotate(-5deg);
  transition: transform 0.7s var(--ease-out-quint);
}
.product-award:nth-child(2) { transform: rotate(4deg); margin-left: 18px; }
.product-award:hover { transform: rotate(0) scale(1.06); }

.product-award img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}
.product-award figcaption {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-dim);
  line-height: 1.3;
}

/* ──────────────────────────────────────────
   INFO COLUMN
   Plain serif typography — no pills, no badges, no chrome.
─────────────────────────────────────────── */
.product-info { padding-left: 4px; }

.product-eyebrow {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--card-color, var(--light));
  margin-bottom: 24px;
  opacity: 0.9;
}

.product-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 7.2vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--light);
  margin-bottom: 36px;
}

.product-description {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--light-dim);
  max-width: 640px;
  margin-bottom: 44px;
}

/* Specs · simple key/value rows, hairline above only */
.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  padding: 28px 0 0;
  border-top: 1px solid var(--light-faint);
  max-width: 640px;
}
.product-specs .spec dt {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-dim);
  margin-bottom: 6px;
}
.product-specs .spec dd {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--light);
  margin: 0;
}

/* ──────────────────────────────────────────
   TASTING NOTES · 3 editorial columns
─────────────────────────────────────────── */
.product-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 140px;
  padding-top: 64px;
  border-top: 1px solid var(--light-faint);
}
.note { position: relative; padding-top: 10px; }
.note-index {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--card-color, var(--light));
  margin-bottom: 16px;
  opacity: 0.8;
}
.note-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--light);
  margin-bottom: 14px;
}
.note-body {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--light-dim);
  max-width: 36ch;
}

/* ──────────────────────────────────────────
   HONOURS BAND
   Editorial — no card chrome (no border, no bg, no border-radius).
   Each honour is just: medal image + meta block, on a hairline divider row.
─────────────────────────────────────────── */
.product-honours {
  margin-top: 140px;
  padding-top: 80px;
  border-top: 1px solid var(--light-faint);
}
.honours-header {
  text-align: center;
  margin-bottom: 72px;
}
.honours-eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--light-dim);
  margin-bottom: 16px;
}
.honours-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  color: var(--light);
}

.honours-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}
.honour {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: start;
}
.honour-medal {
  width: 100%;
  height: auto;
  /* Tinted glow + soft drop — replaces the old wrapper + ::before halo */
  filter:
    drop-shadow(0 0 22px color-mix(in srgb, var(--card-color, var(--light)) 35%, transparent))
    drop-shadow(0 16px 26px rgba(0, 0, 0, 0.45));
}

.honour-meta { padding-top: 4px; }
.honour-year {
  display: inline-block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--card-color, var(--light));
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-faint);
}
.honour-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--light);
  margin-bottom: 6px;
}
.honour-rank {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-dim);
  margin-bottom: 14px;
}
.honour-desc {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--light-dim);
}

/* ──────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .product { padding: 130px 28px 80px; }
  .product-hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .product-info { padding-left: 0; }
  .product-awards {
    top: -12px;
    right: -8px;
  }
  .product-award { width: 92px; }
  .honours-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .honour { grid-template-columns: 90px 1fr; gap: 22px; }
}

@media (max-width: 700px) {
  .product { padding: 110px 16px 60px; }
  .product-title { font-size: clamp(42px, 12vw, 60px); margin-bottom: 28px; }
  .product-description { font-size: 15px; margin-bottom: 32px; }
  .product-specs {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0 0;
  }
  .product-awards {
    flex-direction: row;
    top: -8px;
    right: 0;
    gap: 10px;
  }
  .product-award { width: 72px; transform: rotate(-4deg); }
  .product-award:nth-child(2) { margin-left: 0; transform: rotate(4deg); }
  .product-notes {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 80px;
    padding-top: 48px;
  }
  .product-honours {
    margin-top: 80px;
    padding-top: 56px;
  }
  .honours-header { margin-bottom: 44px; }
  .honour { grid-template-columns: 80px 1fr; gap: 18px; }
  .honour-name { font-size: 18px; }
}
