/* Velanexo — minimal Polish product storefront
   Stone paper, charcoal ink, moss accent. Figtree + Source Serif 4.
*/

:root {
  --ink: #161616;
  --ink-soft: #5a5a56;
  --paper: #f6f5f1;
  --paper-deep: #ebe9e3;
  --white: #ffffff;
  --moss: #3d5346;
  --moss-deep: #2a3a31;
  --line: #d8d5cd;
  --accent: #3d5346;
  --radius: 0;
  --shadow: none;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-ui: Figtree, "Segoe UI", system-ui, sans-serif;
  --max: 1080px;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--moss);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--moss-deep);
}

:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Ad disclosure */
.ad-disclosure {
  background: var(--ink);
  color: #c8c8c4;
  font-size: 0.875rem;
  line-height: 1.55;
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid transparent;
}

.ad-disclosure-bottom {
  border-top: 1px solid #2a2a2a;
}

.ad-disclosure strong {
  color: var(--white);
  font-weight: 600;
}

.ad-disclosure a {
  color: #fff;
  text-decoration: underline;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header .wrap-header {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: var(--header-h);
  padding: 0.65rem 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  color: var(--ink);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.15rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.55rem;
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: var(--ink);
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-bottom: 0.75rem;
  }

  .nav.is-open {
    display: flex;
  }
}

/* Trust strip — quiet rule under header */
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 0.7rem 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  justify-content: flex-start;
}

.trust-strip li {
  position: relative;
}

.trust-strip li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.85rem;
  top: 50%;
  width: 3px;
  height: 3px;
  background: var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .trust-strip li:not(:last-child)::after {
    display: none;
  }
}

/* Hero — full-bleed product plane */
.hero {
  position: relative;
  padding: 0;
  background: var(--paper-deep);
  overflow: hidden;
  min-height: min(92svh, 52rem);
  display: flex;
  align-items: stretch;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  width: 100%;
  margin-inline: auto;
  display: grid;
  gap: 0;
  align-items: stretch;
  min-height: inherit;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(20rem, 0.88fr) minmax(22rem, 1.12fr);
  }
}

.hero-copy {
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.25rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: var(--paper);
  animation: rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-copy {
    padding-left: max(1.25rem, calc((100vw - var(--max)) / 2));
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

.kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.lede {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  max-width: 36ch;
  font-size: 1.05rem;
}

.price-block {
  margin: 0 0 0.5rem;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}

.price-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tax-note {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 40ch;
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
}

.hero-points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--moss);
}

.merchant-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 42ch;
  padding: 0;
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.gallery {
  display: grid;
  gap: 0;
  background: var(--paper-deep);
  min-height: 22rem;
}

@media (min-width: 900px) {
  .gallery {
    min-height: 100%;
  }
}

.gallery-main {
  background:
    linear-gradient(160deg, #e8e6df 0%, #d5d2c8 100%);
  border: 0;
  aspect-ratio: auto;
  min-height: 22rem;
  height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  box-shadow: none;
  animation: fade-in 900ms ease both;
}

.gallery-main::after {
  display: none;
}

.gallery-main img {
  width: min(100%, 480px);
  transition: opacity 280ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: none;
  position: relative;
  z-index: 1;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.thumbs button {
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0;
  min-height: 72px;
}

.thumbs button:last-child {
  border-right: 0;
}

.thumbs button[aria-current="true"] {
  background: var(--paper);
  box-shadow: inset 0 -2px 0 var(--moss);
}

.thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Buttons */
.qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--white);
}

.qty button {
  min-width: 44px;
  min-height: 44px;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
}

