:root {
  --wine: #5f0428;
  --sage: #a6b991;
  --ink: #5f0428;
  --ink-soft: #6e4a56;
  --forest: #5f0428;
  --leaf: #5f0428;
  --moss: #8aa077;
  --cream: #f3f5ef;
  --paper: #f7f8f5;
  --white: #fcfdfb;
  --line: rgba(95, 4, 40, 0.10);
  --gold: #5f0428;
  --gold-soft: #a6b991;
  --danger: #5f0428;
  --ok: #a6b991;
  --bio: #5f0428;
  --org: #5f0428;
  --nat: #5f0428;
  --sus: #a6b991;
  --shadow: 0 8px 30px rgba(95, 4, 40, 0.04);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.muted { color: var(--ink-soft); }
.small { font-size: 13px; letter-spacing: 0.02em; }
.gold { color: var(--gold); }
.cat {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 14px 0 4px;
}

.topbar {
  background: var(--forest);
  color: #e8efe9;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}
.topbar span { color: var(--gold-soft); }

.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--sage);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 8px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 64px;
}
.logo img {
  height: 56px;
  width: auto;
  max-width: 220px;
  display: block;
  background: transparent;
}

.header-tools {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  color: var(--wine);
}
.nav-main {
  justify-self: center;
}
.header-tools a:hover { color: var(--sage); }
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-link:hover {
  color: var(--wine);
  border-bottom-color: var(--sage);
}
.nav-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
a.nav-meta:hover { color: var(--wine); }

