/* =========================================================
   Vinařství JANUŠ — v2 (luxury redesign)
   Design tokens
   ========================================================= */
:root {
  --ink:        #100E0B;   /* warm near-black base */
  --ink-2:      #17140F;   /* slightly lifted panel */
  --ink-3:      #1F1B15;   /* cards on dark */
  --cream:      #F6F1E7;   /* main light bg */
  --cream-2:    #EFE7D7;   /* secondary light */
  --paper:      #FBF8F1;   /* lightest */
  --gold:       #C2A56B;   /* primary accent (richer) */
  --gold-light: #E4CD93;
  --gold-deep:  #9A7F4E;
  --gold-grad:  linear-gradient(100deg, #876835 0%, #A89162 34%, #C4B088 50%, #9A8558 66%, #876835 100%);
  --gold-grad-text: linear-gradient(100deg, #665028 0%, #887246 30%, #AB9258 52%, #7A6030 100%);
  --wine:       #6E1A2B;   /* deep burgundy, sparing */
  --text-dark:  #2A2620;   /* text on light */
  --muted-dark: #6E665A;   /* muted text on light */
  --text-light: #ECE5D7;   /* text on dark */
  --muted-light:#A89E8B;   /* muted text on dark */
  --line:       rgba(176,151,109,.28);
  --line-light: rgba(42,38,32,.14);
  --shadow:     0 30px 70px -30px rgba(0,0,0,.55);
  --ease:       cubic-bezier(.22,.61,.36,1);
  --serif:      "Cormorant Garamond", Georgia, serif;
  --sans:       "Jost", system-ui, -apple-system, sans-serif;
  --site-header-h: 124px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: .005em;
}
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.kicker.center { justify-content: center; }
.kicker.light { color: var(--gold-light); }
.lead { font-size: 1.075rem; color: var(--muted-dark); font-weight: 300; }

/* gold gradient text */
.gold-text {
  background: var(--gold-grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.italic { font-style: italic; }

/* ornamental divider with grape mark */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament img { height: 30px; width: auto; opacity: .9; }
.ornament.on-dark img { filter: brightness(0) saturate(100%) invert(82%) sepia(28%) saturate(560%) hue-rotate(2deg) brightness(95%); }
.awards .ornament img { height: 36px; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; }
.section-sm { padding: 84px 0; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 17px 34px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease);
  z-index: 0;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--ink); border-color: var(--gold); }
.btn:hover::after { transform: translateY(0); }
.btn-gold { --bg: var(--gold); --fg: var(--ink); }
.btn-gold::after { background: var(--ink); }
.btn-gold:hover { color: var(--paper); border-color: var(--ink); }
.btn-ghost {
  --bg: transparent; --fg: var(--text-light);
  border-color: rgba(236,229,215,.4);
}
.btn-ghost::after { background: var(--gold); }
.btn-ghost:hover { color: var(--ink); border-color: var(--gold); }
.btn-outline-dark {
  --bg: transparent; --fg: var(--text-dark);
  border-color: rgba(26,22,18,.25);
}
.btn-outline-dark::after { background: var(--gold); }
.btn-outline-dark:hover { color: var(--ink); border-color: var(--gold); }
.btn-outline {
  --bg: transparent; --fg: var(--paper);
  border-color: rgba(236,229,215,.35);
}
.btn-outline::after { background: var(--gold); }
.btn-outline:hover { color: var(--ink); border-color: var(--gold); }
.btn-block { width: 100%; }
.btn-sm { padding: 13px 24px; font-size: 10.5px; }

.text-link {
  font-size: 11.5px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.text-link svg { transition: transform .3s var(--ease); }
.text-link:hover { color: var(--ink); gap: 16px; }
.text-link.light { color: var(--gold-light); }
.text-link.light:hover { color: var(--paper); }

/* =========================================================
   Site header (topbar + nav)
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  isolation: isolate;
  transform: translateZ(0);
}
.topbar {
  background: var(--ink);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 20px;
  font-weight: 400;
  border-bottom: 1px solid rgba(194,165,107,.14);
}
.topbar span { color: var(--muted-light); }

.nav-wrap {
  background: rgba(12, 11, 8, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194,165,107,.16);
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
  backface-visibility: hidden;
}
.site-header.scrolled .nav-wrap {
  background: rgba(12, 11, 8, .97);
  border-bottom-color: rgba(194,165,107,.28);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px 36px;
  max-width: 1360px; margin: 0 auto;
  min-height: 90px;
  box-sizing: border-box;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 54px;
  transform-origin: left center;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.site-header.scrolled .nav-logo img { transform: scale(0.88); opacity: .96; }
.nav-menu {
  display: flex; align-items: center; justify-content: center;
  gap: 30px; flex: 1;
}
.nav-menu a {
  color: var(--text-light);
  font-size: 14px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  position: relative; padding: 10px 2px;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
  transition: color .3s var(--ease);
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 4px;
  width: 100%; height: 1px; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-menu a:hover { color: var(--gold-light); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.nav-phone {
  color: var(--text-light); font-size: 14px; font-weight: 400; letter-spacing: .06em;
  display: flex; align-items: center; gap: 9px;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
  transition: color .3s var(--ease);
}
.nav-phone:hover { color: var(--gold-light); }
.nav-cart {
  position: relative; color: var(--text-light);
  display: flex; align-items: center; gap: 10px;
  padding: 4px;
  transition: color .3s var(--ease);
  text-decoration: none;
}
.nav-cart .cart-total {
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 500;
  color: var(--gold-light);
  white-space: nowrap;
}
.nav-cart .cart-total[hidden] { display: none; }
.nav-cart:hover { color: var(--gold-light); }
.nav-cart .badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 600; line-height: 1;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform .35s var(--ease);
}
.nav-cart .badge.show { transform: scale(1); }

.cart-prompt {
  position: fixed; inset: 0; z-index: 220;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s, visibility .25s;
}
.cart-prompt.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.cart-prompt-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 18, 16, .72);
  backdrop-filter: blur(4px);
}
.cart-prompt-dialog {
  position: relative; z-index: 1;
  width: min(480px, 100%);
  background: var(--paper);
  border: 1px solid var(--line-light);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  padding: 34px 30px 28px;
}
.cart-prompt-close {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line-light);
  color: var(--text-dark); cursor: pointer;
}
.cart-prompt-kicker {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 8px;
}
.cart-prompt-title {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 10px; color: var(--text-dark);
}
.cart-prompt-text {
  color: var(--muted-dark); font-weight: 300; line-height: 1.6;
  margin-bottom: 24px;
}
.cart-prompt-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cart-prompt-actions .btn { flex: 1; min-width: 140px; justify-content: center; }

.cart-page {
  padding: calc(var(--site-header-h) + 48px) 0 90px;
  background: linear-gradient(180deg, var(--cream) 0%, #f3ede2 100%);
  min-height: 70vh;
}
.cart-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-dark); margin-bottom: 20px;
}
.cart-breadcrumb a { color: var(--gold-deep); transition: color .3s var(--ease); }
.cart-breadcrumb a:hover { color: var(--ink); }
.cart-breadcrumb span { opacity: .5; }

.cart-page-head { margin-bottom: 36px; }
.cart-page-head .kicker { color: var(--gold-deep); margin-bottom: 10px; }
.cart-page-head h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 8px; }
.cart-page-head p {
  color: var(--muted-dark); font-weight: 300;
  font-size: 13px; letter-spacing: .04em;
}

.cart-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 40px; align-items: start;
}
.cart-main { min-width: 0; }
.cart-list-head {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 24px; padding: 0 20px 14px;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-dark);
  border-bottom: 1px solid var(--line-light);
}
.cart-list-head span:nth-child(2) { padding-right: 28px; }
.cart-list { display: flex; flex-direction: column; }

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr auto auto;
  gap: 20px; align-items: center;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-top: none;
  transition: box-shadow .3s var(--ease);
}
.cart-item:first-child { border-top: 1px solid var(--line-light); }
.cart-item:hover { box-shadow: 0 10px 30px -18px rgba(30,24,16,.4); }
.cart-item-thumb {
  width: 84px; height: 84px; flex-shrink: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(194,165,107,.14), transparent 70%), #faf7f1;
  border: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-item-thumb svg { width: 34px; height: 34px; color: var(--gold-deep); opacity: .6; }
.cart-item-main { min-width: 0; }
.cart-item-name {
  display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 5px;
  text-decoration: none;
  transition: color .25s var(--ease);
}
a.cart-item-name:hover { color: var(--wine); }
.cart-item-thumb-link {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: inherit; text-decoration: none;
}
.cart-item-thumb-link:hover img { opacity: .92; }
.cart-item-unit { font-size: .82rem; color: var(--muted-dark); letter-spacing: .03em; }
.cart-price-free { color: var(--gold-deep); font-weight: 500; }
.cart-price-free s { color: var(--muted-dark); font-weight: 400; margin-right: .35rem; }
.cart-item--guarantee { background: linear-gradient(90deg, rgba(201,169,110,.06), transparent 40%); }
.cart-item-qty--fixed { justify-content: center; min-width: 2.5rem; }

.cart-item-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); background: #fff;
}
.cart-qty-btn {
  width: 34px; height: 38px; border: none; background: none;
  color: var(--text-dark); cursor: pointer; font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cart-qty-btn:hover { background: var(--ink); color: var(--gold-light); }
.cart-qty-value {
  min-width: 34px; text-align: center;
  font-size: .95rem; color: var(--text-dark);
  border-left: 1px solid var(--line-light); border-right: 1px solid var(--line-light);
  align-self: stretch; display: flex; align-items: center; justify-content: center;
}
.cart-item-total {
  font-family: var(--serif); font-size: 1.4rem; color: var(--text-dark);
  white-space: nowrap; min-width: 92px; text-align: right;
}
.cart-item-remove {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px; border: none; background: none;
  color: var(--muted-dark); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .25s var(--ease);
}
.cart-item-remove svg { width: 16px; height: 16px; }
.cart-item-remove:hover { color: var(--wine); }

.cart-continue {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); transition: gap .3s var(--ease), color .3s var(--ease);
}
.cart-continue svg { width: 14px; height: 14px; }
.cart-continue:hover { color: var(--ink); gap: 12px; }

.cart-summary {
  position: sticky; top: calc(var(--site-header-h) + 24px);
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-top: 3px solid var(--gold);
  padding: 30px 28px;
  box-shadow: 0 24px 60px -36px rgba(30,24,16,.5);
}
.cart-summary-title {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: 22px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-light);
}

.cart-promo {
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}
.cart-promo-label {
  display: block; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-dark); margin-bottom: 10px;
}
.cart-promo-row { display: flex; gap: 8px; }
.cart-promo-input {
  flex: 1; min-width: 0;
  font-family: var(--sans); font-size: .92rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff; color: var(--text-dark);
  transition: border-color .25s var(--ease);
}
.cart-promo-input:focus {
  outline: none; border-color: var(--gold-deep);
}
.cart-promo-input::placeholder { color: var(--muted-dark); opacity: .7; }
.cart-promo-btn {
  flex-shrink: 0;
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 12px 18px;
  background: var(--ink); color: var(--gold-light);
  border: 1px solid var(--ink); cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cart-promo-btn:hover:not(:disabled) { background: var(--gold); color: var(--ink); }
.cart-promo-btn:disabled { opacity: .55; cursor: wait; }
.cart-promo-msg {
  margin: 10px 0 0; font-size: .82rem; line-height: 1.4;
}
.cart-promo-msg.is-error { color: #8b3a3a; }

.cart-promo--applied { margin-bottom: 18px; padding-bottom: 18px; }
.cart-promo-applied {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px;
  background: rgba(95,125,84,.08);
  border: 1px solid rgba(95,125,84,.28);
}
.cart-promo-applied-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-promo-code {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: #5f7d54;
}
.cart-promo-label-text { font-size: .88rem; color: var(--text-dark); }
.cart-promo-remove {
  width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--muted-dark); transition: color .25s var(--ease);
}
.cart-promo-remove svg { width: 16px; height: 16px; }
.cart-promo-remove:hover { color: var(--wine); }

.cart-summary-discount span:last-child {
  color: #5f7d54; font-weight: 500;
}
.cart-summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .95rem; color: var(--text-dark); margin-bottom: 12px;
}
.cart-summary-row[hidden] {
  display: none !important;
}
.cart-summary-muted span:last-child { color: var(--muted-dark); font-size: .82rem; }
.cart-summary-free .cart-free-tag {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: #5f7d54;
}
.cart-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line-light);
}
.cart-summary-total span {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-dark);
}
.cart-summary-total strong {
  font-family: var(--serif); font-size: 2rem; font-weight: 500;
  color: var(--text-dark); line-height: 1;
}
.cart-summary-vat {
  font-size: .74rem; color: var(--muted-dark); margin: 6px 0 18px; text-align: right;
}
.cart-ship-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px;
  padding: 14px 16px; margin-bottom: 18px;
  background: rgba(194,165,107,.1);
  border: 1px solid rgba(194,165,107,.3);
  font-size: .82rem; color: var(--text-dark); font-weight: 300;
  line-height: 1.4;
}
.cart-ship-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  background: rgba(194,165,107,.18);
}
.cart-ship-bar svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; }
.cart-ship-bar strong { font-weight: 600; }
.cart-ship-text { flex: 1; min-width: 0; margin: 0; }
.cart-ship-progress {
  display: block; width: 100%; height: 5px; border-radius: 3px;
  background: rgba(194,165,107,.2); overflow: hidden;
}
.cart-ship-progress-fill {
  display: block; height: 100%; border-radius: 3px;
  background: var(--gold-grad);
  transition: width .5s var(--ease);
}
.cart-ship-bar--cta {
  background: rgba(194,165,107,.14);
  border: 1px solid rgba(194,165,107,.45);
  box-shadow: 0 10px 24px -18px rgba(154,127,78,.9);
}
.cart-ship-bar--cta .cart-ship-icon { background: rgba(194,165,107,.28); }
.cart-ship-bar--cta .cart-ship-text { font-weight: 400; font-size: .86rem; }
.cart-ship-bar--cta .cart-ship-text strong { color: var(--gold-deep); }
.cart-ship-bar--done {
  background: rgba(95,125,84,.1);
  border-color: rgba(95,125,84,.32);
}
.cart-ship-bar--done svg { color: #5f7d54; }
.cart-ship-bar--done .cart-ship-icon { background: rgba(95,125,84,.2); }
.cart-ship-bar--done .cart-ship-progress-fill { background: #5f7d54; }
.cart-checkout-btn {
  width: 100%; padding: 18px 24px;
  font-size: 12px; letter-spacing: .2em;
  box-shadow: 0 14px 30px -16px rgba(176,151,109,1);
}
.cart-checkout-btn svg { width: 16px; height: 16px; }
.cart-summary-trust {
  list-style: none; margin: 24px 0 0; padding: 22px 0 0;
  border-top: 1px solid var(--line-light);
  display: grid; gap: 13px;
}
.cart-summary-trust li {
  display: flex; align-items: center; gap: 11px;
  font-size: .82rem; color: var(--muted-dark); font-weight: 300;
}
.cart-summary-trust svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }

.cart-page-empty {
  text-align: center; max-width: 540px; margin: 40px auto;
  background: var(--paper); border: 1px solid var(--line-light);
  padding: 60px 40px;
}
.cart-empty-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; margin-bottom: 24px;
  border-radius: 50%; background: rgba(194,165,107,.12);
  color: var(--gold-deep);
}
.cart-empty-icon svg { width: 34px; height: 34px; }
.cart-page-empty h1 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.cart-page-empty p { color: var(--muted-dark); margin: 14px auto 28px; max-width: 40ch; font-weight: 300; }
.cart-page-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cart-page-actions .btn { min-width: 180px; justify-content: center; }

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; gap: 28px; }
  .cart-summary { position: static; }
}
@media (max-width: 560px) {
  .cart-list-head { display: none; }
  .cart-item {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "thumb main"
      "thumb qty"
      "total total";
    gap: 8px 16px; padding: 18px;
  }
  .cart-item-thumb { grid-area: thumb; width: 64px; height: 64px; }
  .cart-item-main { grid-area: main; }
  .cart-item-qty { grid-area: qty; justify-self: start; }
  .cart-item-total {
    grid-area: total; text-align: left; min-width: 0;
    padding-top: 12px; margin-top: 4px; border-top: 1px solid var(--line-light);
  }
}

/* =========================================================
   Checkout / pokladna
   ========================================================= */
.checkout-page {
  padding: calc(var(--site-header-h) + 48px) 0 90px;
  background: linear-gradient(180deg, var(--cream) 0%, #f3ede2 100%);
  min-height: 70vh;
}
.checkout-steps {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.checkout-step { color: var(--muted-dark); }
.checkout-step.is-done a { color: var(--gold-deep); }
.checkout-step.is-active { color: var(--ink); font-weight: 600; }
.checkout-step:not(:last-child)::after {
  content: "›"; margin-left: 12px; opacity: .35;
}
.checkout-page-head { margin-bottom: 32px; }
.checkout-page-head .kicker { color: var(--gold-deep); margin-bottom: 10px; }
.checkout-page-head h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); }

.checkout-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 40px; align-items: start;
}
.checkout-form { display: grid; gap: 24px; min-width: 0; }
.checkout-panel {
  background: var(--paper);
  border: 1px solid var(--line-light);
  padding: 28px 28px 24px;
}
.checkout-panel-title {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-light);
}
.checkout-fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-field { display: flex; flex-direction: column; gap: 7px; }
.checkout-field--wide { grid-column: 1 / -1; }
.checkout-field span {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-dark);
}
.checkout-field input {
  font-family: var(--sans); font-size: .95rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fff; color: var(--text-dark);
  transition: border-color .25s var(--ease);
}
.checkout-field input:focus {
  outline: none; border-color: var(--gold-deep);
}

