@import url('tokens.css');

/* ============== Reset ============== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--bhoza-black);
  background: var(--bhoza-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img, video, svg { max-width: 100%; height: auto; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: var(--lh-snug); }
p  { margin: 0 0 1em; }

/* ============== Layout ============== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-sm { max-width: var(--container-sm); }
.section { padding-block: clamp(2.5rem, 7vw, 6rem); }
.section-tight { padding-block: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 480px) {
  .section { padding-block: 2.25rem; }
  .h-hero, .hero-title { font-size: clamp(2.5rem, 12vw, 4rem) !important; }
}

.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.between { justify-content: space-between; }
.center { justify-content: center; }
.items-center { align-items: center; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 2rem; }
.text-center { text-align: center; }

/* ============== Type ============== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: var(--fs-small);
  text-transform: uppercase;
  color: var(--bhoza-red);
  margin-bottom: .75rem;
}
.h-hero { font-size: var(--fs-hero); }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }
.lead { font-size: 1.125rem; max-width: 60ch; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  min-height: 44px;            /* WCAG touch-target */
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .btn { padding: .8rem 1.1rem; font-size: .95rem; }
  .btn-lg { padding: 1rem 1.4rem; font-size: 1rem; }
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-red    { background: var(--bhoza-red); color: #fff; }
.btn-red:hover { background: var(--bhoza-red-dk); }

.btn-black  { background: var(--bhoza-black); color: #fff; }
.btn-black:hover { background: var(--bhoza-red); }

.btn-outline {
  background: transparent;
  color: var(--bhoza-black);
  border-color: var(--bhoza-black);
}
.btn-outline:hover { background: var(--bhoza-black); color: #fff; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: #fff; color: var(--bhoza-black); }

.btn-lg { padding: 1.1rem 2rem; font-size: 1.125rem; }

/* ============== Header / Nav ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bhoza-black);
  color: #fff;
  border-bottom: 4px solid var(--bhoza-red);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .9rem;
  gap: 1rem;
  flex-wrap: nowrap;
}
.nav-logo {
  width: 262px;
  flex-shrink: 0;
  display: block;
  background: #000;
  padding: 11px 18px;
  border-radius: 0 10px 10px 0;
  margin-left: calc(var(--gutter) * -1);
  box-sizing: border-box;
}
.nav-logo svg, .nav-logo img { width: 100%; height: auto; display: block; }
.nav-logo svg .b { fill: #fff; }
@media (max-width: 480px) {
  .nav-logo { width: 186px; padding: 8px 13px; border-radius: 0 7px 7px 0; }
}

.nav-menu {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-menu a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .95rem;
  position: relative;
  padding-block: .25rem;
}
.nav-menu a:hover { color: var(--bhoza-red); }
.nav-menu a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--bhoza-red);
}
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.cart-btn {
  background: var(--bhoza-red);
  color: #fff;
  padding: .6rem 1rem;
  min-height: 44px;
  border: 0;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .cart-btn { padding: .5rem .75rem; font-size: .85rem; }
}
.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--bhoza-red);
  border-radius: 999px;
  font-size: .8rem;
  min-width: 1.4rem; height: 1.4rem;
  padding: 0 .4rem; margin-left: .35rem;
}

.menu-toggle { display: none; background: none; border: 0; color: #fff; min-width: 44px; min-height: 44px; }
@media (max-width: 880px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; padding: .5rem; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--bhoza-black);
    padding: 1rem var(--gutter) 1.5rem;
    border-bottom: 4px solid var(--bhoza-red);
    gap: 0;
  }
  .nav-menu.open li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-menu.open li:last-child { border-bottom: 0; }
  .nav-menu.open a { display: block; padding: .9rem 0; min-height: 44px; }
  .nav-menu.open a.active::after { display: none; }
  .nav-menu.open a.active { color: var(--bhoza-red); }
}

/* ============== Hero (homepage) ============== */
.hero {
  position: relative;
  background: var(--bhoza-black);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0 -10% 0 40%;
  background: var(--bhoza-red);
  transform: skewX(-12deg);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding-block: clamp(2.5rem, 7vw, 6rem);
}
.hero-pack {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 880px) {
  .hero::before { inset: 60% -10% 0 -10%; transform: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .hero-grid > div { display: flex; flex-direction: column; align-items: center; }
  .hero-grid .flex { justify-content: center; }
  .hero-pack { order: 2; }
  .hero-pack img { width: clamp(220px, 60vw, 380px); }
}
@media (max-width: 480px) {
  .hero-pack img { width: clamp(200px, 65vw, 300px); }
}

/* ============== Universal center-on-mobile helpers ============== */
@media (max-width: 800px) {
  /* Any section-level grid-2 layout that stacks should center its content */
  section > .container > .grid-2,
  section > .container > .grid-2 > * { text-align: center; }
  section > .container > .grid-2 .flex { justify-content: center; }

  /* Center any stack of step cards (01 / 02 / 03 type sections) */
  .section .grid-3 > div:not(.product-card):not(.persona-card):not(.combo-card) {
    text-align: center;
  }

  /* Standalone page-hero sections (combos, shop, etc.) center on mobile */
  .page-hero,
  .page-hero > .container { text-align: center; }
  .page-hero .flex { justify-content: center; }
  .page-hero p { margin-inline: auto; }
  .page-hero .sticker { align-self: center; display: inline-block; }
}
.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: var(--fs-hero);
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.01em;
}
.hero-title .red { color: var(--bhoza-red); }
.hero-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 1rem 0 1.5rem;
}
.hero-pack {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-pack img {
  display: block;
  width: clamp(220px, 38vw, 520px);     /* fluid scale, no jumps */
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.45));
  transform: rotate(-4deg);
  transition: transform var(--dur-slow) var(--ease);
}
.hero-pack img:hover { transform: rotate(-1deg) scale(1.03); }

/* ============== Value props strip ============== */
.value-strip {
  background: var(--bhoza-black);
  color: #fff;
  padding-block: 1.5rem;
  border-top: 4px solid var(--bhoza-red);
}
.value-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none; margin: 0; padding: 0;
  text-align: center;
}
.value-list li {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .95rem;
  letter-spacing: .04em;
}
.value-list li::before { content: '✓ '; color: var(--bhoza-red); }
@media (max-width: 700px) {
  .value-list { grid-template-columns: repeat(2,1fr); }
}