.qty input {
  width: 2.75rem;
  min-height: 44px;
  height: 2.75rem;
  border: 0;
  border-inline: 1px solid var(--line);
  text-align: center;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  -moz-appearance: textfield;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.line-total {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0.35rem 0 0;
}

.line-total strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--moss-deep);
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.availability {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-alt {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  max-width: 48ch;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 720px) {
  .feature-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-list li {
  padding: 1.5rem 0 0;
  border-top: 0;
}

@media (min-width: 720px) {
  .feature-list li {
    padding: 1.75rem 1.5rem 0 0;
    border-right: 1px solid var(--line);
  }

  .feature-list li:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .feature-list-rich li {
    padding: 1.75rem 1.5rem 1.5rem 0;
  }
}

.highlight-band {
  background: var(--paper);
}

.feature-list-rich li {
  padding: 1.5rem 0 1.25rem;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  transition: none;
}

.feature-list-rich li:hover {
  border-color: var(--line);
  transform: none;
}

.feature-list h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
  font-weight: 600;
}

.feature-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.split-prose {
  align-items: stretch;
}

.info-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem;
  display: grid;
  gap: 1rem;
  align-content: start;
  box-shadow: none;
}

.info-panel h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.3rem;
}

.info-panel .btn {
  justify-self: start;
}

.specs.compact > div {
  grid-template-columns: 0.9fr 1.1fr;
  padding: 0.7rem 0;
  font-size: 0.92rem;
}

.who-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .who-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.who-grid article {
  padding: 1.75rem 0 0;
  background: transparent;
  border: 0;
  border-top: 0;
}

@media (min-width: 800px) {
  .who-grid article {
    padding: 1.75rem 1.5rem 0 0;
    border-right: 1px solid var(--line);
  }

  .who-grid article:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

.who-grid h3 {
  font-family: var(--font-display);
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.who-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.prose {
  max-width: 68ch;
  color: var(--ink-soft);
}

.prose p {
  margin: 0 0 1rem;
}

.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  width: auto;
  height: auto;
  display: block;
  place-items: unset;
  background: transparent;
  color: var(--moss);
  font-size: 1.1rem;
  border-radius: 0;
  padding-top: 0.15rem;
  min-width: 2rem;
}

.steps h3 {
  margin: 0.15rem 0 0.3rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.specs {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.specs > div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.specs dt {
  color: var(--ink-soft);
  margin: 0;
}

.specs dd {
  margin: 0;
  font-weight: 600;
}

.policy-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 720px) {
  .policy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .policy-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.policy-grid article {
  padding: 1.5rem 0 0;
  background: transparent;
  border: 0;
}

@media (min-width: 720px) {
  .policy-grid article {
    padding: 1.5rem 1.5rem 0 0;
    border-right: 1px solid var(--line);
  }

  .policy-grid article:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

.policy-grid article h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.policy-grid p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--moss);
  font-weight: 400;
  font-size: 1.25rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 0.75rem 0 0.25rem;
  color: var(--ink-soft);
  max-width: 65ch;
}

.disclaimer {
  background: var(--paper-deep);
  border: 0;
  border-left: 2px solid var(--moss);
  padding: 1.25rem 1.35rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.disclaimer strong {
  color: var(--ink);
}

.cta-band {
  background: var(--ink);
  color: #bdbdb8;
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  text-align: left;
}

.cta-kicker {
  margin: 0 0 0.65rem !important;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a84;
  font-weight: 600;
}

.cta-band h2 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  max-width: 18ch;
  line-height: 1.2;
}

.cta-band p {
  margin: 0 0 1.5rem;
  max-width: 42ch;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
  min-width: min(100%, 20rem);
}

.cta-band .btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
}

.cta-price {
  display: inline;
  font-size: 1.35rem;
  color: var(--white);
}

/* Footer */
.site-footer {
  background: #111110;
  color: #a8a8a2;
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: #e4e4de;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.legal-block p {
  margin: 0 0 0.45rem;
  max-width: 48ch;
}

.entity-card {
  margin-top: 1rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid #2c2c2a;
  padding-top: 1rem;
}

.entity-card p {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
}

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #2c2c2a;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Legal pages */
.legal-page {
  padding: 2.5rem 0 4rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.legal-page .meta {
  color: var(--ink-soft);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.legal-page h3 {
  font-size: 1.05rem;
  margin: 1.35rem 0 0.4rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  max-width: 68ch;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.2rem;
}

.legal-page table {
  width: 100%;
  max-width: 68ch;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1rem 0;
}

.legal-page th,
.legal-page td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-page th {
  background: var(--paper-deep);
  color: var(--ink);
  font-weight: 600;
}

.legal-toc {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
  margin: 0 0 2rem;
  max-width: 68ch;
}

.legal-toc ol {
  margin: 0.5rem 0 0;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.35rem 1.4rem;
}

.contact-card h2 {
  margin-top: 0;
}

.prefs-form {
  max-width: 40rem;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.prefs-form label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.prefs-form label strong {
  display: block;
  margin-bottom: 0.25rem;
}

.prefs-form input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
}

.prefs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

#prefs-status {
  color: var(--moss-deep);
  font-weight: 600;
  min-height: 1.5em;
}

.return-form {
  max-width: 40rem;
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.return-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.return-form input,
.return-form textarea,
.return-form select {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--ink);
}

.return-form textarea {
  min-height: 8rem;
  resize: vertical;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  background: #111110;
  color: #d4d4ce;
  padding: 1.15rem 1.25rem 1.35rem;
  box-shadow: none;
  border-top: 1px solid #2c2c2a;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
}

.cookie-banner h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  color: var(--white);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  max-width: 62ch;
  color: #a8a8a2;
}

.cookie-banner a {
  color: #fff;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
}

.cookie-actions .btn {
  min-width: 8.5rem;
}

.cookie-actions .btn-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-actions .btn-reject:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.cookie-actions .btn-prefs {
  background: transparent;
  color: #a8a8a2;
  border: 0;
  text-decoration: underline;
  min-width: auto;
  padding-inline: 0.6rem;
}

.cookie-actions .btn-prefs:hover {
  color: #fff;
}

/* Quantity checkout modal */
body.modal-open {
  overflow: hidden;
}

.qty-modal[hidden] {
  display: none !important;
}

.qty-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.qty-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 16, 0.62);
  backdrop-filter: blur(2px);
}