.checkout-pickup {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border: 1px solid rgba(194,165,107,.32);
  background: rgba(194,165,107,.08);
}
.checkout-pickup svg { flex: 0 0 auto; width: 26px; height: 26px; color: var(--gold-deep); margin-top: 2px; }
.checkout-pickup strong { display: block; color: var(--text-dark); margin-bottom: 4px; }
.checkout-pickup span { color: var(--muted-dark); font-size: .92rem; line-height: 1.5; }

.checkout-options { display: grid; gap: 10px; }
.checkout-option {
  position: relative; display: block; cursor: pointer;
  border: 1px solid var(--line-light);
  background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.checkout-option input {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: pointer;
}
.checkout-option-body {
  position: relative; z-index: 0;
  display: block; padding: 16px 48px 16px 18px;
}
.checkout-option-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.checkout-option-head strong {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  color: var(--text-dark);
}
.checkout-option-price {
  font-size: .88rem; letter-spacing: .04em; color: var(--text-dark);
  white-space: nowrap;
}
.checkout-option-price.is-free { color: #5f7d54; font-weight: 600; }
.checkout-address-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(194,165,107,.32);
  background: rgba(194,165,107,.08);
  color: var(--muted-dark);
  font-size: .92rem;
  line-height: 1.55;
}

.checkout-address-fields[hidden] {
  display: none;
}

.checkout-option-desc {
  display: block; margin-top: 5px;
  font-size: .84rem; color: var(--muted-dark); font-weight: 300; line-height: 1.45;
}
.checkout-pay-icons {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 12px;
  min-height: 22px;
}
.checkout-pay-icon {
  display: inline-flex; align-items: center; justify-content: center;
  height: 22px; flex-shrink: 0;
}
.checkout-pay-icon img,
.checkout-pay-icon svg { display: block; height: 20px; width: auto; }
.checkout-pay-icon--apple img { height: 18px; }
.checkout-pay-icon--visa img { height: 14px; }
.checkout-pay-icon--mastercard img { height: 22px; }
.checkout-pay-provider {
  display: block; margin-top: 8px;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
}
.checkout-option-mark {
  position: absolute; top: 50%; right: 18px; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.checkout-option.is-selected,
.checkout-option:has(> input[type="radio"]:checked) {
  border-color: var(--gold-deep);
  box-shadow: 0 10px 28px -20px rgba(176,151,109,.8);
}
.checkout-option.is-selected .checkout-option-mark,
.checkout-option:has(> input[type="radio"]:checked) .checkout-option-mark {
  border-color: var(--gold-deep);
  background: radial-gradient(circle at center, var(--gold-deep) 40%, transparent 42%);
}

.checkout-summary-cod {
  display: none;
}
.checkout-layout:has(input[name="payment"][value="cod"]:checked) .checkout-summary-cod {
  display: flex;
}

.checkout-consent {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .88rem; color: var(--muted-dark); font-weight: 300; line-height: 1.5;
}
.checkout-consent input { margin-top: 3px; flex-shrink: 0; }
.checkout-consent a { color: var(--gold-deep); }

.checkout-wallet-intro,
.checkout-wallet-status,
.checkout-wallet-balance,
.checkout-wallet-note {
  color: var(--muted-dark);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 12px;
}
.checkout-wallet-login {
  display: grid;
  gap: 10px;
}
.checkout-wallet-register {
  margin: 12px 0 0;
  font-size: .86rem;
  color: var(--muted-dark);
}
.checkout-wallet-register a { color: var(--gold-deep); }
.checkout-wallet-login-btn { justify-self: start; width: 100%; }
.checkout-wallet-error {
  margin: 0;
  color: #9b2c2c;
  font-size: .88rem;
}
.checkout-wallet-use {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(176,151,109,.06);
  margin-bottom: 12px;
}
.checkout-wallet-use input { margin-top: 3px; }
.checkout-wallet-grants {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted-dark);
  font-size: .86rem;
  line-height: 1.5;
}
.checkout-wallet-logout {
  border: 0;
  background: none;
  padding: 0;
  color: var(--gold-deep);
  font-size: .86rem;
  cursor: pointer;
  text-decoration: underline;
}

.checkout-form-error {
  padding: 12px 14px;
  background: rgba(180, 80, 80, .08);
  border: 1px solid rgba(180, 80, 80, .25);
  color: #8b3a3a; font-size: .88rem;
}
.checkout-loading, .checkout-error {
  color: var(--muted-dark); font-size: .9rem; font-weight: 300;
}
.checkout-error { color: #8b3a3a; }
.checkout-noscript-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(139, 115, 85, .08);
  color: var(--muted-dark);
  font-size: .92rem;
  line-height: 1.55;
}
.checkout-noscript-note a { color: var(--gold-deep); }

.checkout-form-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.checkout-submit {
  padding: 18px 28px; font-size: 12px; letter-spacing: .18em;
  box-shadow: 0 14px 30px -16px rgba(176,151,109,1);
}
.checkout-submit svg { width: 16px; height: 16px; }

.checkout-loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,16,10,.72); backdrop-filter: blur(3px);
  padding: 20px;
}
.checkout-loading-overlay[hidden] { display: none; }
.checkout-loading-box {
  background: #fff; border-radius: 4px; max-width: 380px; width: 100%;
  padding: 40px 32px; text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
.checkout-loading-spinner {
  display: inline-block; width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid rgba(176,151,109,.25); border-top-color: var(--gold-deep);
  animation: checkout-loading-spin .8s linear infinite;
  margin-bottom: 20px;
}
@keyframes checkout-loading-spin { to { transform: rotate(360deg); } }
.checkout-loading-title {
  font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin: 0 0 8px;
}
.checkout-loading-text {
  font-size: .88rem; color: var(--muted-dark); line-height: 1.5; margin: 0 0 22px;
}
.checkout-loading-bar {
  height: 4px; border-radius: 2px; background: rgba(176,151,109,.18);
  overflow: hidden; position: relative;
}
.checkout-loading-bar span {
  position: absolute; top: 0; left: 0; height: 100%; width: 40%;
  border-radius: 2px; background: var(--gold-deep);
  animation: checkout-loading-bar-move 1.3s ease-in-out infinite;
}
@keyframes checkout-loading-bar-move {
  0% { left: -40%; width: 40%; }
  50% { width: 55%; }
  100% { left: 100%; width: 40%; }
}
@media (max-width: 480px) {
  .checkout-loading-box { padding: 32px 22px; }
}

.checkout-summary {
  position: sticky; top: calc(var(--site-header-h) + 24px);
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-top: 3px solid var(--gold);
  padding: 28px 26px;
  box-shadow: 0 24px 60px -36px rgba(30,24,16,.5);
}
.checkout-account-panel {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}
.checkout-account-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 14px;
}
.checkout-summary-items {
  display: grid; gap: 10px; margin-bottom: 18px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line-light);
  max-height: 220px; overflow-y: auto;
}
.checkout-summary-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 8px 10px;
  font-size: .86rem; color: var(--muted-dark);
}
.checkout-summary-qty { color: var(--gold-deep); font-weight: 500; }
.checkout-summary-name { color: var(--text-dark); }
.checkout-summary-price { white-space: nowrap; }

/* ── Order confirmation (dekuji.php) ── */
.confirm-hero {
  text-align: center; max-width: 640px; margin: 0 auto 44px;
}
.confirm-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; margin-bottom: 22px; border-radius: 50%;
  color: #fff; background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 18px 40px -18px rgba(176,151,109,1);
}
.confirm-check svg { width: 34px; height: 34px; }
.confirm-lead { margin-top: 12px; color: var(--muted-dark); font-weight: 300; }

.confirm-layout {
  display: grid; grid-template-columns: 1.7fr 1fr; gap: 32px;
  align-items: start;
}
.confirm-meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  margin-bottom: 32px;
}
.confirm-meta-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px; background: var(--paper);
}
.confirm-meta-label {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-dark); font-weight: 500;
}
.confirm-meta-value { font-size: 1.1rem; color: var(--text-dark); }
.confirm-state {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: .8rem; letter-spacing: .04em;
  background: rgba(176,151,109,.14); color: var(--gold-deep);
}
.confirm-state.is-paid { background: rgba(95,125,84,.16); color: #4d6a42; }

.confirm-items { margin-bottom: 28px; }
.confirm-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line-light);
  font-size: .95rem;
}
.confirm-item-qty { color: var(--gold-deep); font-weight: 500; }
.confirm-item-name { color: var(--text-dark); }
.confirm-item-price { white-space: nowrap; color: var(--muted-dark); }
.confirm-actions { margin-top: 30px; }
.confirm-summary { position: static; }

.tracking-hero { margin-bottom: 36px; }
.tracking-lookup-panel { max-width: 640px; margin: 0 auto; }
.tracking-actions.confirm-actions { margin-bottom: 30px; }
.tracking-message-panel { margin-top: 0; }
.tracking-message-hint {
  color: var(--muted-dark); font-size: .92rem; line-height: 1.5;
  margin: -6px 0 20px;
}
.tracking-marketing-slot[hidden] { display: none; }

.confirm-processing {
  display: flex; align-items: center; gap: 12px;
  max-width: 640px; margin: 0 auto 28px; padding: 14px 18px;
  background: rgba(176,151,109,.1); border: 1px solid rgba(176,151,109,.32);
  color: var(--gold-deep); font-size: .92rem;
}