/* ============== Product card ============== */
.product-card {
  background: #fff;
  border: 1px solid var(--bhoza-grey-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.product-card .media {
  background: #fff;
  padding: 1.25rem 1rem .5rem;
  display: flex; justify-content: center; align-items: end;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.product-card .media::after {
  /* subtle floor glow to anchor the pack */
  content: '';
  position: absolute;
  bottom: 6%; left: 18%; right: 18%;
  height: 14px;
  background: radial-gradient(ellipse, rgba(0,0,0,.25), transparent 70%);
  filter: blur(4px);
  z-index: 0;
}
.product-card .media img {
  max-height: 100%; object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.28))
          drop-shadow(0 4px 6px rgba(0,0,0,.18));
  transition: transform var(--dur-slow) var(--ease);
  position: relative; z-index: 1;
  border-radius: 4px;
}
.product-card:hover .media img { transform: translateY(-4px) rotate(-1.5deg); }
.product-card .body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em;
  font-size: 1.5rem; margin: 0 0 .25rem;
}
.product-card .sub { color: var(--bhoza-grey-3); font-size: var(--fs-small); margin-bottom: 1rem; }
.product-card .price {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 1.75rem; color: var(--bhoza-black);
  margin-bottom: 1rem;
}
.product-card .price small { font-size: .8rem; color: var(--bhoza-grey-3); margin-left: .35rem; font-weight: 400; }
.product-card .actions { margin-top: auto; display: flex; gap: .5rem; }
.product-card .actions .btn { flex: 1; justify-content: center; }

@media (max-width: 800px) {
  .product-card .body { text-align: center; align-items: center; }
  .product-card .price { width: 100%; }
  .product-card .actions { width: 100%; justify-content: center; }
}

/* Flavour stripes on cards */
.product-card.pork    { border-top: 6px solid var(--flavour-pork); }
.product-card.beef    { border-top: 6px solid var(--flavour-beef); }
.product-card.chicken { border-top: 6px solid var(--flavour-chicken); }