.qty-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
  padding: 1.75rem 1.5rem 1.5rem;
  animation: modal-in 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.qty-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}

.qty-modal-close:hover {
  color: var(--ink);
}

.qty-modal-media {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1rem;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 0.45rem;
}

.qty-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qty-modal-panel h2 {
  font-family: var(--font-display);
  text-align: center;
  margin: 0 0 0.35rem;
  font-size: 1.55rem;
}

.qty-modal-product {
  text-align: center;
  margin: 0 0 0.35rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.qty-modal-price {
  text-align: center;
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.qty-modal-price span {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.qty-modal-form {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.qty-modal-form .qty-label {
  justify-self: center;
}

.qty-modal-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.qty-modal-form .btn-ghost {
  width: 100%;
}

.qty-modal-note {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .gallery-main,
  .qty-modal-panel,
  .feature-list-rich li {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Visual storytelling blocks */
.visual-promo-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .visual-promo-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .visual-promo-grid-rev {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.visual-promo-media {
  margin: 0;
  background: var(--paper-deep);
  border: 0;
  overflow: hidden;
  box-shadow: none;
}

.visual-promo-media img {
  width: 100%;
  height: auto;
  display: block;
}

.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 1px;
  border-radius: 0;
  background: var(--moss);
}

.info-panel-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 0;
  margin-bottom: 0.25rem;
}

.lifestyle-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 800px) {
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lifestyle-grid figure {
  margin: 0;
  background: var(--white);
  border: 0;
  overflow: hidden;
}

.lifestyle-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.lifestyle-grid figcaption,
.use-inline-photo figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.care-banner {
  background: var(--paper-deep);
}

.care-banner .wrap {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 880px) {
  .care-banner .wrap {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.care-banner-figure {
  margin: 0;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.care-banner-figure img {
  width: 100%;
  display: block;
}

.care-banner-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.75rem;
}

.care-banner-copy p {
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 1.35rem;
}

.use-inline-photo {
  margin: 1.5rem 0 0;
  border: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.use-inline-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
}