.confirm-tasting-term {
  display: flex; align-items: flex-start; gap: 14px;
  max-width: 640px; margin: 0 auto 28px; padding: 18px 20px;
  border: 1px solid rgba(194,165,107,.32);
  background: rgba(194,165,107,.08);
}
.confirm-tasting-term svg { flex: 0 0 auto; width: 26px; height: 26px; color: var(--gold-deep); margin-top: 2px; }
.confirm-tasting-term strong { display: block; color: var(--text-dark); margin-bottom: 4px; }
.confirm-tasting-term span { color: var(--muted-dark); font-size: .92rem; line-height: 1.5; }
.confirm-spinner {
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid rgba(176,151,109,.35); border-top-color: var(--gold-deep);
  animation: confirm-spin .8s linear infinite;
}
@keyframes confirm-spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .confirm-layout { grid-template-columns: 1fr; }
  .confirm-summary { order: -1; }
}

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .checkout-fields { grid-template-columns: 1fr; }
  .checkout-form-actions { flex-direction: column; align-items: stretch; }
  .checkout-submit { width: 100%; justify-content: center; }
}

.btn.add-to-cart.is-added,
.btn-sm.add-to-cart.is-added {
  background: #5f7d54 !important;
  border-color: #5f7d54 !important;
  color: #fff !important;
}
.btn.add-to-cart.is-added::after,
.btn-sm.add-to-cart.is-added::after { display: none; }

.nav-toggle { display: none; background: none; border: none; color: var(--text-light); cursor: pointer; padding: 4px; }

/* lp-header (index1, list, darky, degustace, novinky, …) — burger jen pod breakpointem */
.lp-header .lp-actions button.lp-burger {
  display: none;
}
@media (max-width: 1080px) {
  .lp-header .lp-actions button.lp-burger {
    display: inline-flex;
  }
}

/* E-shop dropdown — neviditelný most přes mezeru, aby hover nezmizel */
.lp-eshop .lp-dropdown::before {
  content: "";
  position: absolute;
  left: -32px;
  right: -32px;
  top: -16px;
  height: 16px;
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 28px;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer-head img { height: 40px; }
.drawer-head a.drawer-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-bottom: none;
  font-size: inherit;
  line-height: 0;
}
.drawer-head a.drawer-logo:hover { opacity: .88; color: inherit; }
.drawer-close { background: none; border: none; color: var(--text-light); cursor: pointer; }
.drawer a {
  color: var(--text-light); font-family: var(--serif); font-size: 2rem;
  padding: 14px 0; border-bottom: 1px solid rgba(176,151,109,.12);
}
.drawer a:hover { color: var(--gold-light); }
.drawer-phone {
  margin-top: 18px; font-family: var(--sans) !important;
  font-size: 1.1rem !important; letter-spacing: .12em;
  color: var(--gold-light) !important; border-bottom: none !important;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,8,6,.92) 0%, rgba(9,8,6,.6) 48%, rgba(9,8,6,.25) 100%),
    linear-gradient(0deg, rgba(9,8,6,.75) 0%, rgba(9,8,6,0) 42%),
    radial-gradient(70% 90% at 18% 40%, rgba(194,165,107,.12), transparent 60%);
}
/* poster-style gold inset frame */
.hero-frame {
  position: absolute;
  top: calc(var(--site-header-h) + 14px);
  left: 22px; right: 22px; bottom: 22px;
  z-index: 3; pointer-events: none;
  border: 1px solid rgba(194,165,107,.32);
}
.hero-frame::before, .hero-frame::after {
  content: ""; position: absolute; width: 26px; height: 26px;
  border: 1px solid rgba(228,205,147,.7);
}
.hero-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
@media (max-width: 600px) {
  .hero-frame { top: calc(var(--site-header-h) + 8px); left: 12px; right: 12px; bottom: 12px; }
}
.hero-inner { position: relative; z-index: 2; padding-top: calc(var(--site-header-h) + 28px); }
.hero-content { max-width: 660px; }
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  margin: 22px 0 24px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: rgba(236,229,215,.82); font-size: 1.12rem; max-width: 500px; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(236,229,215,.6);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2s var(--ease) infinite; transform-origin: top; }
.page-hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(236,229,215,.62);
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; transition: color .3s var(--ease);
}
.page-hero-scroll:hover { color: var(--gold-light); }
.page-hero-scroll .line {
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold-light), transparent);
  animation: scrollLine 2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* =========================================================
   Marquee / values strip
   ========================================================= */
.values {
  background: var(--ink-2);
  border-top: 1px solid rgba(176,151,109,.14);
  border-bottom: 1px solid rgba(176,151,109,.14);
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.value {
  padding: 40px 28px; text-align: center;
  border-right: 1px solid rgba(176,151,109,.12);
}
.value:last-child { border-right: none; }
.value .num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-light); line-height: 1; }
.value .lbl { color: var(--muted-light); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; margin-top: 12px; }

/* =========================================================
   Section heads
   ========================================================= */
.head { max-width: 640px; }
.head.center { margin: 0 auto; text-align: center; }
.head h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: 18px 0 0; color: var(--text-dark); }
.head.on-dark h2 { color: var(--paper); }
.head .lead { margin-top: 20px; color: var(--muted-dark); }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }

/* =========================================================
   Collection / product cards
   ========================================================= */
.collection { background: var(--cream); }
.products {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; margin-top: 60px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line); }
.card-media {
  position: relative;
  padding: 38px 30px 18px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(176,151,109,.12), transparent 70%);
  overflow: hidden;
}
.card-media img {
  height: 320px; margin: 0 auto; object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(0,0,0,.4));
  transition: transform .6s var(--ease);
}
.card:hover .card-media img { transform: translateY(-6px) scale(1.03); }
.tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--ink); color: var(--gold-light);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
}
.tag.award,
.promo-badge.award,
.wine-detail-award,
.vino-badge--award {
  background: var(--gold-grad);
  color: #2a1d07;
  box-shadow: 0 8px 18px -7px rgba(194,165,107,.55);
}
.card-body { padding: 8px 30px 32px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.card-variety { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.card-name { font-family: var(--serif); font-size: 1.85rem; font-weight: 500; color: var(--text-dark); margin: 8px 0 4px; line-height: 1.1; }
.card-note { font-size: .93rem; color: var(--muted-dark); font-weight: 300; min-height: 44px; margin-bottom: 18px; }
.card-foot { margin-top: auto; }
.card-price { font-family: var(--serif); font-size: 1.7rem; color: var(--text-dark); margin-bottom: 16px; }
.card-price span { font-size: .9rem; color: var(--muted-dark); font-family: var(--sans); }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 13px; margin-bottom: 14px; }

/* =========================================================
   Promo / hot offers (homepage)
   ========================================================= */
.promos { background: var(--paper); border-top: 1px solid var(--line-light); }
.promos .head .lead { margin-top: 16px; max-width: 520px; }

.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 52px;
}

/* Featured large card */
.promo-featured {
  position: relative; grid-row: span 2;
  min-height: 520px;
  background: var(--ink);
  border: 1px solid rgba(194,165,107,.22);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.promo-featured-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .45;
}
.promo-featured-veil {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,8,6,.96) 0%, rgba(9,8,6,.66) 52%, rgba(9,8,6,.42) 100%);
}
.promo-featured-body {
  position: relative; z-index: 2;
  padding: 36px 38px 40px;
}
.promo-featured-body h3 {
  color: var(--paper);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 14px 0 14px;
  line-height: 1.08;
}
.promo-featured-body p {
  color: var(--muted-light); font-weight: 300;
  max-width: 420px; margin-bottom: 20px; font-size: .98rem;
}
.promo-featured-bottles {
  position: absolute; right: -10px; top: 50%; transform: translateY(-52%);
  z-index: 1; width: 48%; pointer-events: none;
}
.promo-featured-bottles img {
  position: absolute; filter: drop-shadow(0 20px 30px rgba(0,0,0,.55));
  transition: transform .6s var(--ease);
}
.promo-featured-bottles img:nth-child(1) { width: 72%; right: 8%; top: 8%; transform: rotate(-8deg); }
.promo-featured-bottles img:nth-child(2) { width: 68%; right: 28%; top: 22%; transform: rotate(4deg); opacity: .9; }
.promo-featured-bottles img:nth-child(3) { width: 64%; right: 0; top: 38%; transform: rotate(-3deg); opacity: .85; }
.promo-featured:hover .promo-featured-bottles img:nth-child(1) { transform: rotate(-8deg) translateY(-6px); }
.promo-featured:hover .promo-featured-bottles img:nth-child(2) { transform: rotate(4deg) translateY(-8px); }
.promo-featured:hover .promo-featured-bottles img:nth-child(3) { transform: rotate(-3deg) translateY(-5px); }

/* Shared promo badges & pricing */
.promo-badge {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 12px;
  background: var(--ink-3); color: var(--gold-light);
  border: 1px solid rgba(194,165,107,.3);
}
.promo-badge.award { border: none; }
.promo-badge-hot { background: var(--wine); color: var(--paper); border: none; }
.promo-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.promo-price-old { font-size: 1.1rem; color: var(--muted-light); text-decoration: line-through; }
.promo-price-now { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-light); line-height: 1; }
.promo-save { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--gold-light); background: rgba(194,165,107,.15); padding: 4px 8px; }
.promo-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.promo-stock {
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: #6f9e5e; font-weight: 500;
}
.promo-stock.low { color: #cf9b43; }
.promo-featured .promo-stock { color: rgba(236,229,215,.65); }
.promo-featured .promo-stock.low { color: #e8c078; }

/* Smaller promo cards */
.promo-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden;
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.promo-card > .promo-badge { position: absolute; top: 16px; left: 16px; z-index: 3; }
.promo-card-media {
  position: relative;
  min-height: 200px;
  padding: 36px 20px 10px;
  display: flex; align-items: flex-end; justify-content: center;
  background: radial-gradient(110% 80% at 50% 0%, rgba(194,165,107,.12), transparent 70%);
  overflow: hidden;
}
.promo-card-media img {
  position: relative; z-index: 1;
  max-height: 190px; object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.35));
  transition: transform .55s var(--ease);
}
.promo-card-media.portrait img { max-height: 210px; }
.promo-card:hover .promo-card-media img { transform: translateY(-5px) scale(1.03); }
.promo-card-media-second {
  position: absolute !important; right: 12%; bottom: 8%; z-index: 2 !important;
  max-height: 140px !important; opacity: .88; transform: rotate(8deg);
}
.promo-card-gift:hover .promo-card-media img:first-child { transform: translateY(-5px) rotate(-4deg); }
.promo-card-gift:hover .promo-card-media-second { transform: rotate(8deg) translateY(-8px); }
.promo-card-body { padding: 18px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.promo-card-type { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.promo-card-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: var(--text-dark); line-height: 1.1; margin-bottom: 8px; }
.promo-card-name a { color: inherit; text-decoration: none; }
.promo-card-name a:hover { color: var(--gold-deep); }
.promo-featured .display a { color: var(--paper); text-decoration: none; }
.promo-featured .display a:hover { color: var(--gold-light); }
.promo-card-wide .display a { color: var(--paper); text-decoration: none; }
.promo-card-wide .display a:hover { color: var(--gold-light); }
.cart-add-form { display: inline; margin: 0; padding: 0; border: 0; }
.promo-card-note { font-size: .9rem; color: var(--muted-dark); font-weight: 300; line-height: 1.5; flex: 1; margin-bottom: 14px; }
.promo-card-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--line-light);
}
.promo-card-price { font-family: var(--serif); font-size: 1.5rem; color: var(--text-dark); display: block; line-height: 1; }
.promo-card-vol { font-size: .72rem; color: var(--muted-dark); letter-spacing: .06em; display: block; margin-top: 2px; }

/* Wide bottom promo */
.promo-card-wide {
  grid-column: 1 / -1;
  background: var(--ink);
  border-color: rgba(194,165,107,.22);
}
.promo-card-wide-inner {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 32px; padding: 36px 40px;
}
.promo-card-wide-text h3 { color: var(--paper); font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 12px 0 10px; }
.promo-card-wide-text p { color: var(--muted-light); font-weight: 300; max-width: 560px; font-size: .98rem; }
.promo-card-wide-media img {
  max-height: 260px; object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.5));
}
.promo-card-wide .promo-stock { color: var(--muted-light); }

@media (max-width: 1024px) {
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo-featured { grid-row: span 1; min-height: 460px; }
  .promo-featured-bottles { width: 42%; opacity: .7; }
  .promo-card-wide-inner { grid-template-columns: 1fr; text-align: center; }
  .promo-card-wide-text p { margin: 0 auto; }
  .promo-card-wide-media { display: flex; justify-content: center; }
  .promo-cta-row { justify-content: center; }
}
@media (max-width: 700px) {
  .promo-grid { grid-template-columns: 1fr; }
  .promo-featured { min-height: auto; }
  .promo-featured-bottles { display: none; }
  .promo-card-foot { flex-direction: column; align-items: stretch; }
  .promo-card-foot .btn { width: 100%; }
  .promo-featured .promo-cta-row { flex-direction: column; align-items: stretch; }
  .promo-featured .btn { width: 100%; }
}

/* ---------- Category cards ---------- */
.cat-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex; align-items: flex-end;
  padding: 30px;
}
.cat-card img {
  position: absolute; top: 50%; left: 50%;
  width: 130%; transform: translate(-50%,-52%) rotate(-90deg);
  transition: transform .7s var(--ease);
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.5));
}
.cat:hover .cat-card img { transform: translate(-50%,-52%) rotate(-90deg) scale(1.06); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,10,8,.7), transparent 55%);
}
.cat-meta { position: relative; z-index: 2; }
.cat-meta h3 { color: var(--paper); font-size: 1.9rem; font-weight: 500; margin-top: 4px; }

/* =========================================================
   Story
   ========================================================= */