/* ============== Bundles ============== */
.bundle-card {
  background: var(--bhoza-black);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.bundle-card.featured { background: var(--bhoza-red); }
.bundle-card .tag {
  position: absolute; top: 1rem; right: 1rem;
  background: #fff; color: var(--bhoza-black);
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  text-transform: uppercase; font-size: .75rem;
  padding: .25rem .6rem; border-radius: 999px;
}
.bundle-card h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  text-transform: uppercase; font-size: 2rem; margin-bottom: .25rem;
}
.bundle-card .units { opacity: .8; margin-bottom: 1rem; font-size: .95rem; }
.bundle-card .price-row {
  display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1rem;
}
.bundle-card .price-big {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 3rem; line-height: 1;
}
.bundle-card .price-strike { text-decoration: line-through; opacity: .6; font-size: 1.1rem; }
.bundle-card ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.bundle-card li { padding: .35rem 0; font-size: .95rem; }
.bundle-card li::before { content: '★ '; }

/* ============== Stokvel banner ============== */
.stokvel-banner {
  background: var(--bhoza-cream);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stokvel-banner .copy { padding: 3rem; }
.stokvel-banner .visual {
  background: var(--bhoza-red);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15em;
  text-align: center;
  color: #fff;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-transform: uppercase; line-height: 1;
}
.stokvel-banner .visual .price {
  font-size: 1.6em;          /* R33 is the hero number */
  line-height: .95;
}
@media (max-width: 800px) {
  .stokvel-banner { grid-template-columns: 1fr; }
  .stokvel-banner .copy {
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .stokvel-banner .visual {
    padding: 1.25rem 1.5rem;
    font-size: 1.4rem;
    line-height: 1;
    order: -1;                /* price banner first on mobile */
    flex-direction: row;      /* horizontal: From R33 a pack */
    flex-wrap: wrap;
    gap: .35em;
  }
  .stokvel-banner .visual .price { font-size: 1.4em; }
}
@media (max-width: 480px) {
  .stokvel-banner .visual {
    font-size: 1.15rem;
    padding: 1rem;
  }
}

/* ============== Mama Bhoza grid ============== */
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}
.ugc-grid .tile {
  aspect-ratio: 9/16;
  height: 100%;            /* lock to grid row height as belt-and-braces */
  background: var(--bhoza-grey-1);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  display: flex; align-items: end;
  padding: 1rem;
  color: #fff;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  text-transform: uppercase; font-size: .9rem; letter-spacing: .03em;
  background-size: cover;
  background-position: center 25%;   /* keep faces in the upper third */
  background-repeat: no-repeat;
}
.ugc-grid { align-items: stretch; }   /* force all tiles to match tallest row height */
.ugc-grid .tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,.7));
}
.ugc-grid .tile span { position: relative; z-index: 1; }
@media (max-width: 700px) {
  .ugc-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============== Footer ============== */
.site-footer {
  background: var(--bhoza-black);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 4px solid var(--bhoza-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; text-align: center; }
  .footer-grid > div { display: flex; flex-direction: column; align-items: center; }
  .footer-grid .logo { margin-inline: auto; }
  .footer-grid p { margin-inline: auto; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

.footer-grid h4 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em;
  font-size: 1rem; margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: .25rem 0; font-size: .9rem; opacity: .85; }
.footer-grid li a:hover { color: var(--bhoza-red); }
.footer-grid .logo svg .b { fill: #fff; }
.footer-grid .logo {
  width: 240px;
  margin-bottom: 1rem;
  background: #000;
  padding: 13px 19px;
  border-radius: 8px;
  box-sizing: border-box;
}
.footer-grid .logo svg, .footer-grid .logo img { width: 100%; height: auto; display: block; }

/* Payment & courier logo strip - uniform tile sizing */
.footer-payments {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 1.25rem 0 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.footer-payments__label {
  display: block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: .9rem;
}
.footer-payments__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.footer-payments__row img {
  width: 80px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  display: block;
  box-sizing: border-box;
}
@media (max-width: 800px) {
  .footer-payments__row { gap: .5rem; }
  .footer-payments__row img { width: 70px; height: 38px; padding: 5px 8px; }
}
@media (max-width: 380px) {
  .footer-payments__row img { width: 64px; height: 34px; padding: 4px 7px; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .8rem; opacity: .6;
}
@media (max-width: 800px) {
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-payments__row { gap: 1rem 1.4rem; }
  .footer-payments__row img { height: 24px; padding: 4px 8px; }
}

/* ============== Forms ============== */
.input, .select {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--bhoza-grey-1);
  border-radius: var(--r-md);
  font: inherit;
  background: #fff;
  transition: border var(--dur-fast) var(--ease);
}
.input:focus, .select:focus {
  outline: none;
  border-color: var(--bhoza-red);
}
label { display: block; margin-bottom: .35rem; font-weight: 600; font-size: .9rem; }

/* Responsive form: center labels, checkboxes, and submit button on mobile */
@media (max-width: 800px) {
  .responsive-form { text-align: center; }
  .responsive-form label { text-align: center; }
  .responsive-form .input,
  .responsive-form .select { text-align: center; }
  .responsive-form .input::placeholder { text-align: center; }
  .responsive-form > div > div[style*="flex"] { justify-content: center; }
  .responsive-form button[type="submit"] { justify-self: center; min-width: 60%; }
  .responsive-form > div > label[style*="font-weight:400"] { display: inline-flex; align-items: center; gap: .35rem; }
}

/* ============== WhatsApp float ============== */
.wa-float {
  position: fixed;
  right: 1rem; bottom: 1rem;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-2);
  z-index: 60;
  transition: transform var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ============== Cart drawer ============== */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer header {
  background: var(--bhoza-black);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.cart-drawer header h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  text-transform: uppercase; margin: 0;
}
.cart-drawer .items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-line { display: grid; grid-template-columns: 60px 1fr auto; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--bhoza-grey-1); align-items: center; }
.cart-line img { width: 60px; height: auto; }
.cart-line .meta strong { display: block; font-size: .95rem; }
.cart-line .meta small { color: var(--bhoza-grey-3); }
.qty { display: inline-flex; align-items: center; gap: .25rem; }
.qty button { width: 28px; height: 28px; border: 1px solid var(--bhoza-grey-1); background: #fff; border-radius: 4px; }
.qty input { width: 36px; text-align: center; border: 0; font: inherit; }
.cart-drawer .summary {
  border-top: 2px solid var(--bhoza-black);
  padding: 1.25rem 1.5rem;
  background: var(--bhoza-cream);
}
.cart-drawer .summary .row { display: flex; justify-content: space-between; padding: .25rem 0; }
.cart-drawer .summary .total {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 1.5rem; padding-top: .5rem; border-top: 1px dashed var(--bhoza-grey-2); margin-top: .5rem;
}
.cart-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px dashed var(--bhoza-grey-2);
}
.cart-payments img {
  width: 56px;
  height: 30px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--bhoza-grey-1);
  border-radius: 4px;
  padding: 3px 6px;
  display: block;
  box-sizing: border-box;
}

/* Reusable inline payments strip (product page, checkout sections) */
.payments-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
}
.payments-inline .label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--bhoza-grey-3);
  margin-right: .25rem;
  width: 100%;
  margin-bottom: .25rem;
}
.payments-inline img {
  width: 64px;
  height: 34px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--bhoza-grey-1);
  border-radius: 4px;
  padding: 4px 7px;
  display: block;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .payments-inline { justify-content: center; }
  .payments-inline .label { text-align: center; }
}
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 90; opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.cart-overlay.show { opacity: 1; pointer-events: auto; }

