/* Kick Frame — pitch-groen op ivoor, typografie-gedreven */

:root {
  --ink: #14241c;
  --paper: #fbf8f2;
  --grey-50: #f3eee2;
  --grey-100: #eae3d2;
  --grey-200: #dcd3bc;
  --grey-400: #a69c86;
  --grey-600: #5c5645;

  /* Pitch-groen is het hoofdaccent (voetbalveld), goud voor sterren en
     bestseller, warm terracotta-rood voor korting en winkelwagen. */
  --gold: #d9a62b;
  --green: #1f6b45;
  --red: #b8402e;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 76rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

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

/* height:auto is nodig: anders wint het height-attribuut van <img> van aspect-ratio */
img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 7vw, 4.75rem); }
h2 { font-size: clamp(1.875rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); letter-spacing: -0.005em; }

figure { margin: 0; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--grey { background: var(--grey-50); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin: 0 0 1rem;
}

.section--ink .eyebrow { color: var(--grey-400); }

.eyebrow--accent,
.section--ink .eyebrow--accent { color: var(--red); }

.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: var(--grey-600);
  max-width: 42ch;
}

.section--ink .lead { color: var(--grey-200); }

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

.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.section--ink :focus-visible { outline-color: var(--paper); }

/* ---------- Knoppen ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 1rem 1.75rem;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--paper);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.button:hover { transform: translateY(-2px); }

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button--ghost:hover { background: var(--ink); color: var(--paper); }

.section--ink .button {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.section--ink .button--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.section--ink .button--ghost:hover { background: var(--paper); color: var(--ink); }

.button--block { width: 100%; }
.button--lg { padding: 1.15rem 2.25rem; font-size: 1rem; }

.button--buy {
  background: var(--green);
  border-color: var(--green);
  color: var(--paper);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ---------- Aankondigingsbalk ---------- */

.announce {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.announce ul {
  display: grid;
  justify-items: center;
  list-style: none;
  margin: 0;
  padding: 0.7rem var(--gutter);
}

.announce li {
  grid-area: 1 / 1;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.announce li.is-active { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .announce li { transition: none; }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0.9rem var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img { height: 34px; width: auto; }

.site-footer .brand img { filter: invert(1); }

.header-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-rating .stars { font-size: 0.8125rem; }

.header-rating:hover { text-decoration: underline; }

/* ---------- Groot, gecentreerd logo onder de header ---------- */

.brand-showcase {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter) clamp(1.5rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--grey-200);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark img { height: clamp(64px, 11vw, 108px); width: auto; }

.main-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.main-nav a {
  text-decoration: none;
  color: var(--grey-600);
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
}

.cart-link:hover { border-color: var(--ink); }

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding-inline: 0.35rem;
  background: var(--red);
  color: var(--paper);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
}

/* Onder ~600px passen merk, winkelwagen en menuknop niet meer naast elkaar
   op hun volle formaat — anders scrollt de pagina horizontaal. */
@media (max-width: 38rem) {
  .header-inner { gap: 0.5rem; padding-inline: 1rem; }
  .brand svg { width: 26px; height: 26px; }
  .brand-name { font-size: 1rem; }
  .header-actions { gap: 0.4rem; }
  .cart-link { font-size: 0.8125rem; padding: 0.45rem 0.6rem; gap: 0.3rem; }
  .nav-toggle { font-size: 0.75rem; padding: 0.45rem 0.6rem; }
  .cart-count { min-width: 1.15rem; height: 1.15rem; font-size: 0.6875rem; }
}

@media (max-width: 52rem) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--grey-200);
    padding: 0.5rem var(--gutter) 1.25rem;
  }

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

  .main-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--grey-100);
  }
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}

@media (max-width: 60rem) {
  .hero { grid-template-columns: 1fr; }
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-figure {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: end;
}

.hero-figure .frame:first-child { transform: rotate(-1.5deg); }
.hero-figure .frame:last-child { transform: rotate(1.5deg) translateY(-1.5rem); }

.rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--grey-600);
  margin-top: 1.75rem;
}

.stars { letter-spacing: 0.1em; color: var(--gold); }

/* ---------- Ingelijste poster ---------- */

.frame {
  background: var(--paper);
  padding: 0.75rem;
  border: 1px solid var(--grey-200);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.45);
}

.frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

/* ---------- USP-strip ---------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--grey-200);
  border-block: 1px solid var(--grey-200);
}

.usp-grid li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--paper);
  padding: 1.35rem var(--gutter);
  font-size: 0.9375rem;
  font-weight: 500;
}

.usp-grid svg { width: 20px; height: 20px; flex: none; }

@media (max-width: 60rem) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 30rem) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ---------- Productraster ---------- */

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.75rem;
}

.section-head h2 { margin-bottom: 0; }

.section-head a {
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

@media (max-width: 64rem) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 48rem) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-media {
  position: relative;
  background: var(--grey-100);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-media img { transform: scale(1.04); }

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
}

.badge--nieuw { background: var(--green); }
.badge--bestseller { background: var(--gold); color: var(--ink); }

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-top: 0.9rem;
}

.product-info h3 { margin: 0; font-size: 1rem; font-weight: 700; }
.product-meta { font-size: 0.8125rem; color: var(--grey-600); }
.price { font-family: var(--font-display); font-weight: 700; white-space: nowrap; }