.story { background: var(--ink); color: var(--text-light); overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 70px; }
.story-figure { position: relative; }
.story-figure img { width: 100%; height: 660px; object-fit: cover; }
.story-figure .frame {
  position: absolute; inset: 18px;
  border: 1px solid rgba(246,241,231,.25);
  pointer-events: none;
}
.story-figure .est {
  position: absolute; bottom: -1px; right: -1px;
  background: var(--gold); color: var(--ink);
  padding: 20px 26px; text-align: center;
}
.story-figure .est b { font-family: var(--serif); font-size: 2rem; display: block; line-height: 1; }
.story-figure .est span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.story h2 { color: var(--paper); font-size: clamp(2.2rem,4.4vw,3.4rem); margin: 18px 0 26px; }
.story p { color: var(--muted-light); margin-bottom: 18px; font-weight: 300; }
.story .signature { height: 64px; margin: 28px 0 6px; opacity: .9; filter: invert(1) sepia(1) saturate(0) brightness(1.6); }

/* =========================================================
   Terroir (full bleed)
   ========================================================= */
.terroir {
  position: relative; padding: 160px 0;
  background-attachment: fixed; background-size: cover; background-position: center;
}
.terroir::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,10,8,.78), rgba(11,10,8,.35)); }
.terroir .container { position: relative; z-index: 2; }
.terroir h2 { color: var(--paper); font-size: clamp(2.4rem,5vw,4rem); margin: 18px 0 22px; max-width: 620px; }
.terroir p { color: rgba(236,229,215,.84); max-width: 520px; font-weight: 300; margin-bottom: 30px; }

/* =========================================================
   Experience / degustace
   ========================================================= */
.exp { background: var(--cream-2); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 0; }
.exp-media { position: relative; min-height: 520px; }
.exp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.exp-body { background: var(--ink); color: var(--text-light); padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; }
.exp-body h2 { color: var(--paper); font-size: clamp(2rem,4vw,3rem); margin: 18px 0 22px; }
.exp-body p { color: var(--muted-light); font-weight: 300; margin-bottom: 16px; }
.exp-list { list-style: none; margin: 14px 0 34px; }
.exp-list li { display: flex; gap: 14px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid rgba(176,151,109,.16); color: var(--text-light); }
.exp-list li span { color: var(--gold-light); font-family: var(--serif); font-size: 1.1rem; }
.exp-list li .price { margin-left: auto; color: var(--gold-light); font-family: var(--serif); font-size: 1.25rem; }
.exp--reverse .exp-media { order: 2; }
.exp--reverse .exp-body { order: 1; }
.exp-body--light {
  background: var(--cream);
  color: var(--text-dark);
}
.exp-body--light h2 { color: var(--ink); }
.exp-body--light p { color: rgba(42, 38, 32, .78); }
.exp-body--light .exp-list li {
  color: var(--text-dark);
  border-bottom-color: rgba(42, 38, 32, .1);
}
.exp-body--light .exp-list li span { color: var(--gold-deep); }
.exp-body--light .exp-list li .price { color: var(--gold-deep); }

/* =========================================================
   Awards (poster-inspired, gold on slate)
   ========================================================= */
.awards {
  position: relative;
  background:
    radial-gradient(80% 120% at 50% -10%, rgba(194,165,107,.18), transparent 60%),
    linear-gradient(180deg, #0C0B08, #15120C);
  color: var(--text-light);
  overflow: hidden;
}
.awards .head h2 { color: var(--paper); }
.awards-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 56px; margin-top: 54px;
  max-width: 920px; margin-left: auto; margin-right: auto;
}
.award-row {
  display: flex; align-items: center; gap: 22px;
  padding: 22px 0; border-bottom: 1px solid rgba(194,165,107,.18);
}
.medallion {
  flex: none; width: 64px; height: 64px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--gold-grad);
  box-shadow: 0 0 0 1px rgba(246,231,190,.5), 0 10px 24px -8px rgba(0,0,0,.7),
              inset 0 0 0 4px rgba(12,11,8,.85), inset 0 0 0 5px rgba(246,231,190,.4);
  color: #1a1407; text-align: center;
}
.medallion b { font-family: var(--serif); font-size: .92rem; font-weight: 600; line-height: 1; }
.medallion span { font-size: 7px; letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; font-weight: 500; }
.medallion--photo {
  width: 72px; height: 72px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
  inset: unset;
}
.medallion--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.medallion--crop {
  overflow: hidden;
  border-radius: 50%;
}
.medallion--crop img {
  width: 118%;
  height: 118%;
  margin: -9%;
  object-fit: cover;
  object-position: center 14%;
}
.award-info h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--paper); line-height: 1.1; }
.award-info p { color: var(--muted-light); font-size: .9rem; font-weight: 300; margin-top: 3px; }
.award-info p.note { color: var(--gold-light); font-style: italic; font-family: var(--serif); font-size: 1.05rem; }
@media (max-width: 700px) {
  .awards-grid { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================================
   News / Novinky
   ========================================================= */
.news {
  background: var(--paper);
  border-top: 1px solid var(--line-light);
}
.news .head .lead { margin-top: 14px; max-width: 540px; }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.news-card {
  background: var(--cream);
  border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  overflow: hidden;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}
.news-card-media {
  aspect-ratio: 4/3;
  background:
    radial-gradient(58% 52% at 50% 38%, rgba(194,165,107,.14), transparent 70%),
    linear-gradient(180deg, var(--paper), var(--cream-2));
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--line-light);
}
.news-card-media img {
  max-height: 190px; width: auto;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.22));
  transition: transform .6s var(--ease);
}
.news-card:hover .news-card-media img { transform: translateY(-4px); }
.news-card-body {
  padding: 24px 24px 26px; flex: 1;
  display: flex; flex-direction: column;
}
.news-card-date {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 10px;
}
.news-card-title {
  font-family: var(--serif); font-size: 1.42rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.15; margin-bottom: 10px;
}
.news-card-title a { transition: color .3s var(--ease); }
.news-card-title a:hover { color: var(--gold-deep); }
.news-card-excerpt {
  font-size: .92rem; color: var(--muted-dark); font-weight: 300;
  line-height: 1.6; flex: 1; margin-bottom: 18px;
}
.news-card-link {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.news-card-link svg { transition: transform .3s var(--ease); }
.news-card:hover .news-card-link svg { transform: translateX(4px); }
.news-more { text-align: center; margin-top: 44px; }
@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* News archive page */
.news-card.is-hidden { display: none; }

  background: var(--cream);
  padding: 56px 0 100px;
}
.news-archive-count {
  text-align: center;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-dark); margin-bottom: 36px;
}
.news-archive-count strong { color: var(--text-dark); font-weight: 500; }
.news-archive-grid { margin-top: 0; }
.news-card-tags { margin-bottom: 8px; }
.news-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 5px 10px;
  background: rgba(194,165,107,.12);
  color: var(--gold-deep);
  border: 1px solid rgba(194,165,107,.28);
}
.news-archive-cta {
  text-align: center; margin-top: 64px; padding-top: 48px;
  border-top: 1px solid var(--line-light);
}
.news-archive-cta p {
  color: var(--muted-dark); font-weight: 300; margin-bottom: 20px;
  max-width: 420px; margin-left: auto; margin-right: auto;
}
@media (min-width: 901px) {
  .news-archive-grid .news-card:last-child:nth-child(3n+1) {
    grid-column: 2;
  }
}

/* =========================================================
   Article detail (novinka)
   ========================================================= */
.article { background: var(--paper); padding: 64px 0 100px; }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px;
  margin-bottom: 18px;
}
.article-date {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
}
.article-meta .news-tag { margin: 0; }
.article-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.08;
  color: var(--ink); margin-bottom: 22px;
}
.article-lead {
  font-size: 1.16rem; line-height: 1.7; color: var(--text-dark);
  font-weight: 400; margin-bottom: 38px;
}
.article-figure {
  margin: 0 0 44px; border: 1px solid var(--line-light);
  background: var(--cream-2); overflow: hidden;
}
.article-figure img { width: 100%; height: auto; }
.article-figure figcaption {
  font-size: 12px; letter-spacing: .04em; color: var(--muted-dark);
  padding: 12px 16px; text-align: center; font-style: italic;
}
.article-body > * { max-width: 100%; }
.article-body p {
  font-size: 1.04rem; line-height: 1.85; color: #423d35;
  margin: 0 0 22px;
}
.article-body h2 {
  font-family: var(--serif); font-weight: 500; font-size: 1.7rem;
  color: var(--ink); margin: 44px 0 16px;
}
.article-body h3 {
  font-family: var(--serif); font-weight: 600; font-size: 1.32rem;
  color: var(--ink); margin: 34px 0 12px;
}
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { font-size: 1.04rem; line-height: 1.8; color: #423d35; margin-bottom: 8px; }
.article-body a { color: var(--gold-deep); text-decoration: underline; }
.article-body img { margin: 28px 0; border: 1px solid var(--line-light); }
.article-body blockquote {
  margin: 32px 0; padding: 6px 0 6px 28px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif); font-style: italic;
  font-size: 1.42rem; line-height: 1.5; color: var(--ink);
}
.article-foot {
  margin-top: 48px; padding-top: 30px;
  border-top: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.article-back {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--gold-deep);
  transition: color .3s var(--ease);
}
.article-back:hover { color: var(--ink); }
.article-back svg { transition: transform .3s var(--ease); }
.article-back:hover svg { transform: translateX(-4px); }
.article-cta {
  max-width: 760px; margin: 56px auto 0; text-align: center;
  padding: 40px 32px; background: var(--cream-2);
  border: 1px solid var(--line-light);
}
.article-cta h2 {
  font-family: var(--serif); font-weight: 500; font-size: 1.7rem;
  color: var(--ink); margin-bottom: 12px;
}
.article-cta p { color: var(--muted-dark); font-weight: 300; margin-bottom: 22px; }
@media (max-width: 720px) {
  .article { padding: 40px 0 72px; }
}

/* =========================================================
   Newsletter / club
   ========================================================= */
.club { background: var(--ink-2); text-align: center; border-top: 1px solid rgba(176,151,109,.14); }
.club .grape { height: 40px; margin: 0 auto 22px; opacity: .8; filter: brightness(0) saturate(100%) invert(72%) sepia(13%) saturate(900%) hue-rotate(354deg) brightness(90%); }
.club h2 { color: var(--paper); font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; }
.club p { color: var(--muted-light); max-width: 480px; margin: 0 auto 32px; font-weight: 300; }
.club-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.club-form input {
  flex: 1; min-width: 200px;
  background: transparent; border: 1px solid rgba(176,151,109,.32);
  color: var(--text-light); padding: 16px 18px;
  font-family: var(--sans); font-size: 14px; letter-spacing: .04em;
}
.club-form input::placeholder { color: var(--muted-light); }
.club-form input:focus { outline: none; border-color: var(--gold); }
.club .note { font-size: 11px; color: var(--muted-light); letter-spacing: .1em; margin-top: 16px; }

/* =========================================================
   Contact form
   ========================================================= */
.contact-section {
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(194,165,107,.12), transparent 62%),
    var(--ink);
  color: var(--text-light);
  border-top: 1px solid rgba(176,151,109,.14);
}
.contact-grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 82px); align-items: start;
}
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--paper); margin: 18px 0 22px;
}
.contact-copy p {
  max-width: 520px; color: var(--muted-light); font-size: 1.03rem;
  line-height: 1.75; font-weight: 300;
}
.contact-direct {
  display: grid; gap: 12px; margin-top: 34px;
}
.contact-direct a,
.contact-direct span {
  color: var(--text-light); font-size: 1rem; font-weight: 300;
}
.contact-direct a {
  width: fit-content; border-bottom: 1px solid rgba(194,165,107,.34);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.contact-direct a:hover {
  color: var(--gold-light); border-color: var(--gold-light);
}
.contact-form {
  padding: clamp(26px, 4vw, 38px);
  background: var(--paper); color: var(--text-dark);
  border: 1px solid rgba(194,165,107,.28);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.contact-fields {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form label {
  display: grid; gap: 8px;
}
.contact-form label > span:first-child {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-dark); font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; min-height: 50px; padding: 13px 15px;
  background: #fff; border: 1px solid rgba(42,38,32,.15);
  color: var(--text-dark); font-family: var(--sans); font-size: .96rem;
  border-radius: 0; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%),
    linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.contact-form textarea {
  min-height: 132px; resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: rgba(154,127,78,.72);
  box-shadow: 0 0 0 3px rgba(194,165,107,.13);
}
.contact-field-wide { grid-column: 1 / -1; }
.contact-consent {
  grid-template-columns: 18px 1fr; gap: 12px; align-items: start;
  margin: 18px 0;
}
.contact-consent input {
  min-height: 18px; width: 18px; padding: 0; margin-top: 4px;
  accent-color: var(--gold-deep);
}
.contact-consent span {
  color: var(--muted-dark); font-size: .88rem; line-height: 1.55;
}
.contact-status {
  margin: 0 0 16px; padding: 13px 15px;
  border: 1px solid rgba(194,165,107,.26);
  background: rgba(194,165,107,.09);
  color: var(--gold-deep); font-size: .9rem;
}
.contact-status.is-error {
  border-color: rgba(139,58,58,.25);
  background: rgba(139,58,58,.07);
  color: #8b3a3a;
}
.contact-trap {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.contact-form .btn[disabled] {
  opacity: .68; cursor: wait;
}

/* Account — login / registration */
.auth-section {
  padding: 56px 0 96px;
  background: var(--paper);
}
.auth-layout {
  max-width: 560px;
  margin: 0 auto;
}
.auth-card {
  background: #fff;
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .04);
  padding: 36px 40px 40px;
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line-light);
}
.auth-tab {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0 0 14px;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.auth-tab.is-active {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.auth-panel { display: none; }
.auth-panel.is-active { display: block; }
.auth-panel .lead {
  margin-bottom: 22px;
  color: var(--muted-dark);
  font-size: .98rem;
}
.auth-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.auth-fields label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.auth-fields label.auth-field-wide { grid-column: 1 / -1; }
.auth-fields label > span:first-child {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.auth-fields input {
  width: 100%;
  border: 1px solid var(--line-light);
  background: var(--paper);
  padding: 12px 14px;
  font: inherit;
  color: var(--text-dark);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.auth-fields input:focus {
  outline: none;
  border-color: rgba(194, 165, 107, .55);
  box-shadow: 0 0 0 3px rgba(194, 165, 107, .12);
}
.auth-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--muted-dark);
}
.auth-consent input { margin-top: 4px; flex-shrink: 0; }
.auth-consent a { color: var(--gold-deep); }
.auth-status {
  margin: 18px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(194, 165, 107, .26);
  background: rgba(194, 165, 107, .09);
  color: var(--gold-deep);
  font-size: .9rem;
}
.auth-status.is-error {
  border-color: rgba(139, 58, 58, .25);
  background: rgba(139, 58, 58, .07);
  color: #8b3a3a;
}
.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 22px;
}
.auth-actions .btn[disabled] { opacity: .68; cursor: wait; }
.auth-account-card {
  background: #fff;
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .04);
  padding: 36px 40px 40px;
}
.auth-account-head {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
}
.auth-account-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
}
.auth-account-head p {
  margin: 0;
  color: var(--muted-dark);
}
.auth-account-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.auth-account-meta div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(42, 38, 32, .08);
  font-size: .95rem;
}
.auth-account-meta dt {
  color: var(--muted-dark);
  font-weight: 400;
}
.auth-account-meta dd {
  margin: 0;
  text-align: right;
  color: var(--text-dark);
  font-weight: 500;
}
.auth-account-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}
.auth-logout {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--muted-dark);
  text-decoration: underline;
  cursor: pointer;
}
.auth-logout:hover { color: var(--gold-deep); }
@media (max-width: 640px) {
  .auth-card, .auth-account-card { padding: 28px 22px 30px; }
  .auth-fields { grid-template-columns: 1fr; }
}