/* ============== KASI / GRAFFITI TOOLKIT ============== */

/* Spray-paint splatter background (inline SVG, brand red) */
.splatter-bg {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><g fill='%23E60019' opacity='.18'><circle cx='40' cy='60' r='3'/><circle cx='90' cy='30' r='1.5'/><circle cx='150' cy='80' r='2'/><circle cx='220' cy='40' r='4'/><circle cx='300' cy='110' r='1.5'/><circle cx='350' cy='60' r='2.5'/><circle cx='60' cy='180' r='2'/><circle cx='180' cy='220' r='1.5'/><circle cx='280' cy='260' r='3'/><circle cx='340' cy='320' r='2'/><circle cx='80' cy='340' r='1.5'/><circle cx='150' cy='370' r='2.5'/></g></svg>");
  background-repeat: repeat;
  background-size: 400px 400px;
}

/* Marker / spray underline beneath any inline element */
.marker-underline {
  position: relative;
  display: inline-block;
}
.marker-underline::after {
  content: '';
  position: absolute;
  left: -.1em; right: -.1em;
  bottom: -.05em;
  height: .35em;
  background: var(--bhoza-red);
  z-index: -1;
  transform: skewX(-10deg) rotate(-1deg);
  border-radius: 2px;
  opacity: .9;
}
.marker-underline.thick::after { height: .55em; bottom: -.1em; }