/* ---------- Vergelijkingstabel ---------- */

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--grey-200);
}

.compare-table {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
  vertical-align: top;
}

.compare-table thead th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-200);
}

.compare-table thead th.is-us {
  background: var(--ink);
  color: var(--paper);
}

.compare-table tbody th {
  font-weight: 700;
  width: 30%;
  white-space: nowrap;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table td.is-us {
  background: var(--grey-50);
  font-weight: 600;
}

.compare-table td.is-us::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.55em;
  border-radius: 50%;
  background: var(--green);
  vertical-align: middle;
}

/* ---------- Filters ---------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.chip {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

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

.chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ---------- Kolommen ---------- */

.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

@media (max-width: 56rem) { .cols { grid-template-columns: 1fr; } }

.col-num {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--grey-400);
  display: block;
  margin-bottom: 0.9rem;
}

.col p { color: var(--grey-600); font-size: 0.9375rem; }
.section--ink .col p { color: var(--grey-200); }

/* ---------- Reviews ---------- */

.review {
  border-top: 2px solid var(--ink);
  padding-top: 1.25rem;
}

.review blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.review figcaption { font-size: 0.875rem; color: var(--grey-600); }

/* ---------- Productpagina ---------- */

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-block: clamp(2rem, 5vw, 4rem);
}

@media (max-width: 60rem) { .product-layout { grid-template-columns: 1fr; } }

.gallery-main { position: relative; background: var(--grey-100); }

.gallery-main img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.thumb {
  padding: 0;
  border: 1px solid var(--grey-200);
  background: var(--grey-100);
  cursor: pointer;
}

.thumb[aria-pressed="true"] { border-color: var(--ink); border-width: 2px; }
.thumb img { width: 100%; aspect-ratio: 3 / 4; object-fit: contain; }

.product-detail h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.5rem; }

.product-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 1.25rem 0 0.25rem;
}

.price-note { font-size: 0.875rem; color: var(--grey-600); margin-bottom: 1.75rem; }

.option-group { margin-bottom: 1.75rem; }

.option-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.option-label span:last-child {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--grey-600);
}

.options { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.options input { position: absolute; opacity: 0; pointer-events: none; }

.options label {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
}

.options label small { font-weight: 400; color: var(--grey-600); font-size: 0.75rem; }

.options input:checked + label {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.options input:focus-visible + label { outline: 2px solid var(--ink); outline-offset: 3px; }

.buy-usps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9375rem;
}

.buy-usps li { display: flex; gap: 0.6rem; align-items: center; }
.buy-usps svg { width: 18px; height: 18px; flex: none; color: var(--green); }

.stock-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ---------- Accordeon ---------- */

.accordion { border-top: 1px solid var(--grey-200); margin-top: 2.5rem; }

details {
  border-bottom: 1px solid var(--grey-200);
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
}

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

summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

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

details > *:not(summary) {
  padding-bottom: 1.35rem;
  color: var(--grey-600);
  font-size: 0.9375rem;
  max-width: 62ch;
}

.faq { max-width: 48rem; margin-inline: auto; }

/* ---------- Sticky koopbalk (mobiel) ---------- */

.sticky-buy {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--grey-200);
  box-shadow: 0 -8px 24px -18px rgba(0, 0, 0, 0.5);
}

.sticky-buy .price { font-size: 1.125rem; }
.sticky-buy .button { flex: 1; padding-block: 0.85rem; }

@media (max-width: 60rem) {
  .sticky-buy.is-visible { display: flex; }
  body.has-sticky-buy { padding-bottom: 5rem; }
}

/* ---------- Formulieren ---------- */

.form { display: grid; gap: 1.1rem; max-width: 34rem; }

.field { display: grid; gap: 0.4rem; }

.field label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.field input:focus,
.field textarea:focus { border-color: var(--ink); outline: none; }

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

.newsletter {
  display: flex;
  gap: 0.6rem;
  max-width: 30rem;
  margin-top: 1.75rem;
}

.newsletter input {
  flex: 1;
  font: inherit;
  padding: 1rem 1.1rem;
  border: 2px solid var(--paper);
  border-radius: var(--radius);
  background: transparent;
  color: var(--paper);
}

.newsletter input::placeholder { color: var(--grey-400); }

.form-note { font-size: 0.8125rem; color: var(--grey-600); }
.section--ink .form-note { color: var(--grey-400); }

@media (max-width: 34rem) {
  .newsletter { flex-direction: column; }
}

/* ---------- Split-blok ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 56rem) { .split { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 56rem) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 34rem) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .brand { color: var(--paper); margin-bottom: 1rem; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 1rem;
}

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

.footer-col a {
  text-decoration: none;
  font-size: 0.9375rem;
  color: var(--grey-200);
}

.footer-col a:hover { color: var(--paper); text-decoration: underline; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: var(--grey-400);
}

.pay-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pay-list li { width: 46px; }

.pay-list svg {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.pay-list--light {
  margin: 1.25rem 0 0;
}

.pay-list--light svg { box-shadow: 0 0 0 1px var(--grey-200); }

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  translate: -50% 0;
  z-index: 80;
  background: var(--ink);
  color: var(--paper);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, translate 0.25s ease;
}

.toast.is-visible { opacity: 1; translate: -50% -0.5rem; }

@media (max-width: 60rem) {
  .toast { bottom: 5.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