.contact-map {
  margin-top: 28px;
  border: 1px solid rgba(194,165,107,.24);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(0,0,0,.18);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-navigate {
  width: fit-content;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(194,165,107,.34);
}
.contact-navigate:hover {
  color: var(--paper);
  border-color: var(--paper);
}
.contact-hours {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(176,151,109,.18);
}
.contact-hours dt {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.contact-hours dd {
  margin: 0;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}
.contact-company {
  margin-top: 22px;
  color: var(--muted-light);
  font-size: .92rem;
  line-height: 1.7;
  font-weight: 300;
}
.contact-company p {
  margin: 0 0 12px;
}
.contact-company a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(194,165,107,.28);
}
.contact-company a:hover {
  color: var(--paper);
}

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: var(--text-light); padding: 86px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(176,151,109,.14); }
.footer-brand img { height: 50px; margin-bottom: 22px; }
.footer-brand p { color: var(--muted-light); font-weight: 300; max-width: 280px; font-size: .95rem; }
.footer-col h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; color: var(--muted-light); font-size: .95rem; padding: 6px 0; font-weight: 300; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 14px; margin-top: 10px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(176,151,109,.3); display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom p { color: var(--muted-light); font-size: 12px; letter-spacing: .06em; }
.footer-bottom .legal { color: var(--gold-deep); }
.footer-bottom .legal a { color: var(--gold-light); text-decoration: underline; }
.footer-bottom .legal a:hover { color: var(--paper); }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .nav { padding-left: 24px; padding-right: 24px; gap: 16px; }
  .nav-menu { gap: 22px; }
  .nav-menu a { font-size: 13px; letter-spacing: .12em; }
}
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-figure img { height: 460px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-media { min-height: 340px; }
  .exp-body { padding: 56px 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  :root { --site-header-h: 98px; }
  .topbar { font-size: 10.5px; padding: 9px 14px; letter-spacing: .12em; }
  .nav { padding: 12px 20px; }
  .nav-logo img { height: 46px; }
}
@media (max-width: 820px) {
  .products { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .cat-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value:nth-child(2) { border-right: none; }
  .value:nth-child(1), .value:nth-child(2) { border-bottom: 1px solid rgba(176,151,109,.12); }
  .section { padding: 84px 0; }
  .terroir { background-attachment: scroll; padding: 110px 0; }
}
@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid rgba(176,151,109,.12); }
  .contact-fields { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* =========================================================
   Catalog / list page
   ========================================================= */
.nav-menu a.is-active { color: var(--gold-light); }
.nav-menu a.is-active::after { transform: scaleX(1); }

.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex; align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,8,6,.55) 0%, rgba(9,8,6,.82) 70%, rgba(9,8,6,.95) 100%),
    linear-gradient(90deg, rgba(9,8,6,.7), rgba(9,8,6,.2));
}
.page-hero-inner {
  position: relative; z-index: 2;
  padding-top: calc(var(--site-header-h) + 36px);
  width: 100%;
}
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin: 16px 0 14px;
}
.page-hero p {
  color: rgba(236,229,215,.8);
  max-width: 560px;
  font-size: 1.05rem;
  font-weight: 300;
}
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--gold-light); transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb span { opacity: .45; }

.page-hero--compact { min-height: 0; }
.page-hero--compact .page-hero-inner { padding-bottom: 36px; }
.page-hero--compact h1.display { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }

.legal-page { padding: 56px 0 96px; background: var(--paper); }
.legal-doc {
  max-width: 820px; margin: 0 auto;
  padding: 40px 44px;
  background: #fff;
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 50px rgba(0,0,0,.04);
}
.legal-doc h1 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 500;
  margin: 0 0 20px; color: var(--ink);
}
.legal-doc h2 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  margin: 28px 0 10px; color: var(--ink);
}
.legal-doc p, .legal-doc li {
  font-size: .95rem; line-height: 1.75; color: #4a443c;
  margin: 0 0 14px;
}
.legal-doc ol, .legal-doc ul { margin: 0 0 16px 20px; padding: 0; }
.legal-doc ol ol, .legal-doc ol ul { margin-top: 8px; }
.legal-doc a { color: var(--gold-deep); text-decoration: underline; }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: .9rem; }
.legal-doc td, .legal-doc th { border: 1px solid var(--line-light); padding: 10px 12px; vertical-align: top; }
.legal-links {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  justify-content: center; margin-top: 28px;
  font-size: .88rem;
}
.legal-links a { color: var(--gold-deep); text-decoration: underline; }
@media (max-width: 720px) {
  .legal-doc { padding: 24px 20px; }
}

.catalog-trust {
  background: var(--ink);
  border-bottom: 1px solid rgba(194,165,107,.14);
}
.catalog-trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1360px; margin: 0 auto;
}
.catalog-trust-item {
  padding: 22px 28px; text-align: center;
  border-right: 1px solid rgba(194,165,107,.12);
  color: var(--muted-light);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}
.catalog-trust-item:last-child { border-right: none; }
.catalog-trust-item b { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; letter-spacing: 0; text-transform: none; margin-bottom: 4px; }
.catalog-trust-item svg { width: 28px; height: 28px; color: var(--gold); margin: 0 auto 12px; display: block; }

.page-hero-proof {
  display: flex; align-items: center; gap: 12px; margin-top: 22px;
  color: rgba(236,229,215,.78); font-size: 13px; letter-spacing: .04em;
}
.page-hero-proof .rating-stars { color: var(--gold-light); font-size: 15px; letter-spacing: 2px; }

.page-hero-actions {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px 22px;
  margin-top: 30px;
}
.page-hero-ship {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(236,229,215,.82); font-weight: 500;
}
.page-hero-ship svg { width: 19px; height: 19px; color: var(--gold-light); flex-shrink: 0; }

.catalog-wrap { background: var(--cream); padding-bottom: 100px; }
.catalog-toolbar {
  position: sticky;
  top: var(--site-header-h);
  z-index: 50;
  background: rgba(246,241,231,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
  padding: 18px 0;
}
.catalog-toolbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 11px 18px;
  background: transparent;
  border: 1px solid var(--line-light);
  color: var(--muted-dark);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--text-dark); }
.filter-btn.active {
  background: var(--ink); border-color: var(--ink); color: var(--gold-light);
}
.catalog-meta {
  font-size: 12px; letter-spacing: .1em; color: var(--muted-dark);
  white-space: nowrap;
}
.catalog-meta strong { color: var(--text-dark); font-weight: 500; }

.catalog-section { padding-top: 56px; }
.catalog-section.is-empty { display: none; }
.catalog-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; margin-bottom: 32px; flex-wrap: wrap;
}
.catalog-section-head h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500; color: var(--text-dark);
}
.catalog-section-head span {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wine-tile {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.wine-tile::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease);
  z-index: 4;
}
.wine-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}
.wine-tile:hover::before { transform: scaleX(1); }
.wine-tile.is-hidden { display: none; }

.wine-tile-media {
  position: relative;
  padding: 34px 24px 14px;
  background: radial-gradient(110% 75% at 50% 0%, rgba(194,165,107,.12), transparent 68%);
  min-height: 312px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.wine-tile-glow {
  position: absolute; left: 50%; top: 54%; transform: translate(-50%,-50%);
  width: 74%; height: 74%; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,165,107,.4), transparent 64%);
  opacity: 0; transition: opacity .6s var(--ease); z-index: 0;
}
.wine-tile:hover .wine-tile-glow { opacity: 1; }
.wine-tile-media img {
  position: relative; z-index: 1;
  max-height: 288px; width: auto; object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.4));
  transition: transform .55s var(--ease);
}
.wine-tile-media.portrait img { max-height: 300px; }
.wine-tile:hover .wine-tile-media img { transform: translateY(-6px) scale(1.04) rotate(-1deg); }

/* badges */
.tag {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--gold-light);
}
.tag-bestseller { background: var(--wine); color: var(--paper); }
.tag-new { background: var(--ink-3); color: var(--gold-light); border: 1px solid rgba(194,165,107,.35); }

.wine-tile-body {
  padding: 18px 26px 26px;
  display: flex; flex-direction: column; flex: 1;
}
.wine-tile-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 8px;
}
.wine-tile-type {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep);
}
.wine-tile-year {
  font-size: 11px; letter-spacing: .12em; color: var(--muted-dark);
}
.wine-tile-name {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.1; margin-bottom: 9px;
}
.wine-tile-name a {
  color: inherit; text-decoration: none;
}
.wine-tile-name a:hover { color: var(--gold-deep); }

.catalog-error {
  margin-bottom: 32px; padding: 20px 24px;
  border: 1px solid rgba(180, 80, 80, .25);
  background: rgba(180, 80, 80, .06);
  color: #8b3a3a; text-align: center;
}
.wine-tile-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.rating-stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; line-height: 1; }
.rating-count { font-size: 11px; color: var(--muted-dark); letter-spacing: .04em; }
.wine-tile-note {
  font-size: .92rem; color: var(--muted-dark); font-weight: 300;
  line-height: 1.55; margin-bottom: 16px; flex: 1;
}
.wine-tile-stock {
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: #5f7d54; margin-bottom: 15px; font-weight: 500;
}
.stock-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6f9e5e; box-shadow: 0 0 0 3px rgba(111,158,94,.18);
}
.wine-tile-stock.low { color: #a9742c; }
.wine-tile-stock.low .stock-dot { background: #cf9b43; box-shadow: 0 0 0 3px rgba(207,155,67,.2); animation: pulse 1.8s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(207,155,67,.2); } 50% { box-shadow: 0 0 0 5px rgba(207,155,67,.08); } }
.wine-tile-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 14px; margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line-light);
}
.wine-tile-pricing { display: flex; flex-direction: column; gap: 3px; }
.price-row { display: flex; align-items: baseline; gap: 8px; }
.wine-tile-price {
  font-family: var(--serif); font-size: 1.9rem; color: var(--text-dark);
  line-height: 1; letter-spacing: .01em;
}
.price-old { font-size: .98rem; color: var(--muted-dark); text-decoration: line-through; }
.save-badge {
  font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--wine); font-weight: 700;
}
.price-vol { font-size: .72rem; color: var(--muted-dark); letter-spacing: .06em; }

/* secondary detail link — shared by wine & gift tiles */
.wine-tile-detail,
.gift-card-detail {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 0; flex-shrink: 0;
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.wine-tile-detail svg,
.gift-card-detail svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.wine-tile-detail:hover,
.gift-card-detail:hover { color: var(--ink); gap: 9px; }

/* primary full-width buy CTA */
.wine-tile-actions {
  margin-top: 16px;
  display: flex;
}
.wine-tile-actions .btn {
  width: 100%;
  padding: 16px 20px;
  font-size: 11.5px;
  letter-spacing: .18em;
}
.wine-tile-actions .btn svg { width: 16px; height: 16px; }
.wine-tile-actions .btn-gold {
  box-shadow: 0 12px 26px -16px rgba(176,151,109,.95);
}
.wine-tile:hover .wine-tile-actions .btn-gold {
  box-shadow: 0 18px 34px -14px rgba(176,151,109,1);
}
.wine-tile-media-clickable { cursor: pointer; }
.wine-tile-media .tag,
.wine-tile-media .wine-tile-glow {
  pointer-events: none;
}
.wine-tile-media-hit {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: flex-end; justify-content: center;
  width: 100%; height: 100%;
  padding: 34px 24px 14px; margin: 0;
  border: none; background: none;
  cursor: pointer; color: inherit;
}
.wine-tile-open:not(.btn) {
  font: inherit; text-align: inherit;
}

.catalog-bundle {
  position: relative;
  margin-top: 80px;
  background:
    radial-gradient(80% 130% at 100% 0%, rgba(194,165,107,.16), transparent 60%),
    var(--ink);
  border: 1px solid rgba(194,165,107,.25);
  padding: 52px 56px;
  display: grid; grid-template-columns: 1.3fr auto;
  align-items: center; gap: 48px;
  overflow: hidden;
}
.catalog-bundle h3 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  color: var(--paper); margin: 12px 0 14px;
}
.catalog-bundle p { color: var(--muted-light); font-weight: 300; max-width: 540px; }
.bundle-perks {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
}
.bundle-perks li {
  color: var(--text-light); font-size: 13px; font-weight: 300;
  display: flex; align-items: center; gap: 9px;
}
.bundle-perks li::before {
  content: ""; width: 16px; height: 16px; flex-shrink: 0;
  background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.catalog-bundle-cta {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 12px; min-width: 230px; text-align: center;
}
.bundle-price { display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.bundle-price .price-old { font-size: 1.1rem; color: var(--muted-light); }
.bundle-price-now { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-light); line-height: 1; }
.bundle-note { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-light); }
.catalog-bundle .btn { white-space: nowrap; }

