/* ==========================================================================
   AFRICAN PRIDE STORES
   1. Design tokens        6. What we stock
   2. Base and helpers     7. Delivery and bulk panels
   3. Header and nav       8. Visit us and footer
   4. Hero                 9. Basket drawer
   5. Products            10. Responsive
   ========================================================================== */


/* -------------------------------------------------------------------------
   1. Design tokens
   Colours lifted from the shop flyer so the site and the print material
   look like the same business.
   ------------------------------------------------------------------------- */

:root {
  --green-900: #05290F;
  --green-800: #0A3D1C;
  --green-700: #0F5228;
  --green-600: #16693A;

  --gold:       #F2B705;
  --gold-light: #FFD34A;
  --gold-deep:  #C48F00;

  --red:      #D42027;
  --red-deep: #A8151C;

  --wa:      #25D366;
  --wa-deep: #128C4A;

  --cream:   #FDF9EE;
  --cream-2: #F6EED8;
  --sand:    #E8DFC2;

  --ink:   #17201A;
  --muted: #5C6659;
  --white: #FFFFFF;

  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-script: "Kaushan Script", "Brush Script MT", cursive;

  --radius:    18px;
  --radius-sm: 10px;

  --shadow:    0 10px 30px rgba(5, 41, 15, .10);
  --shadow-lg: 0 20px 50px rgba(5, 41, 15, .18);

  --wrap: 1180px;
}


/* -------------------------------------------------------------------------
   2. Base and helpers
   ------------------------------------------------------------------------- */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.eyebrow {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow--dark { color: var(--gold-deep); }

.script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  color: var(--red);
  line-height: 1.3;
}

.script--light { color: var(--gold-light); }

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--green-900);
  box-shadow: 0 6px 0 var(--gold-deep);
}
.btn--gold:hover { background: var(--gold-light); }

.btn--green {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 6px 0 var(--green-900);
}
.btn--green:hover { background: var(--green-700); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }

.btn--wide { width: 100%; }

.wa-icon { width: 17px; height: 17px; flex: none; }


/* -------------------------------------------------------------------------
   3. Header and nav
   ------------------------------------------------------------------------- */

.topbar {
  background: var(--green-900);
  color: var(--cream-2);
  font-size: .82rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 38px;
  text-align: center;
}

.topbar__divider {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.topbar__phone { text-decoration: none; }
.topbar__phone strong { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow .2s ease, padding .2s ease;
}

.site-header.is-stuck { box-shadow: 0 6px 24px rgba(5, 41, 15, .10); }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.logo__mark {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  background: var(--green-800);
  border-radius: 11px;
  flex: none;
}
.logo__mark svg { width: 26px; height: 26px; }

.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--green-800);
  letter-spacing: -.02em;
}
.logo__text em {
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}

.nav { display: flex; gap: 28px; }

.nav a {
  text-decoration: none;
  font-size: .93rem;
  font-weight: 600;
  color: var(--green-800);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.nav a:hover { border-bottom-color: var(--gold); }

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
}
.cart-button:hover { background: var(--green-700); }
.cart-button svg { width: 19px; height: 19px; }

.cart-button__count {
  display: none;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-900);
  font-size: .76rem;
  font-weight: 800;
  line-height: 21px;
  text-align: center;
}
.cart-button__count.is-visible { display: inline-block; }

.cart-button.is-bumped { animation: bump .45s ease; }

@keyframes bump {
  0%, 100% { transform: scale(1); }
  35%      { transform: scale(1.09); }
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--sand);
  border-radius: 11px;
  background: var(--white);
  cursor: pointer;
  position: relative;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  position: absolute;
  left: 50%;
  width: 18px; height: 2px;
  background: var(--green-800);
  transform: translateX(-50%);
  content: "";
}
.nav-toggle__bar { top: 50%; margin-top: -1px; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after  { top: 6px; }


/* -------------------------------------------------------------------------
   4. Hero
   ------------------------------------------------------------------------- */

.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 78% 22%, rgba(22, 105, 58, .55), transparent 65%),
    linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 100%);
  color: var(--white);
  overflow: hidden;
}

/* Faint repeating shopping pattern in the background. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(242, 183, 5, .18) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: .5;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
  padding: 74px 24px 84px;
}

.hero h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.1rem);
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, .25);
}

.hero__gold {
  background: linear-gradient(180deg, var(--gold-light) 25%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Red script reads well on cream, but not on the dark green hero,
   so the hero tagline uses the gold instead. */
