/* ============================================================
   Chispitas Toys — design tokens
   Type:  Fredoka (display, playful/rounded) + Inter (body)
   Color: cream base, deep-plum navy, tangerine accent, mint success
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream: #FFFBF4;
  --paper: #FFFFFF;
  --navy: #23305A;
  --navy-deep: #171F3D;
  --tangerine: #FF7A33;
  --tangerine-deep: #E8621F;
  --mint: #1FA394;
  --mint-soft: #E4F6F2;
  --sun: #FFC24B;
  --ink: #2A2A33;
  --ink-soft: #6B6B78;
  --line: #EDE7DA;
  --danger: #D64545;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;

  --shadow-card: 0 1px 2px rgba(23, 31, 61, 0.04), 0 8px 24px rgba(23, 31, 61, 0.06);
  --shadow-pop: 0 12px 32px rgba(23, 31, 61, 0.16);

  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Inter', sans-serif;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------------- top bar ---------------- */

.topbar {
  background: var(--navy-deep);
  color: #F4E9D8;
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
}

/* ---------------- header ---------------- */

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

.header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tangerine), var(--sun));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-deep);
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--tangerine-deep);
}

.search-form {
  flex: 1;
  display: flex;
  max-width: 480px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
}

.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 18px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.search-form button {
  border: none;
  background: var(--navy);
  color: #fff;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.ship-to {
  font-size: 12.5px;
  color: var(--ink-soft);
  display: none;
}

.ship-to strong { color: var(--ink); display: block; font-size: 13px; }

.cart-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--tangerine);
  color: #fff;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(255, 122, 51, 0.35);
}

.cart-pill:hover { transform: translateY(-1px); }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--navy-deep);
  color: #fff;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-strip {
  border-top: 1px solid var(--line);
}

.nav-links {
  display: flex;
  gap: 26px;
  padding: 11px 0;
  overflow-x: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { white-space: nowrap; opacity: 0.85; }
.nav-links a:hover { opacity: 1; color: var(--tangerine-deep); }

.breadcrumb {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 16px 0 0;
}
.breadcrumb a:hover { color: var(--tangerine-deep); }

/* ---------------- hero ---------------- */

.hero {
  margin-top: 24px;
  border-radius: var(--radius-l);
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, #2B4A6B 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 48px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--sun);
}

.hero p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 46ch;
  line-height: 1.55;
  margin-bottom: 26px;
}

.hero-ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--tangerine);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 122, 51, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--tangerine-deep); }

.btn-ghost-light {
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost-light:hover { color: var(--sun); }

.btn-secondary {
  background: var(--navy);
  color: #fff;
}
.btn-secondary:hover { background: var(--navy-deep); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); }

.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-m);
  padding: 22px;
  backdrop-filter: blur(6px);
}

.hero-card-emoji {
  font-size: 54px;
  text-align: center;
  margin-bottom: 12px;
}

.coupon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-s);
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 13px;
}

.coupon-code {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--sun);
}

/* ---------------- age filter ---------------- */

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 48px 0 18px;
  flex-wrap: wrap;
}

.section-heading h2 { font-size: 22px; }
.section-heading .hint { font-size: 13px; color: var(--ink-soft); }

.age-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.age-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.age-chip .emoji { font-size: 18px; }
.age-chip small { display: block; color: var(--ink-soft); font-size: 11.5px; font-weight: 400; }

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

.age-chip.active {
  border-color: var(--tangerine);
  background: #FFF3EA;
}

/* ---------------- product grid ---------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.card {
  background: var(--paper);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover { box-shadow: var(--shadow-pop); transform: translateY(-3px); }

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.card-media .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--navy-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ink-soft);
}

.card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-soft); }
.card-meta .rating { color: var(--sun); font-weight: 600; }

.card-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  min-height: 2.7em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.price {
  font-family: 'Fredoka', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-deep);
}

.price-old {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-decoration: line-through;
}

.add-btn {
  margin-top: 4px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-s);
  padding: 10px;
  font-weight: 600;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease;
}

.add-btn:hover { background: var(--navy-deep); }
.add-btn.in-cart { background: var(--mint); }

.qty-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mint-soft);
  border-radius: var(--radius-s);
  padding: 6px;
}

.qty-stepper button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: none;
  background: var(--paper);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-stepper span { font-weight: 600; font-size: 14px; color: var(--navy-deep); }

/* ---------------- trust strip ---------------- */