@media (max-width: 1024px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-bundle { grid-template-columns: 1fr; text-align: center; padding: 44px 32px; }
  .catalog-bundle p { margin: 0 auto; }
  .bundle-perks { justify-content: center; }
  .catalog-bundle-cta { min-width: 0; max-width: 320px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .catalog-trust-grid { grid-template-columns: 1fr; }
  .catalog-trust-item { border-right: none; border-bottom: 1px solid rgba(194,165,107,.12); padding: 16px; }
  .catalog-trust-item:last-child { border-bottom: none; }
  .catalog-toolbar-inner { flex-direction: column; align-items: stretch; }
  .catalog-filters { justify-content: center; }
  .catalog-meta { text-align: center; }
}
@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .wine-tile-foot { align-items: center; }
  .wine-tile-actions .btn { justify-content: center; }
  .page-hero { min-height: 44vh; }
}

/* ── DEGUSTACE PAGES ── */
.deg-subnav {
  position: sticky; top: var(--site-header-h); z-index: 40;
  background: rgba(9,8,6,.96);
  border-bottom: 1px solid rgba(194,165,107,.18);
  backdrop-filter: blur(10px);
}
.deg-subnav-inner {
  display: flex; gap: 4px; overflow-x: auto;
  padding: 10px 0; scrollbar-width: none;
}
.deg-subnav-inner::-webkit-scrollbar { display: none; }
.deg-subnav a {
  flex-shrink: 0; padding: 10px 18px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(236,229,215,.62); border: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.deg-subnav a:hover { color: var(--gold-light); }
.deg-subnav a.is-active {
  color: var(--gold-light); border-color: rgba(194,165,107,.35);
  background: rgba(194,165,107,.08);
}

.deg-wrap { background: var(--cream); padding-bottom: 90px; }
.deg-intro {
  padding: 56px 0 20px; text-align: center;
}
.deg-intro p {
  max-width: 720px; margin: 0 auto; color: var(--muted-dark);
  font-size: 1.05rem; line-height: 1.7; font-weight: 300;
}
.deg-intro-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 28px;
}

.deg-offer {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; border-top: 1px solid var(--line-light);
}
.deg-offer--reverse .deg-offer-media { order: 2; }
.deg-offer--reverse .deg-offer-body { order: 1; }
.deg-offer-media {
  position: relative; min-height: 320px; overflow: hidden;
}
.deg-offer-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.deg-offer:hover .deg-offer-media img { transform: scale(1.03); }
.deg-offer-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px clamp(28px, 5vw, 72px);
  background: var(--paper);
}
.deg-offer-body .kicker { margin-bottom: 10px; }
.deg-offer-body h2 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--text-dark); margin-bottom: 16px; line-height: 1.1;
}
.deg-offer-body p {
  color: var(--muted-dark); font-weight: 300; line-height: 1.65;
  margin-bottom: 12px; max-width: 520px;
}
.deg-offer-price {
  font-family: var(--serif); font-size: 1.55rem; color: var(--text-dark);
  margin: 18px 0 22px;
}
.deg-offer-price small {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-dark); font-weight: 400;
}
.deg-offer-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.deg-offer-note {
  margin-top: 14px; font-size: .88rem; color: var(--muted-dark); font-weight: 300;
}

.deg-band {
  padding: 72px 0;
  border-top: 1px solid var(--line-light);
}
.deg-band--dark {
  background: var(--ink); color: var(--text-light);
  border-top-color: rgba(194,165,107,.15);
}
.deg-band--dark p { color: var(--muted-light); }
.deg-band-head {
  text-align: center; max-width: 680px; margin: 0 auto 48px;
}
.deg-band-head h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 12px 0 14px; line-height: 1.1;
}
.deg-band--dark .deg-band-head h2 { color: var(--paper); }

.deg-calendar-box {
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: 44px 36px;
  background: rgba(194,165,107,.06);
  border: 1px solid rgba(194,165,107,.22);
}
.deg-calendar-box p { margin-bottom: 22px; }

.deg-booking-ui {
  display: grid; grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px; align-items: start;
}
.deg-term-list {
  display: grid; gap: 14px;
}
.deg-term-items {
  display: grid;
  gap: 14px;
}
.deg-term-card.is-hidden,
.deg-term-card[hidden] {
  display: none !important;
}
.deg-term-loading {
  padding: 28px 8px; text-align: center; color: rgba(255,255,255,.6); font-size: .95rem;
}
.deg-term-controls {
  display: grid; gap: 14px; margin-bottom: 6px;
}
.deg-month-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(194,165,107,.18);
}
.deg-month-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border: 1px solid rgba(194,165,107,.28);
  background: rgba(255,255,255,.04); color: var(--paper);
  font-family: var(--serif); font-size: 1.02rem; line-height: 1; cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.deg-month-tab span {
  font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .06em; padding: 3px 7px; border-radius: 999px;
  background: rgba(194,165,107,.2); color: var(--gold-light);
}
.deg-month-tab:hover { border-color: rgba(194,165,107,.55); }
.deg-month-tab.is-active {
  background: var(--gold); border-color: var(--gold); color: var(--ink);
}
.deg-month-tab.is-active span { background: rgba(26,20,16,.16); color: var(--ink); }
.deg-month-tab.is-empty { opacity: .4; }

.deg-term-empty {
  padding: 26px 22px; text-align: center; color: var(--muted-light);
  border: 1px dashed rgba(194,165,107,.3); background: rgba(255,255,255,.03);
  line-height: 1.6;
}
.deg-term-empty a { color: var(--gold-light); text-decoration: underline; }

.deg-term-urgent {
  color: var(--ink); background: var(--gold-light);
  padding: 3px 9px; font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}

.deg-term-toolbar {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.deg-filter {
  padding: 10px 14px; border: 1px solid rgba(194,165,107,.24);
  background: rgba(255,255,255,.04); color: rgba(236,229,215,.72);
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.deg-filter:hover,
.deg-filter.is-active {
  color: var(--ink); background: var(--gold); border-color: var(--gold);
}
.deg-term-card {
  display: grid; grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 22px; align-items: stretch; padding: 18px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(194,165,107,.18);
  color: var(--text-light); cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.deg-term-card:hover,
.deg-term-card.is-selected {
  transform: translateY(-2px); border-color: rgba(194,165,107,.55);
  background: rgba(194,165,107,.09);
}
.deg-term-card.is-disabled {
  opacity: .62; cursor: default;
}
.deg-term-card.is-disabled:hover {
  transform: none; border-color: rgba(194,165,107,.18); background: rgba(255,255,255,.045);
}
.deg-term-date {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  min-height: 96px; border: 1px solid rgba(194,165,107,.3);
  background: rgba(194,165,107,.08);
}
.deg-term-date span {
  font-family: var(--serif); font-size: 2.35rem; line-height: 1; color: var(--gold-light);
}
.deg-term-date small {
  margin-top: 6px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-light);
}
.deg-term-body h3 {
  font-family: var(--serif); font-size: 1.5rem; line-height: 1.15;
  margin: 8px 0 8px; color: var(--paper);
}
.deg-term-body p {
  margin: 0 0 14px; color: var(--muted-light); font-size: .94rem; line-height: 1.6;
}
.deg-term-meta,
.deg-term-details {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  color: rgba(236,229,215,.72); font-size: .8rem;
}
.deg-term-pill {
  color: var(--gold-light); letter-spacing: .12em; text-transform: uppercase; font-size: .72rem;
}
.deg-term-details span {
  display: inline-flex; align-items: center; gap: 8px;
}
.deg-term-details span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.deg-term-action {
  align-self: center; display: inline-flex; align-items: center; justify-content: center;
  min-width: 128px; padding: 13px 18px; border: 1px solid rgba(194,165,107,.4);
  background: transparent; color: var(--gold-light); font-family: var(--sans);
  font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.deg-term-action:hover,
.deg-term-card.is-selected .deg-term-action {
  color: var(--ink); background: var(--gold); border-color: var(--gold);
}

.deg-reservation-card {
  position: sticky; top: calc(var(--site-header-h) + 72px);
  padding: 28px; background: var(--paper); color: var(--text-dark);
  border: 1px solid rgba(194,165,107,.32);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.deg-reservation-head {
  padding-bottom: 22px; border-bottom: 1px solid var(--line-light);
}
.deg-reservation-head h3 {
  font-family: var(--serif); font-size: 1.85rem; line-height: 1.12;
  margin: 10px 0 8px; color: var(--text-dark);
}
.deg-reservation-head p { margin: 0; color: var(--muted-dark); }
.deg-reservation-summary {
  display: grid; gap: 12px; margin: 22px 0; padding: 0 0 22px;
  border-bottom: 1px solid var(--line-light);
}
.deg-reservation-summary div {
  display: flex; justify-content: space-between; gap: 18px;
}
.deg-reservation-summary dt {
  color: var(--muted-dark); font-size: .88rem;
}
.deg-reservation-summary dd {
  margin: 0; text-align: right; font-weight: 400; color: var(--text-dark);
}
.deg-reservation-form {
  display: grid; gap: 16px;
}
.deg-form-row {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
}
.deg-reservation-form label {
  display: grid; gap: 7px; color: var(--muted-dark); font-size: .84rem;
}
.deg-reservation-form label span:first-child {
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase; font-size: 11px;
  color: var(--text-dark);
}
.deg-reservation-form em {
  color: var(--muted-dark); font-style: normal; text-transform: none; letter-spacing: 0;
}
.deg-reservation-form input,
.deg-reservation-form textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  border: 1px solid rgba(42,38,32,.16); background: #fff; color: var(--text-dark);
  font: inherit; border-radius: 0; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.deg-reservation-form textarea { min-height: 96px; resize: vertical; }
.deg-reservation-form input:focus,
.deg-reservation-form textarea:focus {
  outline: none; border-color: rgba(154,127,78,.72);
  box-shadow: 0 0 0 3px rgba(194,165,107,.13);
}
.deg-form-row--total {
  align-items: stretch;
}
.deg-total-box {
  display: grid; align-content: center; gap: 4px; padding: 12px 16px;
  background: rgba(194,165,107,.09); border: 1px solid rgba(194,165,107,.22);
}
.deg-total-box span {
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-dark);
}
.deg-total-box strong {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 500; line-height: 1.1;
  color: var(--text-dark);
}
.deg-checkbox {
  grid-template-columns: 18px 1fr; align-items: start; gap: 11px;
  font-size: .86rem; line-height: 1.55;
}
.deg-checkbox input {
  min-height: 18px; width: 18px; padding: 0; margin-top: 3px; accent-color: var(--gold-deep);
}
.deg-checkbox span {
  color: var(--muted-dark);
}
.deg-form-note {
  margin: -2px 0 0; color: var(--muted-dark); font-size: .82rem; line-height: 1.5;
}
.deg-form-note.is-visible {
  padding: 12px 14px; background: rgba(194,165,107,.1);
  border: 1px solid rgba(194,165,107,.24); color: var(--gold-deep);
}
.deg-form-note.is-error {
  background: rgba(176,58,46,.08); border-color: rgba(176,58,46,.32); color: #9a3b2e;
}

.deg-reservation-trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 10px;
  margin: 18px 0 0; font-size: .84rem; color: var(--muted-dark);
}
.deg-reservation-trust .rating-stars { font-size: 14px; }

.deg-reservation-includes {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: grid; gap: 8px;
}
.deg-reservation-includes li {
  position: relative; padding-left: 26px;
  font-size: .88rem; line-height: 1.45; color: var(--text-dark);
}
.deg-reservation-includes li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 16px; height: 16px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a7f4e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.deg-reservation-summary div.is-low dd {
  color: #9a3b2e; font-weight: 500;
}

.deg-note-toggle {
  border: 1px solid rgba(42,38,32,.12); background: rgba(194,165,107,.05);
}
.deg-note-toggle summary {
  cursor: pointer; padding: 12px 14px; list-style: none;
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dark);
}
.deg-note-toggle summary::-webkit-details-marker { display: none; }
.deg-note-toggle summary::after {
  content: "+"; float: right; font-size: 1.1rem; line-height: 1; color: var(--gold-deep);
}
.deg-note-toggle[open] summary::after { content: "–"; }
.deg-note-toggle summary em {
  color: var(--muted-dark); font-style: normal; text-transform: none; letter-spacing: 0;
  font-weight: 400;
}
.deg-note-toggle textarea {
  width: 100%; min-height: 88px; margin: 0; padding: 12px 14px; border: none;
  border-top: 1px solid rgba(42,38,32,.1); background: #fff; color: var(--text-dark);
  font: inherit; resize: vertical;
}
.deg-note-toggle textarea:focus { outline: none; box-shadow: inset 0 0 0 2px rgba(194,165,107,.18); }

.deg-secure-note {
  display: flex; align-items: center; gap: 8px; margin: -4px 0 0;
  font-size: .78rem; line-height: 1.45; color: var(--muted-dark);
}
.deg-secure-note svg { flex: 0 0 auto; color: var(--gold-deep); }

.deg-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.deg-step {
  padding: 28px 22px; background: var(--paper);
  border: 1px solid var(--line-light);
}
.deg-band--dark .deg-step {
  background: rgba(255,255,255,.03);
  border-color: rgba(194,165,107,.14);
}
.deg-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-grad); color: var(--ink);
  font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.deg-step h3 {
  font-family: var(--serif); font-size: 1.35rem; margin-bottom: 10px;
  color: var(--text-dark);
}
.deg-band--dark .deg-step h3 { color: var(--paper); }
.deg-step p { font-size: .92rem; line-height: 1.6; margin: 0; }