.hero .script {
  margin: 18px 0 20px;
  color: var(--gold-light);
}

.hero__lead {
  max-width: 46ch;
  font-size: 1.03rem;
  color: rgba(255, 255, 255, .82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* The basket photograph, cropped from the shop flyer. It is framed as a
   deliberate photo card so the flyer's own background reads as intentional
   rather than as a stray rectangle on the green. */
.hero__art { display: grid; place-items: center; }

.hero__photo {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 22px;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}


/* -------------------------------------------------------------------------
   Trust strip
   ------------------------------------------------------------------------- */

.trust { background: var(--green-700); color: var(--white); }

.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 0 24px;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
  position: relative;
}
.trust__item + .trust__item::before {
  content: "";
  position: absolute;
  left: 0; top: 24%;
  width: 1px; height: 52%;
  background: rgba(255, 255, 255, .22);
}

.trust__icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.05rem;
}

.trust__item p { font-size: .88rem; line-height: 1.35; }
.trust__item strong {
  display: block;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}


/* -------------------------------------------------------------------------
   5. Products
   ------------------------------------------------------------------------- */

.section { padding: 84px 0; }
.section--cream { background: var(--cream-2); }
.section--dark { background: var(--green-800); color: var(--white); }

.section__head { max-width: 640px; margin: 0 auto 34px; text-align: center; }

.section__head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  color: var(--green-800);
}
.section--dark .section__head h2 { color: var(--white); }

.section__sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.chip {
  padding: 9px 19px;
  border: 1.5px solid var(--sand);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: .87rem;
  font-weight: 700;
  color: var(--green-800);
  cursor: pointer;
  transition: all .2s ease;
}
.chip:hover { border-color: var(--gold); }
.chip.is-active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.card.is-hidden { display: none; }

/* White, because the product photos cropped from the flyer sit on white.
   Anything warmer would show a pale box behind each one. */
.card__media {
  position: relative;
  height: 186px;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  display: grid;
  place-items: center;
}

/* The drawn placeholder sits underneath. A real photo, when present,
   is layered on top and covers it. */
.card__art { width: 118px; }
.card__art svg { width: 100%; height: auto; }

.card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  background: var(--white);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
}

.card__brand {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.card__name {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--green-800);
  line-height: 1.25;
  margin: 5px 0 6px;
}

.card__blurb {
  font-size: .84rem;
  color: var(--muted);
  min-height: 2.6em;
}

.card__size {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 0;
}
.card__size > span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* The right padding leaves room for the dropdown arrow the browser draws
   inside the box. Without it a long option like "Seasoning powder" runs
   straight into the arrow on a narrow phone. */
.card__size select {
  flex: 1;
  min-width: 0;
  text-overflow: ellipsis;
  padding: 9px 28px 9px 11px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-800);
  cursor: pointer;
}
.card__size select:focus-visible { outline: 2px solid var(--gold); }

.card__size--single {
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
}

.card__price {
  margin-top: 10px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green-600);
}

.card__actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.card__actions .btn {
  width: 100%;
  padding: 11px 14px;
  font-size: .87rem;
  box-shadow: none;
}

.btn--add {
  background: var(--green-800);
  color: var(--white);
}
.btn--add:hover { background: var(--green-700); }
.btn--add.is-done { background: var(--gold); color: var(--green-900); }

.btn--wa {
  background: var(--white);
  color: var(--wa-deep);
  border-color: var(--wa);
}
.btn--wa:hover { background: var(--wa); color: var(--white); }

.grid__note {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-size: .93rem;
}
.grid__note a { color: var(--green-700); font-weight: 700; }


/* -------------------------------------------------------------------------
   6. What we stock
   ------------------------------------------------------------------------- */

.cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--green-800);
  transition: transform .2s ease, border-color .2s ease;
}
.cat:hover { transform: translateY(-3px); border-color: var(--gold); }

.cat::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--gold);
  font-size: .8rem;
}

.cat--more {
  background: var(--green-800);
  color: var(--gold-light);
  border-color: var(--green-800);
}
.cat--more::before { background: var(--gold); color: var(--green-900); }


/* -------------------------------------------------------------------------
   7. Delivery and bulk panels
   ------------------------------------------------------------------------- */

.panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  padding: 40px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.panel h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.panel p { font-size: .98rem; }
.panel .btn { margin-top: 8px; }