/* Hand-drawn red box around inline */
.spray-box {
  position: relative;
  display: inline-block;
  padding: .1em .3em;
}
.spray-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--bhoza-red);
  border-radius: 6px;
  transform: rotate(-1deg);
  pointer-events: none;
}

/* Sticker badge - slightly rotated, with shadow */
.sticker {
  display: inline-block;
  padding: .35em .7em;
  background: var(--bhoza-red);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .85rem;
  transform: rotate(-3deg);
  box-shadow: 2px 3px 0 var(--bhoza-black);
  border-radius: 4px;
}
.sticker.yellow { background: #F5B400; color: var(--bhoza-black); }
.sticker.black  { background: var(--bhoza-black); color: #fff; box-shadow: 2px 3px 0 var(--bhoza-red); }
.sticker.tilt-r { transform: rotate(3deg); }

/* Distressed paper texture overlay */
.distressed::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='.18'/></svg>");
  mix-blend-mode: multiply;
  opacity: .35;
  z-index: 0;
}

/* "Tape" corners on a card */
.taped { position: relative; }
.taped::before, .taped::after {
  content: '';
  position: absolute;
  width: 60px; height: 18px;
  background: rgba(255, 230, 100, .85);
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.taped::before { top: -8px; left: 14px; transform: rotate(-6deg); }
.taped::after  { top: -8px; right: 14px; transform: rotate(7deg); }

/* Big italic graffiti tag (used in section corners) */
.tag-graffiti {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 7vw, 7rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--bhoza-red);
  letter-spacing: -.02em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: .35;
  white-space: nowrap;
  max-width: 95vw;
  overflow: hidden;
}
@media (max-width: 480px) {
  .tag-graffiti { font-size: 2rem; -webkit-text-stroke-width: 1.5px; }
}

/* Personas grid — 4 / 3 / 3 layout on desktop using a 12-col grid */
.personas-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.personas-grid .persona-card { grid-column: span 3; }                  /* row 1: 4 cards × 3 cols */
.personas-grid .persona-card:nth-child(n+5) { grid-column: span 4; }   /* rows 2 & 3: 3 cards × 4 cols */

@media (max-width: 1100px) {
  .personas-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .personas-grid .persona-card,
  .personas-grid .persona-card:nth-child(n+5) { grid-column: auto; }
}
@media (max-width: 800px)  { .personas-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; } }
@media (max-width: 460px)  { .personas-grid { grid-template-columns: 1fr; } }

/* Persona card styled with kasi flair */
.persona-card {
  position: relative;
  background: var(--bhoza-white);
  border: 3px solid var(--bhoza-black);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 6px 6px 0 var(--bhoza-black);
}
.persona-card:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--bhoza-red); }
.persona-card .photo {
  aspect-ratio: 4/5;
  background: var(--bhoza-grey-1);
  background-size: cover;
  background-position: center 25%;
  position: relative;
  border-bottom: 3px solid var(--bhoza-black);
}
.persona-card .photo .badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--bhoza-red);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .05em;
  padding: .3em .6em;
  border-radius: 4px;
  transform: rotate(4deg);
  box-shadow: 2px 2px 0 var(--bhoza-black);
}
@media (max-width: 460px) {
  .persona-card .photo .badge { font-size: .85rem; }
}
.persona-card .body { padding: 1rem 1.25rem 1.25rem; }
.persona-card h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin: 0 0 .15rem;
  letter-spacing: -.01em;
}
.persona-card .role {
  font-size: .8rem;
  color: var(--bhoza-grey-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: .5rem;
}
.persona-card .quote {
  font-size: .92rem;
  line-height: 1.45;
  color: var(--bhoza-ink);
  font-style: italic;
}
.persona-card .quote::before { content: '" '; color: var(--bhoza-red); font-weight: 900; }
.persona-card .quote::after  { content: ' "'; color: var(--bhoza-red); font-weight: 900; }
@media (max-width: 480px) {
  .persona-card .body { padding: .9rem 1rem 1rem; }
  .persona-card h4 { font-size: 1.2rem; }
  .persona-card .quote { font-size: .85rem; }
  .persona-card { box-shadow: 4px 4px 0 var(--bhoza-black); }
  .persona-card:hover { box-shadow: 6px 6px 0 var(--bhoza-red); }
}

/* ============== Utilities ============== */
.hide { display: none !important; }
.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip: rect(0,0,0,0); border:0; }
.divider-red { border: 0; border-top: 4px solid var(--bhoza-red); margin: 0; }