.deg-faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 960px; margin: 0 auto;
}
.deg-faq-item {
  padding: 22px 24px; background: var(--paper);
  border: 1px solid var(--line-light);
}
.deg-faq-item h3 {
  font-family: var(--serif); font-size: 1.2rem; margin-bottom: 10px;
  color: var(--text-dark);
}
.deg-faq-item p { font-size: .92rem; line-height: 1.6; margin: 0; color: var(--muted-dark); }

.deg-pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 960px; margin: 0 auto;
}
.deg-price-card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line-light);
  overflow: hidden;
}
.deg-price-card--featured {
  border-color: rgba(194,165,107,.45);
  box-shadow: 0 18px 50px rgba(194,165,107,.12);
}
.deg-price-card-media { height: 220px; overflow: hidden; }
.deg-price-card-media img { width: 100%; height: 100%; object-fit: cover; }
.deg-price-card-body { padding: 32px 30px 34px; flex: 1; display: flex; flex-direction: column; }
.deg-price-card-body h2 {
  font-family: var(--serif); font-size: 1.75rem; margin: 8px 0 14px;
}
.deg-price-list {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.deg-price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem; color: var(--muted-dark); line-height: 1.5;
}
.deg-price-list li::before {
  content: ""; width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px;
  background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.deg-price-amount {
  font-family: var(--serif); font-size: 2rem; color: var(--text-dark);
  margin-bottom: 18px;
}
.deg-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.deg-split-media {
  min-height: 380px; border-radius: 2px; overflow: hidden;
}
.deg-split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.deg-split-body h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 10px 0 14px;
}
.deg-split-body p { color: var(--muted-dark); line-height: 1.65; margin-bottom: 12px; }
.deg-band--dark .deg-split-body h2 { color: var(--paper); }
.deg-band--dark .deg-split-body p,
.deg-band--dark .deg-price-list li { color: var(--muted-light); }

.deg-cta-final {
  text-align: center; max-width: 700px; margin: 0 auto;
  padding: 56px 32px;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(194,165,107,.14), transparent 65%),
    var(--ink);
  border: 1px solid rgba(194,165,107,.22);
}
.deg-cta-final h2 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--paper); margin: 12px 0 14px;
}
.deg-cta-final p { color: var(--muted-light); margin-bottom: 24px; }
.deg-cta-final .deg-intro-actions { margin-top: 0; }

@media (max-width: 900px) {
  .deg-offer, .deg-split { grid-template-columns: 1fr; }
  .deg-offer--reverse .deg-offer-media,
  .deg-offer--reverse .deg-offer-body { order: unset; }
  .deg-offer-media { min-height: 260px; }
  .deg-booking-ui { grid-template-columns: 1fr; }
  .deg-reservation-card { position: static; }
  .deg-steps { grid-template-columns: repeat(2, 1fr); }
  .deg-faq-grid, .deg-pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .deg-steps { grid-template-columns: 1fr; }
  .deg-offer-body { padding: 40px 24px; }
  .deg-term-card {
    grid-template-columns: 76px minmax(0, 1fr); gap: 14px; padding: 14px;
  }
  .deg-term-date { min-height: 76px; }
  .deg-term-date span { font-size: 1.9rem; }
  .deg-term-action {
    grid-column: 1 / -1; width: 100%;
  }
  .deg-form-row { grid-template-columns: 1fr; }
  .deg-reservation-card { padding: 22px; }
}

/* ════════════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP) — wine template
   ════════════════════════════════════════════ */
.pdp-wrap {
  background: var(--cream);
  background-image: linear-gradient(180deg, var(--paper) 0%, var(--cream) 420px);
}
.pdp-breadcrumb {
  padding: calc(var(--site-header-h) + 18px) 0 0;
  color: var(--muted-dark);
  margin-bottom: 36px;
}
.pdp-breadcrumb a { color: var(--gold-deep); transition: color .3s var(--ease); }
.pdp-breadcrumb a:hover { color: var(--text-dark); }
.pdp-breadcrumb span { opacity: .45; }

/* ---- main split ---- */
.pdp-main { padding: 0 0 72px; }
.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

/* ---- gallery ---- */
.pdp-gallery { position: sticky; top: calc(var(--site-header-h) + 24px); }
.pdp-stage {
  position: relative;
  background:
    radial-gradient(58% 52% at 50% 38%, rgba(194,165,107,.22), transparent 70%),
    linear-gradient(180deg, var(--paper), var(--cream-2));
  border: 1px solid var(--line-light);
  border-radius: 3px;
  min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 40px;
}
.pdp-stage img {
  position: relative; z-index: 2;
  max-height: 560px; width: auto;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,.4));
  transition: transform 1s var(--ease), opacity .5s var(--ease);
}
.pdp-stage:hover img { transform: translateY(-8px) scale(1.02); }
.pdp-stage-badges {
  position: absolute; top: 22px; left: 22px; z-index: 3;
  display: flex; flex-direction: column; gap: 10px;
}
.pdp-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  background: var(--ink); color: var(--gold-light);
  border: 1px solid rgba(194,165,107,.4);
}
.pdp-pill.solid-gold { background: var(--gold-grad); color: var(--ink); border: none; }
.pdp-pill svg { width: 13px; height: 13px; }
.pdp-thumbs {
  display: flex; gap: 12px; margin-top: 18px;
}
.pdp-thumb {
  flex: 1; aspect-ratio: 1; max-width: 92px;
  border: 1px solid var(--line-light); border-radius: 3px;
  background: var(--paper); overflow: hidden; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding: 8px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.pdp-thumb img { max-height: 100%; width: auto; object-fit: contain; }
.pdp-thumb.thumb-cover { padding: 0; }
.pdp-thumb.thumb-cover img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover { transform: translateY(-2px); }
.pdp-thumb.is-active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

/* ---- buy panel ---- */
.pdp-buy { padding-top: 6px; }
.pdp-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px; font-weight: 500;
}
.pdp-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem); line-height: 1.02;
  color: var(--text-dark); margin-bottom: 12px;
}
.pdp-title em { font-style: italic; }
.pdp-subline { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 18px; }
.pdp-rating { display: flex; align-items: center; gap: 9px; }
.pdp-rating .rating-stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.pdp-rating a { font-size: 12px; color: var(--muted-dark); border-bottom: 1px solid var(--line-light); }
.pdp-rating a:hover { color: var(--text-dark); }
.pdp-sku { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); }
.pdp-lead {
  font-size: 1.08rem; line-height: 1.7; color: var(--muted-dark);
  font-weight: 300; margin-bottom: 24px; max-width: 540px;
}
.pdp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.pdp-tag {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dark); padding: 7px 14px;
  border: 1px solid var(--line); border-radius: 40px; background: var(--paper);
}

/* price + purchase box */
.pdp-buybox {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 26px 28px 28px;
  box-shadow: 0 24px 60px -40px rgba(0,0,0,.4);
}
.pdp-price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pdp-price { font-family: var(--serif); font-size: 2.7rem; color: var(--text-dark); line-height: 1; }
.pdp-price-old { font-size: 1.2rem; color: var(--muted-dark); text-decoration: line-through; }
.pdp-price-save {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  color: var(--paper); background: var(--wine); padding: 4px 10px; border-radius: 3px;
}
.pdp-price-unit { font-size: 12px; color: var(--muted-dark); letter-spacing: .06em; margin-top: 8px; }
.pdp-stockline {
  display: flex; align-items: center; gap: 9px; margin: 16px 0 20px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: #5f7d54;
}
.pdp-stockline.low { color: #a9742c; }
.pdp-stockline .stock-dot { width: 8px; height: 8px; }

.pdp-cart-row { display: flex; gap: 12px; align-items: stretch; }
.pdp-qty {
  display: flex; align-items: center;
  border: 1px solid var(--line); border-radius: 3px; background: var(--cream);
  flex-shrink: 0;
}
.pdp-qty button {
  width: 46px; height: 100%; min-height: 54px;
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--text-dark); font-family: var(--serif);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.pdp-qty button:hover { color: var(--gold-deep); background: rgba(194,165,107,.12); }
.pdp-qty input {
  width: 44px; text-align: center; border: none; background: none;
  font-family: var(--sans); font-size: 15px; color: var(--text-dark);
  -moz-appearance: textfield;
}
.pdp-qty input::-webkit-outer-spin-button,
.pdp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-add { flex: 1; min-height: 54px; }
.pdp-add.is-added { background: #5f7d54 !important; border-color: #5f7d54 !important; color: #fff !important; }
.pdp-add.is-added::after { display: none; }
.pdp-buy-secondary {
  display: flex; gap: 12px; margin-top: 12px;
}
.pdp-buy-secondary .btn { flex: 1; }
.pdp-instant {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-light);
  display: grid; gap: 11px;
}
.pdp-instant li {
  display: flex; align-items: center; gap: 11px;
  font-size: 13px; color: var(--muted-dark); list-style: none;
}
.pdp-instant svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }
.pdp-instant b { color: var(--text-dark); font-weight: 500; }

/* ---- unified content flow ---- */
.pdp-flow { padding-bottom: 96px; }
.pdp-flow .ornament { margin: 52px auto; }

.pdp-panel {
  background: var(--paper);
  border: 1px solid var(--line-light);
  padding: clamp(32px, 4.5vw, 52px);
}
.pdp-block { padding: 8px 0; }
.pdp-block-head { max-width: 560px; margin-bottom: 36px; }
.pdp-block-head h2 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.08; margin: 10px 0 8px; color: var(--text-dark);
}
.pdp-block-head p { color: var(--muted-dark); font-weight: 300; line-height: 1.65; }

/* ---- section scaffolding (legacy aliases) ---- */
.pdp-section { padding: 0; border: none; }
.pdp-section.dark { background: transparent; color: inherit; }
.pdp-section-head { max-width: 560px; margin: 0 0 36px; text-align: left; }
.pdp-section-head h2 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.5rem); line-height: 1.08;
  margin: 10px 0 8px; color: var(--text-dark);
}
.pdp-section-head p { color: var(--muted-dark); font-weight: 300; }

/* ---- tasting profile ---- */
.pdp-profile-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  max-width: 1040px; margin: 0 auto;
}
.pdp-bars { display: grid; gap: 22px; }
.pdp-bar-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 9px;
  color: var(--text-dark);
}
.pdp-bar-label span:last-child { color: var(--muted-dark); font-size: 11px; }
.pdp-bar-track { height: 4px; background: rgba(194,165,107,.2); border-radius: 4px; position: relative; }
.pdp-bar-fill { height: 100%; background: var(--gold-grad); border-radius: 4px; width: 0; transition: width 1.1s var(--ease); }
.pdp-aromas { display: grid; gap: 16px; }
.pdp-aroma {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-light);
}
.pdp-aroma:last-child { border-bottom: none; padding-bottom: 0; }
.pdp-aroma-ico {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--gold-deep);
}
.pdp-aroma-ico svg { width: 20px; height: 20px; }
.pdp-aroma b { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--text-dark); font-weight: 500; }
.pdp-aroma span { font-size: 12.5px; color: var(--muted-dark); }

/* serving chips */
.pdp-serve {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line-light);
}
.pdp-serve-chip {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 20px; border: 1px solid var(--line-light); border-radius: 3px;
  background: var(--cream); flex: 1; min-width: 180px;
}
.pdp-serve-chip svg { width: 22px; height: 22px; color: var(--gold-deep); flex-shrink: 0; }
.pdp-serve-chip b { display: block; color: var(--text-dark); font-size: 14px; font-weight: 500; }
.pdp-serve-chip span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-dark); }

/* ---- story split ---- */
.pdp-story { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.pdp-story-media img { width: 100%; border-radius: 3px; min-height: 360px; object-fit: cover; border: 1px solid var(--line-light); }
.pdp-story-caption {
  margin-top: 12px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-dark);
}
.pdp-story-body h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.35rem); margin: 10px 0 14px; line-height: 1.08; }
.pdp-story-body p { color: var(--muted-dark); line-height: 1.75; margin-bottom: 14px; font-weight: 300; }
.pdp-signature { height: 48px; margin-top: 10px; opacity: .8; }

/* ---- pairing cards ---- */
.pdp-pairing {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line-light); background: var(--paper);
}
.pdp-pair {
  text-align: center; padding: 30px 18px;
  border-right: 1px solid var(--line-light);
  transition: background .35s var(--ease);
}
.pdp-pair:last-child { border-right: none; }
.pdp-pair:hover { background: var(--cream); }
.pdp-pair-ico {
  width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 50%;
  background: rgba(194,165,107,.1); display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.pdp-pair-ico svg { width: 22px; height: 22px; }
.pdp-pair b { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--text-dark); margin-bottom: 5px; }
.pdp-pair span { font-size: 12.5px; color: var(--muted-dark); line-height: 1.45; }