.search {
  display: flex;
  border: 1px solid #3a3a3a;
  background: #1c1c1c;
  border-radius: 999px;
  overflow: hidden;
}
.search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 18px;
  outline: none;
  color: #eee;
}
.search input::placeholder { color: #888; }
.search button {
  border: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0 18px;
  cursor: pointer;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
}

.cart-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #3a3a3a;
  padding: 8px 12px;
  border-radius: 999px;
  color: #eee;
}
.cart-count {
  background: var(--forest);
  color: var(--white);
  min-width: 20px;
  height: 20px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.nav {
  border-top: 1px solid #2a2a2a;
  padding: 10px 0 12px;
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9a9a;
}
.nav a:hover, .nav a.is-on { color: #fff; }
.nav a.feat {
  color: #b8d4be;
  font-weight: 500;
}
.nav a.feat.is-on {
  color: #c4b089;
  box-shadow: inset 0 -1px 0 #c4b089;
}

.hero {
  padding: 64px 0 40px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::after { display: none; }
.hero::after {
  content: "";
  position: absolute;
  right: -2%;
  top: -18%;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  pointer-events: none;
  opacity: 0.11;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M60 8c18 28 44 36 44 64a44 44 0 1 1-88 0c0-28 26-36 44-64z' fill='%231e3a2b'/%3E%3Cpath d='M60 40c-10 14-10 28 0 40 10-12 10-26 0-40z' fill='%23f3efe6' opacity='.35'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-photo .wrap { position: relative; z-index: 1; }
.hero em { font-style: italic; color: var(--leaf); }

.hero-photo {
  min-height: 440px;
  display: grid;
  align-items: end;
  padding: 0;
  background: #1a2418;
}
.hero-photo::after { display: none; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 36, 28, 0.82) 0%, rgba(20, 36, 28, 0.42) 52%, rgba(20, 36, 28, 0.18) 100%);
}
.hero-photo .wrap { padding: 80px 0 56px; }
.hero-photo h1 { color: #f4f0e8; }
.hero-photo .kicker { color: #c4b089; }
.hero-photo .lede { color: #d5e0d8; max-width: 38em; }

.hero-banner {
  background: #1a2418;
  line-height: 0;
}
.hero-banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  max-width: none;
}
.store-intro {
  padding: 28px 0 0;
}
.store-intro h1 { margin-top: 4px; }
.store-intro .lede { margin-top: 10px; }

.seal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}
.seal-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.seal-filter em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.seal-disc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  flex: 0 0 40px;
}
.seal-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  background: #f3efe6;
  flex: 0 0 28px;
}
.seal-img svg {
  width: 100%;
  height: 100%;
  display: block;
}
.seal-disc .seal-img,
.seal-filter .seal-img,
.band-seal .seal-img,
.practice-card .seal-img {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}
.product-seals {
  position: static;
  display: flex;
  gap: 4px;
  margin: 0 0 4px;
  justify-content: center;
}
.seal-filter.is-on {
  border-color: var(--forest);
  color: var(--forest);
  background: #f3f7f4;
}
.seal-all {
  display: grid !important;
  place-items: center;
  font-size: 9px;
  letter-spacing: 0.01em;
  color: var(--forest);
  background: var(--cream) !important;
}
.seal-all span { color: #2f5a40; }
.pdp-seal-row { display: grid; gap: 10px; margin-top: 18px; }
.band-seal {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin: 0 0 12px;
}
h1, h2, h3 { font-family: var(--sans); font-weight: 300; margin: 0; }
h1 { font-size: clamp(36px, 5vw, 52px); line-height: 1.05; letter-spacing: -0.03em; color: var(--wine); }
h2 { font-size: 28px; line-height: 1.15; color: var(--wine); }
h3 { font-size: 18px; font-weight: 500; color: var(--wine); }
.lede { font-size: 16px; font-weight: 300; color: var(--ink-soft); max-width: 36em; margin: 16px 0 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 12px 22px;
  border-radius: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.btn-primary { background: var(--wine); color: var(--white); }
.btn-primary:hover { background: #4a031f; }
.btn-ghost { background: transparent; border-color: var(--wine); color: var(--wine); }
.btn-ghost:hover { background: var(--wine); color: var(--white); }
.btn-gold { background: var(--sage); color: var(--wine); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.section { padding: 72px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.account-grid { gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(186px, 1fr));
  justify-content: start;
  gap: 36px 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card p { margin: 10px 0 0; color: var(--ink-soft); }

.stat {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.stat b { display: block; font-family: var(--serif); font-size: 32px; color: var(--forest); font-weight: 500; }
.stat span { font-size: 13px; color: var(--ink-soft); }

.product {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  max-width: 220px;
}
.bottle {
  height: 216px;
  background: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 4px 0 0;
  position: relative;
}
.bottle.biodinamico,
.bottle.organico,
.bottle.natural,
.bottle.padrao,
.bottle.sustentavel { background: none; }
.bottle svg {
  width: 82px;
  height: 196px;
  display: block;
}
.bottle img {
  max-height: 196px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  color: var(--leaf);
}
.tag.biodinamico { color: var(--bio); border-color: var(--gold-soft); }
.tag.organico { color: var(--org); border-color: #b7c8ba; }
.tag.natural { color: var(--nat); border-color: #d4b8ae; }
.tag.padrao,
.tag.sustentavel { color: var(--sus); }
.product-body { padding: 8px 0 4px; display: flex; flex-direction: column; gap: 4px; flex: 1; text-align: center; }
.product-body .meta { font-size: 11px; color: var(--moss); letter-spacing: 0.06em; text-transform: uppercase; }
.product-body h3 { font-size: 16px; line-height: 1.25; display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; }
.winebio-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.winebio-mark img {
  height: 18px;
  width: auto;
  display: block;
}
h1 .winebio-mark img { height: 28px; }
.price { font-family: var(--sans); font-weight: 300; font-size: 20px; letter-spacing: -0.02em; margin-top: auto; padding-top: 8px; color: var(--wine); }
.ship { font-size: 12px; color: var(--ink-soft); }
.empty-grid { padding: 48px 0; color: var(--ink-soft); }
.empty-shop { padding: 12px 0 8px; max-width: 36em; }
.empty-shop h2 { font-size: 28px; }
.empty-shop .lede { margin-top: 10px; }
.prose { max-width: 40em; }
.prose p { margin: 14px 0 0; color: var(--ink-soft); }
.prose h2 { margin-top: 32px; }

.shop-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  margin-top: 22px;
  border-bottom: 1px solid var(--line);
}
.shop-search input[type="search"] {
  flex: 1;
  border: 0;
  padding: 14px 0;
  background: transparent;
  color: var(--ink);
}
.chip.is-on {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.garrafa {
  width: 82px;
  height: 196px;
  color: var(--wine);
  display: block;
}
.garrafa.organico,
.garrafa.biodinamico { color: var(--sage); }

.practice-band a.practice-tile {
  display: block;
  padding: 32px 28px 30px;
  border-right: 1px solid var(--line);
  color: inherit;
}
.practice-band a.practice-tile:last-child { border-right: 0; }
.practice-band a.practice-tile:hover,
.practice-band a.practice-tile.is-on {
  background: var(--cream);
}
.practice-band a.practice-tile h3 { font-size: 22px; margin: 0 0 8px; }
.practice-band a.practice-tile p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.45; }

.site-footer a { color: var(--sage); }
.site-footer a:hover { color: #fff; }
.site-footer .cat { color: var(--sage); }

.notice {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink-soft);
}

.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
}

.form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-size: 13px; color: var(--ink-soft); }
input, select, textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 0;
  color: var(--ink);
  border-radius: 0;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--wine);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.choice label {
  border: 1px solid var(--line);
  padding: 14px;
  background: var(--white);
  cursor: pointer;
}
.choice input { accent-color: var(--wine); }
.choice .on { border-color: var(--wine); background: #f4f6f1; }

.wizard-nav { display: flex; gap: 8px; margin: 0 0 22px; }
.wizard-nav span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.wizard-nav .is-on { color: var(--forest); border-color: var(--forest); }
.panel[hidden] { display: none !important; }

.secure-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.secure-list li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
}
.secure-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--leaf);
  position: absolute;
  left: 0;
  top: 8px;
}

.pay-methods { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-methods button {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 14px;
  cursor: pointer;
}
.pay-methods button.is-on { border-color: var(--forest); color: var(--forest); }

.checkout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 28px; }
.summary { background: var(--white); border: 1px solid var(--line); padding: 20px; }
.line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.total { font-family: var(--serif); font-size: 28px; color: var(--forest); }

.site-footer {
  background: var(--wine);
  color: var(--sage);
  padding: 36px 0 28px;
  margin-top: 64px;
}
.legal { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
.site-footer .logo { background: none; }
.site-footer .logo img { height: 36px; background: none; }
.site-footer .logo-circle img {
  height: 72px;
  width: 72px;
  max-width: 72px;
  object-fit: contain;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.legal { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 32px; padding-top: 16px; font-size: 12px; color: #a9bfb0; }

.nav-link.is-on {
  border-bottom-color: var(--sage);
}
.age {
  position: fixed;
  inset: 0;
  background: rgba(95, 4, 40, 0.92);
  display: grid;
  place-items: center;
  z-index: 50;
}
.age[hidden] { display: none; }
.age-box {
  width: min(440px, calc(100% - 32px));
  background: var(--paper);
  padding: 36px 32px;
  text-align: center;
  border: 1px solid var(--line);
}
.age-box p { color: var(--ink-soft); }
.age-box-dark {
  background: var(--wine);
  border: 0;
  color: var(--sage);
}
.age-box-dark h2 { color: #fff; }
.age-box-dark p { color: var(--sage); }
.age-mark {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  display: block;
  object-fit: contain;
}

.chapters {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}
.chapters a.is-on { color: var(--forest); }

.present-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 40px 0 80px;
}

.seal {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  border: 0;
  padding: 0;
  background: none;
}
.seals { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

.practice-band {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.15fr 0.9fr;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.practice-band article {
  padding: 32px 28px 30px;
  border-right: 1px solid var(--line);
}
.practice-band article:last-child {
  border-right: 0;
  background: var(--paper);
  background-image: var(--grain);
}
.practice-band .mark,
.practice-card .mark {
  width: 28px;
  height: 28px;
  display: block;
  color: var(--bio);
}
.practice-band .mark { margin-bottom: 12px; }
.practice-band .mark.organico,
.practice-card.organico .mark { color: var(--org); }
.practice-band .mark.natural,
.practice-card.natural .mark { color: var(--nat); }
.practice-band .mark.sustentavel,
.practice-card.sustentavel .mark { color: var(--sus); }
.practice-band h3 { font-size: 26px; margin: 0 0 8px; }
.practice-band p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.45; max-width: 28em; }
.practice-band article:last-child h3 { font-size: 20px; color: var(--moss); }
.practice-band article:last-child p { font-size: 13px; }

.practice-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--white);
}
.practice-card .mark { width: 28px; height: 28px; margin-top: 2px; }
.practice-card.biodinamico .mark { color: var(--bio); }
.practice-card.organico .mark { color: var(--org); }
.practice-card.natural .mark { color: var(--nat); }
.practice-card.sustentavel .mark { color: var(--sus); }
.practice-card h3 { font-size: 20px; margin: 0 0 4px; }
.practice-card p { margin: 0; font-size: 14px; color: var(--ink-soft); }

.split-demo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.split-demo div { background: var(--white); padding: 16px; }
.split-demo b { display: block; font-family: var(--serif); font-size: 26px; color: var(--forest); }

.partner-switch { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 24px 0 28px; }
.partner-switch button {
  text-align: left;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 14px 16px;
  cursor: pointer;
  color: var(--ink);
}
.partner-switch button.is-on { border-color: var(--forest); background: #f3f7f4; }
.partner-switch .kind { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.partner-switch strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--forest); }
.partner-switch em { font-style: normal; font-size: 12px; color: var(--ink-soft); }

.rule-cat { background: var(--white); border: 1px solid var(--line); padding: 18px; }
.rule-cat .cat { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.rule-cat dl { margin: 0; display: grid; gap: 8px; }
.rule-cat dt { font-size: 12px; color: var(--moss); }
.rule-cat dd { margin: 0; font-size: 15px; color: var(--ink); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 4px 8px;
  color: var(--leaf);
  background: var(--cream);
}
.chip-ex { color: var(--gold); border-color: var(--gold-soft); }

.inherit-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.inherit-row .mini-bottle { height: 88px; background: none; display: grid; place-items: center; }
.inherit-row .mini-bottle svg { width: 32px; height: 80px; }

.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--white);
}
.compare th, .compare td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.compare th { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); font-weight: 500; background: var(--cream); }
.channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.channels h3 { margin: 4px 0 8px; }
.inherit-row h3 { margin: 0 0 4px; font-size: 18px; font-family: var(--serif); font-weight: 500; color: var(--forest); }

@media (max-width: 900px) {
  .partner-switch { grid-template-columns: 1fr 1fr; }
}

#pdp.grid-2 {
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.pdp-bottle {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: none;
  padding: 0;
}
.pdp-bottle svg {
  width: 108px;
  height: 260px;
}

@media (max-width: 900px) {
  .header-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo meta"
      "nav nav";
    gap: 8px 12px;
    padding: 10px 0 12px;
  }
  .header-row .logo { grid-area: logo; min-height: 48px; }
  .header-row .logo img { height: 44px; }
  .header-row .nav-main {
    grid-area: nav;
    justify-self: start;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .header-row .nav-meta-wrap { grid-area: meta; }
  .grid-2, .grid-3, .grid-4, .checkout, .present-layout, .foot-grid, .choice, .row-2, .partner-switch, .channels, .practice-band, .seal-filters {
    grid-template-columns: 1fr;
  }
  #pdp.grid-2 { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 28px 16px; }
  .practice-band article,
  .practice-band a.practice-tile { border-right: 0; border-bottom: 1px solid var(--line); }
  .nav { flex-wrap: wrap; gap: 12px 18px; }
  .chapters { position: static; flex-direction: row; display: flex; flex-wrap: wrap; }
}
