:root {
  --ink: #151212;
  --paper: #f4efe7;
  --paper-2: #ebe2d6;
  --white: #fffdf9;
  --wine: #8e0038;
  --wine-dark: #5d0828;
  --red: #c90046;
  --gold: #d1a15f;
  --line: rgba(21, 18, 18, .16);
  --muted: #6e6762;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  min-height: 33px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: .45rem 4vw;
  background: var(--ink);
  color: rgba(255,255,255,.86);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 700;
}
.utility-bar p { margin: 0; }
.utility-bar a { justify-self: end; text-decoration: none; }
.site-header {
  height: 82px;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 231, .94);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { width: 147px; display: inline-flex; align-items: center; }
.brand img { width: 147px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.7vw, 2.7rem); }
.desktop-nav a {
  text-decoration: none;
  font-size: .84rem;
  font-weight: 650;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.5rem;
  height: 1px;
  background: var(--wine);
  transition: right .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .5rem; }
.icon-button {
  width: 43px;
  height: 43px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.icon-button:hover { background: rgba(21,18,18,.06); }
.menu-toggle { display: none; }
.cart-button {
  height: 45px;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  border: 0;
  border-radius: 999px;
  padding: 0 .55rem 0 1.15rem;
  background: var(--ink);
  color: #fff;
  font-size: .83rem;
  font-weight: 750;
  cursor: pointer;
}
.cart-count {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  font-size: .78rem;
}
.mobile-menu {
  position: fixed;
  inset: 115px 0 auto;
  z-index: 45;
  padding: 2rem 5vw;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(21,18,18,.14);
}
.mobile-menu nav { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
.mobile-menu a { text-decoration: none; font: 400 1.55rem/1.2 var(--serif); }
.mobile-menu > a { font: 650 .9rem/1 var(--sans); color: var(--wine); }

.site-search-bar { padding: 1rem 4vw; border-bottom: 1px solid var(--line); background: var(--paper); scroll-margin-top: 90px; }
.product-search { position: relative; min-width: 0; }
.product-search--header { width: min(100%, 880px); margin: 0 auto; }
.product-search__field { display: flex; align-items: center; gap: .75rem; min-height: 52px; padding-left: 1rem; border: 1px solid var(--line); border-radius: 6px; background: var(--white); }
.product-search__field:focus-within { border-color: var(--wine); box-shadow: 0 0 0 2px rgba(142,0,56,.12); }
.product-search__field > svg { flex: 0 0 20px; color: var(--muted); }
.product-search__input-wrap { position: relative; flex: 1; min-width: 0; }
.product-search input { flex: 1; min-width: 0; width: 100%; min-height: 48px; padding: .6rem 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 1rem; }
.product-search input::placeholder { color: var(--muted); opacity: 1; }
.has-search-hint input:not(:focus)::placeholder { color: transparent; }
.search-hint { position: absolute; inset: 0; display: none; align-items: center; gap: .4rem; overflow: hidden; color: var(--muted); pointer-events: none; font-size: 1rem; }
.has-search-hint input:placeholder-shown:not(:focus) + .search-hint { display: flex; }
.search-hint > span:first-child { flex: 0 0 auto; }
.search-hint__word { min-width: 0; overflow: hidden; color: var(--wine); font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.search-hint__word.is-arriving { animation: search-word-in .3s ease both; }
.search-hint__word.is-leaving { animation: search-word-out .2s ease both; }
@keyframes search-word-in { from { opacity: 0; transform: translateY(65%); } to { opacity: 1; transform: translateY(0); } }
@keyframes search-word-out { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-65%); } }
.product-search input::-webkit-search-cancel-button { display: none; }
.product-search__clear { flex: 0 0 44px; width: 44px; min-height: 44px; border: 0; background: transparent; color: var(--muted); font-size: 1.5rem; cursor: pointer; }
.product-search__clear:hover { color: var(--wine); }
.product-search__submit { align-self: stretch; flex: 0 0 auto; display: grid; place-items: center; min-width: 52px; min-height: 50px; padding: .65rem 1.4rem; border: 0; border-radius: 0 5px 5px 0; color: #fff; background: var(--wine); font-size: .9375rem; font-weight: 700; cursor: pointer; }
.product-search__submit:hover { background: var(--wine-dark); }
.product-search button:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }
.search-suggestions { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--white); box-shadow: 0 16px 40px rgba(21,18,18,.16); }
.search-suggestions__heading { margin: 0; padding: .8rem 1rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .875rem; font-weight: 650; }
.search-suggestions__list { max-height: min(420px, 45dvh); overflow-y: auto; overscroll-behavior: contain; }
.search-suggestion { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: .85rem; width: 100%; min-height: 84px; padding: .75rem 1rem; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.search-suggestion:last-child { border-bottom: 0; }
.search-suggestion:hover, .search-suggestion[aria-selected="true"], .search-suggestion:focus { background: #f3e7e9; }
.search-suggestion img { width: 48px; height: 60px; object-fit: contain; }
.search-suggestion__copy, .search-suggestion__price { display: grid; gap: .25rem; min-width: 0; }
.search-suggestion__copy strong { font-size: .9375rem; line-height: 1.35; font-weight: 650; overflow-wrap: anywhere; }
.search-suggestion__copy > span, .search-suggestion__price > span { color: var(--muted); font-size: .875rem; line-height: 1.35; }
.search-suggestion__price { max-width: 145px; text-align: right; }
.search-suggestion__price strong { color: var(--wine); white-space: nowrap; font-size: .9375rem; }
.search-suggestions__all { display: block; width: 100%; min-height: 48px; padding: .85rem 1rem; border: 0; border-top: 1px solid var(--line); color: var(--wine); background: var(--paper); font-size: .9375rem; font-weight: 700; cursor: pointer; }
.search-suggestions__all:hover { background: var(--paper-2); }
.search-suggestions__empty { margin: 0; padding: 1rem; color: var(--muted); font-size: .9375rem; }
.catalog-tools { scroll-margin-top: 100px; }

@media (max-width: 560px) {
  .site-search-bar { padding: .75rem 4vw; scroll-margin-top: 82px; }
  .product-search__field { gap: .3rem; padding-left: .7rem; }
  .product-search--header .product-search__field > svg { display: none; }
  .product-search__submit { padding: .65rem .8rem; }
  .search-suggestion { grid-template-columns: 38px minmax(0, 1fr); gap: .4rem .7rem; padding: .75rem; }
  .search-suggestion img { width: 38px; height: 54px; grid-row: span 2; }
  .search-suggestion__price { grid-column: 2; display: flex; align-items: baseline; gap: .6rem; max-width: none; text-align: left; }
  .search-suggestions__list { max-height: min(370px, 40dvh); }
  .catalog-tools { scroll-margin-top: 90px; }
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--wine);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow--light { color: #f2b5c9; }
.hero {
  min-height: calc(100vh - 115px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__copy {
  min-height: 670px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 8vw, 8.5rem) 5vw clamp(3rem, 5vw, 5rem);
  position: relative;
}
.hero h1, .section h2, .gift-feature h2, .contact-strip h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
}
.hero h1 {
  max-width: 850px;
  font-size: clamp(4.4rem, 7.9vw, 8.7rem);
  line-height: .82;
}
.hero h1 em { color: var(--wine); font-weight: 400; }
.hero__lead {
  max-width: 625px;
  margin: 2rem 0 0;
  color: #453e39;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.72;
}
.hero__actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .8rem 1.4rem;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--ink); color: #fff; }
.button--wine { background: var(--wine); color: #fff; }
.button--cream { background: var(--paper); color: var(--ink); }
.button--full { width: 100%; }
.text-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: .35rem 0;
  background: transparent;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
}
.hero__facts {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: auto;
  padding-top: 3rem;
}
.hero__facts div { display: grid; gap: .15rem; }
.hero__facts strong { font: 600 .9rem/1.3 var(--serif); }
.hero__facts span { color: var(--muted); font-size: .71rem; }
.hero__visual {
  min-height: 670px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 69% 22%, rgba(255,255,255,.4), transparent 30%),
    linear-gradient(145deg, #d9bea0, #b77d58);
  overflow: hidden;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 3.5%;
  border: 1px solid rgba(255,255,255,.42);
  pointer-events: none;
}
.hero__ghost {
  position: absolute;
  left: -3%;
  top: 5%;
  color: rgba(255,255,255,.16);
  font-size: clamp(8rem, 17vw, 18rem);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: 1;
  z-index: -1;
}
.hero__image-wrap {
  width: min(76%, 640px);
  aspect-ratio: 1 / .92;
  margin-top: -4%;
  display: grid;
  place-items: center;
  overflow: hidden;
  mix-blend-mode: multiply;
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: contain; }
.floating-card {
  position: absolute;
  left: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.8rem, 5vw, 4.5rem);
  width: min(270px, 45%);
  display: grid;
  gap: .2rem;
  padding: 1.2rem 1.25rem;
  background: rgba(255,253,249,.94);
  box-shadow: 0 20px 45px rgba(61,31,19,.18);
}
.floating-card p { margin: 0 0 .35rem; color: var(--wine); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.floating-card strong { font: 600 1.06rem/1.2 var(--serif); }
.floating-card span { font-size: .82rem; }
.floating-card button { width: max-content; margin-top: .7rem; border: 0; border-bottom: 1px solid; padding: .15rem 0; background: transparent; font-size: .72rem; font-weight: 800; cursor: pointer; }
.roundel {
  width: 116px;
  height: 116px;
  position: absolute;
  right: clamp(1.4rem, 4vw, 4rem);
  top: clamp(1.6rem, 4vw, 4rem);
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: #fff;
  transform: rotate(8deg);
  text-transform: uppercase;
}
.roundel span { font-size: .52rem; letter-spacing: .17em; }
.roundel strong { margin: .05rem 0; font: 500 .84rem/1 var(--serif); }

.benefits {
  padding: 0 4vw;
  background: var(--ink);
  color: var(--white);
  scroll-margin-top: 100px;
}
.benefits__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 1.8rem clamp(.9rem, 1.7vw, 2rem);
  border-right: 1px solid rgba(255,255,255,.14);
}
.benefit:last-child { border-right: 0; }
.benefit__icon {
  display: grid;
  place-items: center;
  flex: 0 0 3.25rem;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(242,181,201,.24);
  border-radius: 50%;
  background: rgba(242,181,201,.06);
}
.benefit__icon img { width: 1.75rem; height: 1.75rem; }
.benefit__copy { min-width: 0; }
.benefit h3 {
  margin: 0;
  font: 600 1.125rem/1.3 var(--serif);
  letter-spacing: -.015em;
  text-wrap: balance;
}
.benefit p {
  margin: .4rem 0 0;
  color: #c9c0bd;
  font-size: .875rem;
  line-height: 1.5;
  text-wrap: pretty;
}

@media (max-width: 1120px) {
  .benefits__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
}

@media (max-width: 560px) {
  .benefit {
    flex-direction: column;
    align-items: center;
    gap: .85rem;
    padding: 1.4rem .65rem;
    text-align: center;
  }
  .benefit__icon { flex-basis: 2.75rem; width: 2.75rem; height: 2.75rem; }
  .benefit__icon img { width: 1.5rem; height: 1.5rem; }
  .benefit h3 { font-size: 1rem; }
}

.section { padding: clamp(5rem, 9vw, 9rem) 4vw; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-heading h2 { font-size: clamp(3.1rem, 6vw, 6.4rem); line-height: .92; }
.section-intro { margin: 0 0 .5rem; color: var(--muted); line-height: 1.7; }
.section-heading--compact { grid-template-columns: 1fr; }
.catalog-overview {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(520px, 1.28fr);
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.catalog-overview__intro {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.7rem, 3vw, 3rem);
  background: var(--wine-dark);
  color: #fff;
}
.catalog-overview__intro .eyebrow { color: #f2b5c9; }
.catalog-overview__intro strong { font: 500 clamp(2.5rem, 4.3vw, 4.8rem)/.95 var(--serif); letter-spacing: -.045em; }
.catalog-overview__intro p:last-child { max-width: 390px; margin: 1.1rem 0 0; color: #ead8de; font-size: .78rem; line-height: 1.65; }
.catalog-overview__table-wrap { display: flex; align-items: stretch; overflow-x: auto; }
.catalog-overview__table { width: 100%; border-collapse: collapse; }
.catalog-overview__table th,
.catalog-overview__table td { padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.catalog-overview__table th { color: var(--muted); font-size: .63rem; letter-spacing: .09em; text-transform: uppercase; }
.catalog-overview__table td { font-size: .76rem; }
.catalog-overview__table tbody tr:last-child td { border-bottom: 0; }
.catalog-overview__table tbody tr:hover { background: rgba(142,0,56,.035); }
.catalog-type { display: inline-flex; align-items: center; gap: .65rem; font-weight: 750; }
.catalog-type::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--type-color, var(--wine)); box-shadow: 0 0 0 4px color-mix(in srgb, var(--type-color, var(--wine)) 12%, transparent); }
.catalog-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.filter-list { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }
.filter-button, .sort-button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .58rem .9rem;
  background: transparent;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
}
.filter-button:hover { border-color: var(--line); }
.filter-button.is-active { background: var(--ink); color: #fff; }
.catalog-tools__right { display: flex; align-items: center; justify-content: flex-end; gap: 1.2rem; flex: 0 0 auto; }
.stock-toggle { display: inline-flex; align-items: center; gap: .55rem; white-space: nowrap; color: var(--muted); font-size: .72rem; font-weight: 750; cursor: pointer; }
.stock-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.stock-toggle > span { width: 36px; height: 21px; position: relative; border: 1px solid var(--line); border-radius: 999px; background: var(--white); transition: background .2s, border-color .2s; }
.stock-toggle > span::after { content: ""; width: 13px; height: 13px; position: absolute; left: 3px; top: 3px; border-radius: 50%; background: var(--muted); transition: transform .2s, background .2s; }
.stock-toggle input:checked + span { border-color: var(--wine); background: var(--wine); }
.stock-toggle input:checked + span::after { transform: translateX(15px); background: #fff; }
.stock-toggle input:focus-visible + span { outline: 2px solid var(--wine); outline-offset: 3px; }
.product-search--catalog { width: 320px; max-width: 100%; }
.product-search--catalog .search-suggestions { left: auto; width: min(500px, 92vw); }
.product-search--catalog .product-search__submit { padding: .65rem .8rem; }
.results-line { min-height: 55px; display: flex; align-items: center; justify-content: space-between; }
.results-line p, .sort-button { margin: 0; color: var(--muted); font-size: .7rem; }
.sort-button { padding-right: 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.product-card { min-width: 0; display: flex; flex-direction: column; background: var(--paper); position: relative; }
.product-card__media {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  padding: 1rem;
  background: var(--white);
  cursor: pointer;
}
.product-card__media::after {
  content: "Prohlédnout";
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  translate: -50% 12px;
  opacity: 0;
  border-radius: 999px;
  padding: .62rem 1rem;
  background: var(--ink);
  color: #fff;
  font-size: .7rem;
  font-weight: 750;
  transition: opacity .2s ease, translate .2s ease;
}
.product-card:hover .product-card__media::after { opacity: 1; translate: -50% 0; }
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-badges { position: absolute; left: 1rem; top: 1rem; display: flex; gap: .35rem; z-index: 2; }
.product-badge { padding: .32rem .55rem; background: var(--paper); font-size: .58rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-badge--wine { background: var(--wine); color: #fff; }
.product-card__info { flex: 1; display: flex; flex-direction: column; padding: 1.25rem 1.2rem 1.35rem; }
.product-meta { display: flex; justify-content: space-between; gap: .75rem; color: var(--muted); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; }
.product-card h3 { min-height: 4.05em; margin: .6rem 0 .65rem; font: 500 1.06rem/1.35 var(--serif); display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.product-description { min-height: 4.5em; margin: 0 0 .8rem; color: var(--muted); font-size: .71rem; line-height: 1.5; display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.product-tags { min-height: 25px; display: flex; gap: .35rem; align-items: flex-start; flex-wrap: wrap; margin-bottom: 1rem; }
.product-tags span { max-width: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; padding: .24rem .48rem; color: #5d5651; text-overflow: ellipsis; white-space: nowrap; font-size: .57rem; }
.product-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.product-price { display: grid; }
.product-price strong { font-size: .98rem; }
.product-price span { display: inline-flex; align-items: center; gap: .35rem; color: var(--muted); font-size: .62rem; }
.product-price span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #2f8c50; }
.product-price span.is-limited::before { background: #c58413; }
.product-price span.is-sold::before { background: #9c9690; }
.add-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.add-button:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.product-link-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; text-decoration: none; font-size: .9rem; transition: border-color .2s, background .2s, color .2s; }
.product-link-button:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.load-more-wrap { display: flex; justify-content: center; padding-top: 2.2rem; }
.load-more-wrap .button { min-width: 245px; }
.empty-state { padding: 5rem 1rem; text-align: center; border-bottom: 1px solid var(--line); }
.empty-state p { font: 400 1.8rem/1.2 var(--serif); }

.gift-feature {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--wine-dark);
  color: #fff;
}
.gift-feature__image {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(rgba(21,18,18,.06),rgba(21,18,18,.06)), #d5b18d;
  overflow: hidden;
}
.gift-feature__image img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; }
.vertical-note { position: absolute; left: 1.4rem; top: 50%; color: rgba(21,18,18,.7); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transform: translate(-42%,-50%) rotate(-90deg); }
.gift-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 9rem); }
.gift-feature h2 { font-size: clamp(3.3rem, 6vw, 6.5rem); line-height: .88; }
.gift-feature__copy > p:not(.eyebrow) { max-width: 550px; margin: 2rem 0 1.5rem; color: #e9d8de; line-height: 1.75; }
.gift-feature ul { display: grid; gap: .7rem; margin: 0 0 2rem; padding: 0; list-style: none; color: #f4e8ec; font-size: .83rem; }
.gift-feature li::before { content: "✓"; margin-right: .7rem; color: #e7a9c0; }
.gift-feature__price { display: flex; justify-content: space-between; max-width: 470px; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.22); font-family: var(--serif); }
.gift-feature__copy .button { width: max-content; margin-top: .65rem; }

.cake-feature {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: #f6dedf;
}
.cake-feature__copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  column-gap: clamp(2rem, 7vw, 7rem);
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(2rem, 4vw, 4rem);
}
.cake-feature__copy > .eyebrow,
.cake-feature__copy > .cake-wordmark,
.cake-feature__copy > h2 { grid-column: 1; }
.cake-feature__details { grid-column: 2; grid-row: 1 / 4; align-self: end; position: relative; z-index: 1; }
.cake-feature__copy::after {
  content: "DORT";
  position: absolute;
  right: -1.1rem;
  bottom: -2.2rem;
  color: rgba(142,0,56,.055);
  font-size: clamp(7rem, 13vw, 13rem);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .75;
  pointer-events: none;
}
.cake-wordmark {
  display: flex;
  align-items: baseline;
  margin: 0 0 2.1rem;
  color: var(--ink);
  font-size: clamp(3.7rem, 6.2vw, 6.7rem);
  letter-spacing: -.075em;
  line-height: .78;
}
.cake-wordmark strong { font-family: var(--sans); font-weight: 900; text-transform: uppercase; }
.cake-wordmark em { color: var(--wine); font-family: var(--serif); font-weight: 400; }
.cake-feature h2 {
  max-width: 690px;
  margin: 0;
  font: 400 clamp(2.5rem, 4.2vw, 4.9rem)/.96 var(--serif);
  letter-spacing: -.05em;
}
.cake-feature__lead { max-width: 570px; margin: 0 0 1.8rem; color: #5c4f50; line-height: 1.75; }
.cake-instagram { width: max-content; position: relative; z-index: 1; }
.cake-instagram svg { width: 18px; }
.cake-instagram .instagram-dot { fill: currentColor; stroke: none; }
.cake-handle { width: max-content; margin: .8rem 0 0 1.2rem; color: var(--wine); font-size: .75rem; font-weight: 800; text-decoration: none; }
.cake-handle:hover { text-decoration: underline; text-underline-offset: .25rem; }
.cake-pairing {
  max-width: 570px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.1rem;
  margin-top: auto;
  padding-top: 2.4rem;
}
.cake-pairing::before { content: ""; height: 1px; position: absolute; left: 0; right: 0; top: 1.2rem; background: rgba(142,0,56,.25); }
.cake-pairing span { color: var(--wine); font-size: .65rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.cake-pairing p { margin: 0; color: #68595a; font: 500 .9rem/1.45 var(--serif); }
.cake-feature__gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.8rem, 2vw, 2rem);
}
.cake-photo { min-width: 0; margin: 0; padding: .5rem; border: 1px solid rgba(142,0,56,.12); border-radius: 12px; background: rgba(255,253,249,.65); }
.cake-photo img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: contain; border-radius: 7px; background: #eee4df; }
.cake-photo figcaption { padding: .9rem .35rem .5rem; color: var(--ink); font-size: .875rem; font-weight: 600; line-height: 1.45; }
.cake-gallery-link {
  min-width: 178px;
  grid-column: 1 / -1;
  width: max-content;
  justify-self: center;
  display: grid;
  gap: .25rem;
  padding: 1rem 1.15rem;
  background: rgba(255,253,249,.94);
  box-shadow: 0 16px 45px rgba(42,17,26,.18);
  text-decoration: none;
}
.cake-gallery-link span { color: var(--muted); font-size: .875rem; }
.cake-gallery-link strong { font: 600 1.1rem/1.2 var(--serif); }
.cake-gallery-link:hover strong { color: var(--wine); }

.purpose { background: var(--paper-2); }
.purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.purpose-grid button {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 2rem;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.purpose-grid button:last-child { border: 0; }
.purpose-grid button:hover { background: var(--wine); color: #fff; }
.purpose-number { margin-bottom: auto; font-size: .65rem; letter-spacing: .12em; }
.purpose-grid strong { font: 500 clamp(1.7rem, 2.5vw, 2.7rem)/1.1 var(--serif); }
.purpose-grid button > span:not(.purpose-number) { margin-top: .45rem; color: var(--muted); font-size: .75rem; }
.purpose-grid button:hover > span { color: #fff; }
.purpose-grid i { position: absolute; right: 2rem; top: 1.7rem; font: normal 1.2rem/1 var(--sans); }

.selection-story {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(5rem, 10vw, 10rem) 6vw;
  position: relative;
  background: var(--white);
}
.selection-story__quote { position: relative; }
.quote-mark { position: absolute; left: -1rem; top: -5rem; color: rgba(142,0,56,.1); font: 400 16rem/1 var(--serif); }
.selection-story blockquote { margin: 0; position: relative; font: 400 clamp(2.7rem, 5.3vw, 6rem)/1.02 var(--serif); letter-spacing: -.045em; }
.selection-story__text > p:not(.eyebrow) { margin: 0 0 2rem; color: var(--muted); line-height: 1.8; }
.selection-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}
.selection-stats div { display: flex; align-items: baseline; gap: .85rem; padding: 1.25rem; border-right: 1px solid var(--line); }
.selection-stats div:last-child { border: 0; }
.selection-stats strong { color: var(--wine); font: 400 2.4rem/1 var(--serif); }
.selection-stats span { color: var(--muted); font-size: .72rem; }

.contact-strip {
  padding: clamp(5rem, 9vw, 9rem) 5vw;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.contact-strip h2 { font-size: clamp(3rem, 6.4vw, 6.8rem); line-height: .93; }
.contact-links { display: flex; justify-content: center; gap: clamp(1.5rem, 6vw, 6rem); margin-top: 2.8rem; }
.contact-links a { border-bottom: 1px solid rgba(255,255,255,.65); text-decoration: none; font-size: .9rem; font-weight: 700; }

.site-footer {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  padding: 4.5rem 4vw 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.site-footer img { width: 150px; height: auto; }
.footer-brand p { color: var(--muted); font: 400 1.05rem/1.5 var(--serif); }
.site-footer h3 { margin: 0 0 1.1rem; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.site-footer > div:not(.footer-bottom) a { display: block; width: max-content; margin: .5rem 0; color: var(--muted); text-decoration: none; font-size: .76rem; }
.site-footer a:hover { color: var(--wine); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .65rem;
}

dialog { color: var(--ink); }
dialog::backdrop { background: rgba(21,18,18,.62); backdrop-filter: blur(3px); }
.sheet {
  width: min(480px, 100%);
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
  border: 0;
  padding: 0;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
}
.sheet[open] { display: flex; flex-direction: column; animation: slide-in .25s ease; }
@keyframes slide-in { from { translate: 100% 0; } }
.sheet__header { min-height: 115px; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.7rem; border-bottom: 1px solid var(--line); }
.sheet__header .eyebrow { margin-bottom: .25rem; }
.sheet__header h2 { margin: 0; font: 400 2.5rem/1 var(--serif); }
.cart-items { flex: 1; overflow: auto; padding: 0 1.7rem; }
.cart-empty { height: 100%; min-height: 300px; display: grid; place-content: center; text-align: center; }
.cart-empty span { margin: 0 auto 1rem; font: 400 4rem/1 var(--serif); color: var(--wine); }
.cart-empty strong { font: 500 1.5rem/1.2 var(--serif); }
.cart-empty p { color: var(--muted); font-size: .78rem; }
.cart-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.cart-item__image { width: 84px; height: 105px; display: grid; place-items: center; background: var(--white); }
.cart-item__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item h3 { margin: .1rem 0 .35rem; font: 500 .95rem/1.3 var(--serif); }
.cart-item p { margin: 0; font-size: .75rem; font-weight: 750; }
.quantity { display: inline-flex; align-items: center; gap: .65rem; margin-top: .8rem; border: 1px solid var(--line); border-radius: 999px; padding: .25rem .45rem; }
.quantity button { width: 22px; height: 22px; border: 0; background: transparent; cursor: pointer; }
.quantity span { font-size: .72rem; }
.remove-item { align-self: start; border: 0; background: transparent; color: var(--muted); font-size: 1.1rem; cursor: pointer; }
.cart-summary { padding: 1.5rem 1.7rem 1.7rem; border-top: 1px solid var(--line); background: var(--white); }
.cart-summary > div { display: flex; justify-content: space-between; font: 500 1.2rem/1.2 var(--serif); }
.cart-summary p { margin: .55rem 0 1.3rem; color: var(--muted); font-size: .68rem; }

.product-dialog {
  width: min(970px, calc(100% - 2rem));
  max-width: none;
  max-height: min(780px, calc(100% - 2rem));
  border: 0;
  padding: 0;
  background: var(--paper);
}
.product-dialog[open] { animation: modal-in .22s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.product-dialog__close { position: absolute; right: 1rem; top: 1rem; z-index: 3; background: rgba(244,239,231,.9); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.product-detail__image { min-height: 580px; display: grid; place-items: center; padding: 3rem; background: var(--white); }
.product-detail__image img { width: 100%; height: 100%; max-height: 530px; object-fit: contain; }
.product-detail__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4.5rem); }
.product-detail__copy h2 { margin: .4rem 0 1.1rem; font: 500 clamp(2rem, 3.2vw, 3.4rem)/1.05 var(--serif); letter-spacing: -.04em; }
.product-detail__copy > p { color: var(--muted); line-height: 1.75; }
.detail-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin: .8rem 0 1.1rem; }
.detail-price { font: 600 1.5rem/1 var(--serif); }
.detail-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.5rem; }
.detail-tags span { border: 1px solid var(--line); border-radius: 999px; padding: .45rem .7rem; font-size: .67rem; }
.detail-stock { display: flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 750; }
.detail-stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2f8c50; }
.detail-stock.is-limited::before { background: #c58413; }
.detail-stock.is-sold::before { background: #9c9690; }
.detail-facts { width: 100%; margin: .2rem 0 1.3rem; border-collapse: collapse; border-top: 1px solid var(--line); }
.detail-facts th, .detail-facts td { padding: .62rem 0; border-bottom: 1px solid var(--line); font-size: .7rem; text-align: left; vertical-align: top; }
.detail-facts th { width: 42%; color: var(--muted); font-weight: 550; }
.detail-facts td { padding-left: 1rem; font-weight: 750; }
.detail-actions { display: grid; grid-template-columns: 1fr auto; gap: .65rem; }
.detail-source-link { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 999px; padding: .75rem 1.05rem; text-decoration: none; font-size: .74rem; font-weight: 800; }
.detail-source-link:hover { border-color: var(--ink); }
.cart-item__shop-link { display: inline-block; margin-top: .65rem; color: var(--wine); font-size: .65rem; font-weight: 800; text-decoration: none; }
.cart-item__shop-link:hover { text-decoration: underline; text-underline-offset: .2rem; }
.toast {
  min-width: 250px;
  max-width: calc(100% - 2rem);
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  z-index: 300;
  translate: -50% 130%;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,.24);
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  transition: translate .25s ease;
}
.toast.is-visible { translate: -50% 0; }
.noscript { margin: 0; padding: 1rem; background: #ffdcdc; text-align: center; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav { justify-self: center; gap: 1.4rem; }
  .hero { grid-template-columns: 1.1fr .9fr; }
  .hero h1 { font-size: clamp(4rem, 8vw, 6.6rem); }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .catalog-tools { align-items: flex-start; flex-direction: column; }
  .catalog-tools__right { width: 100%; justify-content: space-between; }
  .gift-feature__copy { padding: 6vw; }
}

@media (max-width: 860px) {
  .utility-bar { grid-template-columns: 1fr 1fr; }
  .utility-bar__center { display: none; }
  .site-header { height: 74px; padding: 0 4vw; }
  .menu-toggle { display: inline-grid; }
  .desktop-nav { display: none; }
  .brand { justify-self: center; }
  .brand img { width: 128px; }
  .search-trigger { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__copy { min-height: 610px; }
  .hero__visual { min-height: 590px; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 2rem; }
  .section-intro { max-width: 560px; }
  .catalog-overview { grid-template-columns: 1fr; }
  .catalog-overview__intro { min-height: 220px; }
  .catalog-tools { align-items: flex-start; flex-direction: column; }
  .catalog-tools__right { align-items: flex-start; flex-direction: column; }
  .product-search--catalog { width: 100%; }
  .product-search--catalog .search-suggestions { left: 0; right: 0; width: auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gift-feature { grid-template-columns: 1fr; }
  .gift-feature__image { min-height: 560px; }
  .gift-feature__copy { padding: 5rem 6vw; }
  .cake-feature__copy { column-gap: 2rem; }
  .purpose-grid { grid-template-columns: 1fr; }
  .purpose-grid button { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .selection-story { grid-template-columns: 1fr; gap: 3rem; }
  .selection-stats { margin-top: 0; }
  .site-footer { grid-template-columns: 2fr 1fr 1fr; }
  .site-footer > div:nth-child(4) { grid-column: 2; }
}

@media (max-width: 560px) {
  .utility-bar { min-height: 30px; font-size: .57rem; letter-spacing: .07em; }
  .utility-bar p { display: none; }
  .utility-bar { display: flex; justify-content: center; }
  .utility-bar a { justify-self: auto; }
  .site-header { top: 0; }
  .mobile-menu { inset: 104px 0 auto; }
  .header-actions { position: absolute; right: 4vw; }
  .cart-button { width: 43px; padding: 0; justify-content: center; background: transparent; color: var(--ink); }
  .cart-button > span:first-child { display: none; }
  .cart-count { width: 34px; height: 34px; color: #fff; }
  .hero { min-height: auto; }
  .hero__copy { min-height: 560px; padding: 5.5rem 5vw 3rem; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 5.5rem); }
  .hero__lead { margin-top: 1.5rem; font-size: .95rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: .9rem; }
  .hero__facts { width: 100%; justify-content: space-between; gap: 1rem; padding-top: 2.5rem; }
  .hero__visual { min-height: 480px; }
  .hero__image-wrap { width: 91%; }
  .floating-card { left: 1rem; bottom: 1rem; width: 62%; }
  .roundel { width: 88px; height: 88px; right: 1rem; top: 1rem; }
  .section { padding: 5.3rem 4vw; }
  .section-heading h2 { font-size: 3.5rem; }
  .filter-list { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: .25rem; }
  .filter-button { white-space: nowrap; }
  .catalog-overview { margin-left: -4vw; margin-right: -4vw; border-left: 0; border-right: 0; }
  .catalog-overview__table { min-width: 480px; }
  .catalog-overview__table th, .catalog-overview__table td { padding: .82rem .8rem; }
  .catalog-tools__right { width: 100%; gap: .85rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__media { aspect-ratio: 1 / 1.04; }
  .product-card h3 { min-height: 0; }
  .product-description { min-height: 0; }
  .gift-feature__image { min-height: 430px; }
  .gift-feature__image img { width: 88%; height: 88%; }
  .gift-feature__copy { padding: 4.5rem 5vw; }
  .gift-feature h2 { font-size: 3.8rem; }
  .cake-feature__copy { grid-template-columns: 1fr; }
  .cake-feature__details { grid-column: 1; grid-row: auto; margin-top: 1.75rem; }
  .cake-wordmark { margin-bottom: 1.7rem; font-size: clamp(3.5rem, 17vw, 5.4rem); }
  .cake-feature h2 { font-size: 3rem; }
  .cake-feature__lead { margin: 0 0 1.6rem; }
  .cake-pairing { grid-template-columns: 1fr; gap: .35rem; padding-top: 2.2rem; }
  .cake-feature__gallery { grid-template-columns: 1fr; }
  .cake-gallery-link { min-width: 155px; padding: .85rem .95rem; }
  .purpose-grid button { min-height: 180px; }
  .selection-story { padding: 6rem 5vw; }
  .selection-story blockquote { font-size: 2.7rem; }
  .selection-stats { grid-template-columns: 1fr; }
  .selection-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-strip h2 { font-size: 3.35rem; }
  .contact-links { align-items: center; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer > div:nth-child(4) { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__image { min-height: 310px; height: 42vh; padding: 1.5rem; }
  .product-detail__copy { padding: 2rem 1.4rem; }
  .detail-actions { grid-template-columns: 1fr; }
  .product-dialog { max-height: calc(100% - 1rem); width: calc(100% - 1rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