/* ---- specs ---- */
.pdp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.pdp-spec {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line-light);
}
.pdp-spec dt { color: var(--muted-dark); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.pdp-spec dd { color: var(--text-dark); font-weight: 500; text-align: right; }

/* ---- reviews ---- */
.pdp-reviews-head {
  display: flex; align-items: center; gap: 22px;
  margin-bottom: 32px;
}
.pdp-score b { font-family: var(--serif); font-size: 2.8rem; color: var(--text-dark); line-height: 1; }
.pdp-score .rating-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.pdp-score span { display: block; font-size: 12px; color: var(--muted-dark); margin-top: 4px; }
.pdp-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pdp-review {
  background: var(--paper); border: 1px solid var(--line-light); border-radius: 3px;
  padding: 24px 22px;
}
.pdp-review .rating-stars { color: var(--gold); font-size: 13px; letter-spacing: 1.5px; }
.pdp-review p { color: var(--text-dark); font-weight: 300; line-height: 1.6; margin: 12px 0 16px; font-style: italic; }
.pdp-review-by { display: flex; align-items: center; gap: 11px; }
.pdp-review-ava {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); color: var(--ink); font-size: 16px; font-weight: 600;
}
.pdp-review-by b { font-size: 13.5px; color: var(--text-dark); display: block; }
.pdp-review-by span { font-size: 11px; color: var(--muted-dark); }

/* ---- cross-sell ---- */
.pdp-cross { padding-top: 16px; }
.pdp-cross .catalog-grid { margin-top: 0; }

/* panel internal divider */
.pdp-panel-divider {
  height: 1px; background: var(--line-light); margin: 40px 0;
}

/* ---- sticky add bar ---- */
.pdp-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(16,14,11,.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(194,165,107,.3);
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.pdp-stickybar.show { transform: translateY(0); }
.pdp-stickybar-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 0;
}
.pdp-stickybar-thumb { width: 44px; height: 44px; flex-shrink: 0; }
.pdp-stickybar-thumb img { height: 100%; width: auto; margin: 0 auto; filter: drop-shadow(0 6px 8px rgba(0,0,0,.5)); }
.pdp-stickybar-info { flex: 1; min-width: 0; }
.pdp-stickybar-info b { color: var(--paper); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.pdp-stickybar-info span { display: block; font-size: 12px; color: var(--muted-light); }
.pdp-stickybar-price { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-light); white-space: nowrap; }
.pdp-stickybar .btn { white-space: nowrap; }
.pdp-stickybar .pdp-qty { background: rgba(255,255,255,.05); border-color: rgba(194,165,107,.3); }
.pdp-stickybar .pdp-qty input { color: var(--paper); }
.pdp-stickybar .pdp-qty button { color: var(--text-light); }

@media (max-width: 980px) {
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; max-width: 460px; margin: 0 auto; }
  .pdp-profile-grid, .pdp-story { grid-template-columns: 1fr; gap: 36px; }
  .pdp-pairing { grid-template-columns: repeat(2, 1fr); }
  .pdp-pair:nth-child(2) { border-right: none; }
  .pdp-pair:nth-child(1), .pdp-pair:nth-child(2) { border-bottom: 1px solid var(--line-light); }
  .pdp-reviews { grid-template-columns: 1fr; }
  .pdp-specs { grid-template-columns: 1fr; }
  .pdp-serve-chip { min-width: 0; }
}
@media (max-width: 600px) {
  .pdp-stickybar-info span, .pdp-stickybar-thumb { display: none; }
  .pdp-pairing { grid-template-columns: 1fr; }
  .pdp-buy-secondary { flex-direction: column; }
  .pdp-stickybar .pdp-qty { display: none; }
}

/* Gifts page */
.gifts-wrap { padding-bottom: 100px; }
.gifts-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.gift-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.gift-card:hover {
  border-color: rgba(194,165,107,.45);
  box-shadow: 0 18px 40px rgba(30,30,30,.08);
  transform: translateY(-3px);
}
.gift-card-media {
  position: relative; aspect-ratio: 4/3;
  background: linear-gradient(160deg, rgba(194,165,107,.08), rgba(30,30,30,.03));
  border-bottom: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gift-card-media .gift-card-tag,
.gift-card-media .wine-tile-glow {
  pointer-events: none;
}
.gift-card-media-hit {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  padding: 0; margin: 0;
  border: none; background: none;
  cursor: pointer; text-decoration: none; color: inherit;
}
.gift-card-media-hit img {
  width: 100%; height: 100%; object-fit: cover;
}
.gift-card-media-clickable { cursor: pointer; }
.gift-card-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.gift-card-placeholder { color: var(--gold-deep); opacity: .55; }
.gift-card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 6px 10px;
  background: rgba(255,255,255,.92);
  color: var(--gold-deep);
  border: 1px solid rgba(194,165,107,.35);
}
.gift-card-body {
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; flex: 1;
}
.gift-card-name {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.15; margin-bottom: 10px;
}
.gift-card-name a { color: inherit; text-decoration: none; }
.gift-card-name a:hover { color: var(--gold-deep); }
.gift-card-note {
  color: var(--muted-dark); font-size: .92rem; font-weight: 300;
  line-height: 1.65; margin-bottom: 14px; flex: 1;
}
.gift-card-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 14px; margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line-light);
}
.gift-card-pricing { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.gift-card-price {
  font-family: var(--serif); font-size: 1.9rem;
  color: var(--text-dark); line-height: 1; letter-spacing: .01em;
}
.gift-card-price-note {
  font-size: .72rem; letter-spacing: .06em;
  color: var(--muted-dark);
}
.gifts-crosslinks {
  margin-top: 80px; padding-top: 56px;
  border-top: 1px solid var(--line-light);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.gifts-crosslink {
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line-light);
}
.gifts-crosslink h3 { margin: 10px 0 12px; font-size: clamp(1.6rem, 2.5vw, 2rem); }
.gifts-crosslink p { color: var(--muted-dark); font-weight: 300; margin-bottom: 20px; max-width: 38ch; }
@media (max-width: 768px) {
  .gifts-crosslinks { grid-template-columns: 1fr; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
}

.gift-card-bundle .gift-card-media { cursor: pointer; }
.gift-card-open:not(.btn) {
  background: none; border: none; padding: 0; margin: 0;
  font: inherit; color: inherit; cursor: pointer; text-align: inherit;
}
.gift-card-name-btn {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.15;
}
.gift-card-name-btn:hover { color: var(--gold-deep); }
.gift-card-bundle-hint {
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-deep); margin: -6px 0 12px;
}
.gift-card-actions {
  margin-top: 16px;
  display: flex;
}
.gift-card-actions .btn {
  width: 100%;
  padding: 16px 20px;
  font-size: 11.5px;
  letter-spacing: .18em;
}
.gift-card-actions .btn svg { width: 16px; height: 16px; }
.gift-card-actions .btn-gold {
  box-shadow: 0 12px 26px -16px rgba(176,151,109,.95);
}
.gift-card:hover .gift-card-actions .btn-gold {
  box-shadow: 0 18px 34px -14px rgba(176,151,109,1);
}

.gift-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s, visibility .25s;
}
.gift-modal.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.gift-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 18, 16, .72);
  backdrop-filter: blur(4px);
}
.gift-modal-dialog {
  position: relative; z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line-light);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.gift-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line-light);
  color: var(--text-dark); cursor: pointer;
}
.gift-modal-panel {
  /* wrapper for modal clone */
}
.gift-detail-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
}
.gift-modal-gallery,
.gift-detail-gallery {
  background: linear-gradient(160deg, rgba(194,165,107,.1), rgba(30,30,30,.04));
  border-right: 1px solid var(--line-light);
  padding: 28px 32px;
}
.gift-modal-hero img,
.gift-detail-hero img {
  width: 100%; height: auto; max-height: 420px; object-fit: contain;
}
.gift-modal-thumbs,
.gift-detail-thumbs {
  display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.gift-modal-thumb,
.gift-detail-thumb {
  width: 64px; height: 64px; padding: 0; border: 1px solid var(--line-light);
  background: #fff; cursor: pointer; overflow: hidden;
}
.gift-modal-thumb.is-active,
.gift-detail-thumb.is-active { border-color: var(--gold-deep); }
.gift-modal-thumb img,
.gift-detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gift-modal-content,
.gift-detail-content { padding: 32px 32px 28px; }
.gift-modal .gift-detail-content {
  padding-top: 48px;
  padding-right: 56px;
}
.gift-modal-content h2,
.gift-detail-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 10px 0 14px; color: var(--text-dark);
}
.gift-modal-desc,
.gift-detail-desc {
  color: var(--muted-dark); font-weight: 300; line-height: 1.7;
  margin-bottom: 22px;
}
.gift-detail-desc.rich-text p,
.gift-detail-desc.rich-text ul,
.gift-detail-desc.rich-text ol {
  margin: 0 0 1em;
}
.gift-detail-desc.rich-text p:last-child,
.gift-detail-desc.rich-text ul:last-child,
.gift-detail-desc.rich-text ol:last-child {
  margin-bottom: 0;
}
.gift-detail-desc.rich-text ul,
.gift-detail-desc.rich-text ol {
  padding-left: 1.25em;
}
.gift-detail-desc.rich-text li {
  margin-bottom: .35em;
}
.gift-detail-desc.rich-text li:last-child {
  margin-bottom: 0;
}
.gift-detail-desc.rich-text strong,
.gift-detail-desc.rich-text b {
  font-weight: 500;
  color: var(--text-dark);
}
.product-page-link-wrap {
  margin: -8px 0 20px;
}
.product-page-link {
  font-size: 10.5px;
}
.product-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  margin: 0 0 18px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.product-feature {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(194,165,107,.12);
}
.product-feature:last-child,
.product-feature:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}
.product-feature dt {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 500;
}
.product-feature dd {
  margin: 0;
  color: var(--text-dark);
  font-weight: 500;
  text-align: right;
}
.product-detail-desc-short {
  font-style: italic;
}
@media (max-width: 768px) {
  .product-features {
    grid-template-columns: 1fr;
  }
  .product-feature:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid rgba(194,165,107,.12);
  }
  .product-feature:last-child {
    border-bottom: none;
  }
}
.gift-modal-bundle h3,
.gift-detail-bundle h3 {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 12px;
}
.gift-bundle-list {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: grid; gap: 10px;
}
.gift-bundle-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; background: rgba(194,165,107,.06);
  border: 1px solid rgba(194,165,107,.18);
}
.gift-bundle-thumb {
  width: 42px; height: 42px; object-fit: contain; flex-shrink: 0;
}
.gift-bundle-info { display: flex; align-items: baseline; gap: 8px; min-width: 0; }
.gift-bundle-qty {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; flex-shrink: 0;
}
.gift-bundle-info a, .gift-bundle-info span {
  color: var(--text-dark); text-decoration: none; font-weight: 400;
}
.gift-bundle-info a:hover { color: var(--gold-deep); }
.gift-modal-foot,
.gift-detail-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line-light);
}
.wine-detail-unavailable {
  margin: 0;
  font-size: 14px;
  color: var(--muted-dark);
  letter-spacing: .02em;
}
.gift-detail-page {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--cream) 0%, #f5f0e8 100%);
}
.gift-detail-page .gift-detail-layout {
  background: var(--paper);
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 40px rgba(30,30,30,.06);
  overflow: hidden;
}
.gift-detail-page .breadcrumb,
.wine-detail-page .breadcrumb {
  margin-bottom: 28px;
  color: var(--muted-dark);
  font-size: 11px;
  letter-spacing: .14em;
  flex-wrap: wrap;
}
.gift-detail-page .breadcrumb a,
.wine-detail-page .breadcrumb a {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 500;
}
.gift-detail-page .breadcrumb a:hover,
.wine-detail-page .breadcrumb a:hover {
  color: var(--text-dark);
}
.gift-detail-page .breadcrumb span,
.wine-detail-page .breadcrumb span {
  opacity: 1;
  color: var(--muted-dark);
}
.gift-detail-page .breadcrumb > span:last-child,
.wine-detail-page .breadcrumb > span:last-child {
  color: var(--text-dark);
  font-weight: 500;
}
.product-back-nav {
  margin-bottom: 18px;
}
.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  text-decoration: none;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.product-back-link:hover {
  color: var(--text-dark);
  gap: 12px;
}
.product-back-link svg {
  flex-shrink: 0;
}
.gift-detail-page .gift-detail-desc {
  max-height: none; overflow: visible;
}
.wine-detail-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 10px;
}
.wine-detail-award {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 6px 10px; margin-bottom: 8px;
}
.wine-detail-gallery {
  display: flex; flex-direction: column; justify-content: center;
}
.wine-detail-hero {
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 280px;
}
.wine-detail-hero img {
  max-height: 360px; width: auto; object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.22));
}
.wine-detail-page .wine-detail-layout {
  background: var(--paper);
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 40px rgba(30,30,30,.06);
  overflow: hidden;
}
@media (max-width: 768px) {
  .gift-modal {
    padding: 16px;
  }
  .gift-modal .gift-detail-content {
    padding: 44px 24px 24px;
  }
  .gift-modal-gallery,
  .gift-modal .gift-detail-gallery {
    padding: 24px;
  }
  .gift-detail-page .gift-detail-content {
    padding: 28px 24px 24px;
  }
  .gift-detail-page .gift-detail-gallery {
    padding: 24px;
  }
  .gift-detail-layout,
  .gift-modal-panel { grid-template-columns: 1fr; }
  .gift-modal-gallery,
  .gift-detail-gallery { border-right: none; border-bottom: 1px solid var(--line-light); }
  .gift-modal-foot,
  .gift-detail-foot { flex-direction: column; align-items: stretch; }
  .gift-card-foot { align-items: center; }
  .gift-card-actions .btn { justify-content: center; }
}