.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  margin-top: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-item { display: flex; align-items: center; gap: 12px; }

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--mint-soft);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-item strong { display: block; font-size: 13.5px; color: var(--ink); }
.trust-item span { font-size: 12px; color: var(--ink-soft); }

/* ---------------- footer ---------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 48px 0 20px;
  margin-top: 40px;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid h4 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-grid a:hover { color: #fff; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-text small { color: var(--sun); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------------- cart page ---------------- */

.cart-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 20px;
  flex-wrap: wrap;
}

.count-pill {
  background: var(--mint-soft);
  color: var(--mint);
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-left: 10px;
}

.free-ship-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--mint-soft);
  border: 1px solid #C9EAE3;
  border-radius: var(--radius-m);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.free-ship-banner .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--mint); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  flex-shrink: 0;
}

.free-ship-banner strong { color: var(--navy-deep); font-size: 14px; }
.free-ship-banner p { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.cart-list { display: flex; flex-direction: column; gap: 14px; }

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 16px;
}

.cart-item-media {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.cart-item-name { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--ink-soft); margin-bottom: 10px; }

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-item-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-item-price { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px; color: var(--navy-deep); }

.link-btn {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.link-btn:hover { color: var(--danger); }

.empty-cart {
  text-align: center;
  padding: 70px 20px;
  background: var(--paper);
  border-radius: var(--radius-l);
  border: 1px dashed var(--line);
}
.empty-cart .emoji { font-size: 52px; margin-bottom: 14px; }
.empty-cart h3 { margin-bottom: 8px; }
.empty-cart p { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }

/* summary card */

.summary-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
  position: sticky;
  top: 96px;
}

.summary-card h3 { font-size: 16px; margin-bottom: 16px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 7px 0;
}

.summary-row strong { color: var(--ink); font-weight: 500; }
.summary-row.discount { color: var(--mint); }

.coupon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mint-soft);
  border-radius: var(--radius-s);
  padding: 10px 12px;
  margin: 10px 0;
  font-size: 12.5px;
  color: var(--mint);
  font-weight: 600;
}

.coupon-box button { color: var(--ink-soft); font-size: 16px; line-height: 1; }

.coupon-form {
  display: flex;
  gap: 8px;
  margin: 14px 0;
}

.coupon-form input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  text-transform: uppercase;
}

.coupon-form button {
  border: none;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-s);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
}

.summary-total strong { font-family: 'Fredoka', sans-serif; font-size: 22px; color: var(--navy-deep); }
.summary-total span { font-size: 13px; color: var(--ink-soft); }

.summary-note {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* cross-sell */

.crosssell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-card .card-media { aspect-ratio: 1.4; font-size: 34px; border-radius: var(--radius-s); }
.mini-card .card-title { font-size: 12.5px; min-height: 2.4em; }
.mini-card .price { font-size: 14.5px; }

.mini-add {
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--navy);
  border-radius: var(--radius-s);
  padding: 7px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mini-add:hover { border-color: var(--navy); }

/* ---------------- modal / checkout ---------------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 31, 61, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--paper);
  border-radius: var(--radius-l);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  box-shadow: var(--shadow-pop);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.modal-close {
  border: none;
  background: var(--cream);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 15px;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.field input, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

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

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field-hint { font-size: 11.5px; color: var(--ink-soft); margin-top: 6px; }

/* confirmation */

.confirm-wrap {
  text-align: center;
  padding: 60px 20px 20px;
}

.confirm-badge {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--mint);
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.confirm-wrap h2 { font-size: 26px; margin-bottom: 10px; }
.confirm-wrap > p { color: var(--ink-soft); font-size: 14.5px; max-width: 46ch; margin: 0 auto 28px; }

.order-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
  max-width: 460px;
  margin: 0 auto 24px;
  text-align: left;
}

.order-card-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 13.5px;
  border-bottom: 1px dashed var(--line);
}
.order-card-row:last-child { border-bottom: none; }
.order-card-row span:first-child { color: var(--ink-soft); }
.order-card-row span:last-child { font-weight: 600; color: var(--ink); }

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF3EA;
  color: var(--tangerine-deep);
  font-size: 12.5px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-s);
  margin: 22px auto 0;
  max-width: 460px;
}

/* ---------------- toast ---------------- */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--navy-deep);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 200;
  box-shadow: var(--shadow-pop);
}

.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }

/* ---------------- responsive ---------------- */

@media (min-width: 860px) {
  .ship-to { display: block; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 32px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .crosssell-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .header-row { flex-wrap: wrap; }
  .search-form { order: 3; max-width: 100%; }
  .hero h1 { font-size: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item-right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .crosssell-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