.panel__tag {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.panel--green {
  background: var(--green-800);
  color: var(--white);
}
.panel--green .panel__tag { background: var(--red); color: var(--white); }
.panel--green p { color: rgba(255, 255, 255, .8); }

.panel--gold {
  background: linear-gradient(150deg, var(--gold-light), var(--gold));
  color: var(--green-900);
}
.panel--gold .panel__tag { background: var(--green-800); color: var(--gold); }
.panel--gold p { color: rgba(5, 41, 15, .78); }


/* -------------------------------------------------------------------------
   8. Visit us and footer
   ------------------------------------------------------------------------- */

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.visit h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.visit .script { margin-top: 18px; }

.visit__details {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 22px;
}

.detail__label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.detail__value {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.detail__note {
  margin-top: 5px;
  font-size: .85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .68);
}

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .72);
  padding: 30px 0;
  text-align: center;
  font-size: .88rem;
}
.site-footer strong { color: var(--gold); margin-right: 6px; }
.site-footer__small { margin-top: 6px; font-size: .78rem; opacity: .65; }


/* -------------------------------------------------------------------------
   9. Basket drawer
   ------------------------------------------------------------------------- */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 41, 15, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 80;
}
.overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 90;
  width: min(390px, 100%);
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: var(--green-800);
  color: var(--white);
}
.drawer__head h2 { font-family: var(--font-body); font-weight: 800; font-size: 1.15rem; }

.drawer__close {
  width: 34px; height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.drawer__close:hover { background: rgba(255, 255, 255, .26); }

.drawer__empty {
  padding: 34px 26px;
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
}

.drawer__list {
  list-style: none;
  margin: 0;
  padding: 14px 18px;
  overflow-y: auto;
  flex: 1;
  display: grid;
  gap: 10px;
  align-content: start;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 14px;
}

.cart-item__art { width: 34px; flex: none; }
.cart-item__art svg { width: 100%; height: auto; }

.cart-item__text { flex: 1; min-width: 0; }
.cart-item__name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.25;
}
.cart-item__size { font-size: .76rem; color: var(--muted); }

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: none;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 3px;
}
.cart-item__qty button {
  width: 25px; height: 25px;
  border: none;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-size: .9rem;
  line-height: 1;
  cursor: pointer;
}
.cart-item__qty button:hover { background: var(--green-700); }
.cart-item__qty span {
  min-width: 20px;
  text-align: center;
  font-size: .86rem;
  font-weight: 800;
}

.drawer__foot {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--sand);
  background: var(--white);
  display: grid;
  gap: 12px;
}

.drawer__note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.drawer__foot .btn--wa {
  background: var(--wa);
  color: var(--white);
  border-color: var(--wa);
}
.drawer__foot .btn--wa:hover { background: var(--wa-deep); }

.drawer__clear {
  border: none;
  background: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.drawer__clear:hover { color: var(--red); }

/* Floating WhatsApp button ------------------------------------------------ */

.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(18, 140, 74, .45);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.07); }
.fab svg { width: 29px; height: 29px; }


/* -------------------------------------------------------------------------
   10. Responsive
   ------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 64px;
    text-align: center;
  }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__art { order: -1; }
  .hero__photo { max-width: 290px; }

  .trust__inner { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(odd)::before { display: none; }

  .panels, .visit { grid-template-columns: 1fr; }
  .visit { gap: 28px; text-align: center; }
  .section { padding: 62px 0; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; order: 3; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    box-shadow: var(--shadow);
    padding: 8px 24px 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--sand); }

  .cart-button span:not(.cart-button__count) { display: none; }
  .cart-button { padding: 11px 13px; }

  .topbar__inner { font-size: .76rem; gap: 10px; }
  .topbar__item:first-child { display: none; }
  .topbar__divider { display: none; }
}

@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card__media { height: 148px; }
  .card__art { width: 92px; }
  .card__body { padding: 14px 13px 16px; }
  .card__name { font-size: .93rem; }
  .card__blurb { display: none; }
  .card__size > span { display: none; }
  .card__size select { padding: 8px 24px 8px 9px; font-size: .83rem; }

  /* Tighter so "Order now" stays on one line in a two column grid. */
  .card__actions .btn { padding: 10px 6px; font-size: .8rem; gap: 5px; }
  .panel { padding: 30px 24px; }
  .trust__item { padding: 16px 10px; gap: 10px; }
  .trust__icon { width: 34px; height: 34px; font-size: .9rem; }
  .trust__item p { font-size: .78rem; }
}

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