/* ============================================================================
   Kankou Elegance — store layer (editorial layout, ORIGINAL warm colorway)
   Reigning-Champ structure kept; re-skinned to the Kankou mud / paper / kente
   palette + patterns so the store pages match the rest of the site.
   Scoped with rc- prefix; sits on top of styles.css (which supplies the warm
   mud gradient, adinkra texture, kente runners, and --accent* page palettes).
   ========================================================================== */
:root {
  /* Warm cream "paper" — used for chips, quick-add, PDP cards (dark text on it) */
  --rc-paper:       #f4e2bf;
  --rc-paper-deep:  #e8cf9b;
  --rc-paper-ink:   #1d120b;

  /* Text on the warm-dark canvas */
  --rc-ink:         #f4e2bf;            /* primary text reads cream on mud */
  --rc-ink-soft:    #cdb487;            /* muted cream for meta / labels */
  --rc-line:        rgba(244,226,191,0.16);
  --rc-line-strong: rgba(244,226,191,0.30);

  /* Surfaces */
  --rc-canvas:      transparent;        /* defer to styles.css warm mud gradient */
  --rc-panel:       #1c1208;            /* warm solid panel (cart, editorial copy) */
  --rc-card-bg:     #241608;            /* image placeholder while loading */

  /* Kankou accents (mirror styles.css --accent set) */
  --rc-gold:        #e7a92d;
  --rc-terra:       #d75a1d;
  --rc-blue:        #144ca1;
  --rc-green:       #0f6a35;
  --rc-sale:        #c0341d;

  /* Signature 4-colour kente stripe — the site's core pattern motif */
  --rc-kente: linear-gradient(90deg,
    var(--rc-terra) 0 25%, var(--rc-gold) 25% 50%,
    var(--rc-blue) 50% 75%, var(--rc-green) 75% 100%);
}

/* ── Product grid ──────────────────────────────────────────────────────────── */
.rc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2.5rem 1.5rem;
}
@media (max-width: 600px) { .rc-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0.75rem; } }

.rc-card { position: relative; }
.rc-card__media {
  position: relative; display: block; aspect-ratio: 3/4; overflow: hidden;
  background: var(--rc-card-bg); border-radius: 2px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.30);
}
/* kente hairline crowns each product image — subtle until hover */
.rc-card__media::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px; z-index: 3;
  background: var(--rc-kente); opacity: 0; transition: opacity .35s ease;
}
.rc-card__media:hover::after { opacity: .92; }
.rc-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: opacity .5s ease, transform .9s ease;
}
.rc-card__img--hover { opacity: 0; }
.rc-card__media:hover .rc-card__img--hover { opacity: 1; }
.rc-card__media:hover .rc-card__img:not(.rc-card__img--hover) { opacity: 0; }
.rc-card__media:hover .rc-card__img { transform: scale(1.03); }

.rc-tag {
  position: absolute; top: .65rem; left: .65rem; z-index: 4;
  font-family: 'Outfit', sans-serif; font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  padding: .28rem .6rem; background: var(--rc-paper); color: var(--rc-paper-ink); border-radius: 1px;
}
.rc-tag--sale { background: var(--rc-sale); color: #fff; }
.rc-tag--out { background: rgba(244,226,191,.22); color: var(--rc-paper); }

.rc-card__body { padding-top: .85rem; text-align: left; }
.rc-card__title {
  display: block; font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 500;
  color: var(--rc-ink); text-decoration: none; line-height: 1.3; margin-bottom: .3rem;
  transition: color .15s;
}
.rc-card__title:hover { color: var(--rc-gold); text-decoration: underline; text-underline-offset: 2px; }
.rc-price { font-family: 'Outfit', sans-serif; font-size: .85rem; color: var(--rc-ink-soft); }
.rc-price__now { color: var(--rc-gold); font-weight: 600; margin-right: .45rem; }
.rc-price__was { text-decoration: line-through; opacity: .6; }

.rc-card__body .rc-btn--add {
  margin-top: .7rem; width: 100%; opacity: 0; transform: translateY(4px);
  transition: opacity .2s, transform .2s;
}
.rc-card:hover .rc-btn--add { opacity: 1; transform: none; }
@media (hover: none) { .rc-card__body .rc-btn--add { opacity: 1; transform: none; } }

/* ── Quick-add picker ──────────────────────────────────────────────────────── */
.rc-quickpick { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; margin-top: .7rem; }
.rc-quickpick__label { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; color: var(--rc-ink-soft); width: 100%; }
.rc-size {
  min-width: 2.1rem; padding: .35rem .5rem; font-family: 'Outfit', sans-serif; font-size: .78rem;
  background: rgba(244,226,191,.06); border: 1px solid var(--rc-line); border-radius: 2px; cursor: pointer; color: var(--rc-ink);
  transition: border-color .15s, background .15s, color .15s;
}
.rc-size:hover { border-color: var(--rc-gold); }
.rc-size.is-selected { background: var(--rc-gold); color: var(--rc-paper-ink); border-color: var(--rc-gold); }
.rc-size--out { opacity: .35; text-decoration: line-through; cursor: not-allowed; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.rc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: 'Outfit', sans-serif; font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; text-decoration: none;
  padding: .8rem 1.6rem; border-radius: 2px; border: 1px solid transparent; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
/* Primary CTA = terracotta, warms to gold on hover (brand-forward) */
.rc-btn--dark { background: var(--rc-terra); color: #fff; }
.rc-btn--dark:hover { background: var(--rc-gold); color: var(--rc-paper-ink); }
.rc-btn--ghost { background: transparent; color: var(--rc-ink); border-color: var(--rc-line-strong); }
.rc-btn--ghost:hover { background: var(--rc-paper); color: var(--rc-paper-ink); border-color: var(--rc-paper); }
.rc-btn--add { background: var(--rc-paper); color: var(--rc-paper-ink); border-color: transparent; }
.rc-btn--add:hover { background: var(--rc-gold); }
.rc-btn--light { background: var(--rc-paper); color: var(--rc-paper-ink); }
.rc-btn--light:hover { background: var(--rc-gold); color: var(--rc-paper-ink); }
.rc-btn[disabled] { opacity: .4; cursor: not-allowed; }

.rc-empty, .rc-pdp-missing { padding: 3rem 0; text-align: center; color: var(--rc-ink-soft); font-family: 'Outfit', sans-serif; }
.rc-pdp-missing h1 { color: var(--rc-ink); font-family: 'DM Serif Display', serif; }

/* ── Reveal ────────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Cart icon ─────────────────────────────────────────────────────────────── */
.rc-cart-btn { position: relative; background: none; border: 0; cursor: pointer; color: inherit; padding: .35rem; display: inline-flex; }
.rc-cart-badge {
  position: absolute; top: -.2rem; right: -.3rem; min-width: 1.05rem; height: 1.05rem;
  background: var(--rc-gold); color: var(--rc-paper-ink); border-radius: 999px; font-size: .62rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; padding: 0 .25rem; font-family: 'Outfit', sans-serif;
}

/* ── Cart drawer ───────────────────────────────────────────────────────────── */
.rc-cart-overlay { position: fixed; inset: 0; background: rgba(11,7,5,.6); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 1000; }
.rc-cart-overlay--on { opacity: 1; visibility: visible; }
.rc-cart {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--rc-panel); color: var(--rc-ink);
  z-index: 1001; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column;
  box-shadow: -10px 0 50px -18px rgba(0,0,0,.7);
}
.rc-cart--open { transform: none; }
/* kente crown on the drawer */
.rc-cart::before { content: ''; display: block; height: 5px; background: var(--rc-kente); }
.rc-cart__head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--rc-line); font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--rc-ink); }
.rc-cart__close { background: none; border: 0; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--rc-ink); }
.rc-cart__lines { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.rc-cart__empty { text-align: center; padding: 3rem 1rem; color: var(--rc-ink-soft); }
.rc-cart__empty .rc-btn { margin-top: 1rem; }

.rc-line { display: grid; grid-template-columns: 64px 1fr auto; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--rc-line); }
.rc-line__img { width: 64px; height: 84px; object-fit: cover; border-radius: 2px; background: var(--rc-card-bg); }
.rc-line__name { font-family: 'Outfit', sans-serif; font-size: .85rem; color: var(--rc-ink); text-decoration: none; display: block; }
.rc-line__name:hover { color: var(--rc-gold); }
.rc-line__size { font-size: .72rem; color: var(--rc-ink-soft); display: block; margin: .15rem 0 .5rem; }
.rc-line__qty { display: inline-flex; align-items: center; gap: .6rem; border: 1px solid var(--rc-line); border-radius: 2px; padding: .15rem .5rem; }
.rc-line__qty button { background: none; border: 0; font-size: 1rem; cursor: pointer; color: var(--rc-ink); line-height: 1; }
.rc-line__qty span { font-family: 'Outfit', sans-serif; font-size: .8rem; min-width: 1rem; text-align: center; color: var(--rc-ink); }
.rc-line__right { text-align: right; font-family: 'Outfit', sans-serif; font-size: .85rem; color: var(--rc-ink); }
.rc-line__remove { display: block; margin-top: .6rem; background: none; border: 0; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--rc-ink-soft); cursor: pointer; text-decoration: underline; }
.rc-line__remove:hover { color: var(--rc-terra); }

.rc-cart__foot { padding: 1.2rem 1.5rem 1.6rem; border-top: 1px solid var(--rc-line); }
.rc-cart__total { display: flex; justify-content: space-between; font-family: 'Outfit', sans-serif; margin-bottom: 1rem; font-size: .95rem; color: var(--rc-ink); }
.rc-cart__checkout { width: 100%; }
.rc-cart__note { font-size: .68rem; color: var(--rc-ink-soft); text-align: center; margin-top: .7rem; font-family: 'Outfit', sans-serif; }

/* ── Product detail page ───────────────────────────────────────────────────── */
.rc-pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: start; }
@media (max-width: 860px) { .rc-pdp { grid-template-columns: 1fr; gap: 2rem; } }
.rc-pdp__main { aspect-ratio: 3/4; background: var(--rc-card-bg); border-radius: 3px; overflow: hidden; box-shadow: 0 24px 48px rgba(0,0,0,0.34); }
.rc-pdp__main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.rc-pdp__thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.rc-pdp__thumb { width: 64px; height: 80px; padding: 0; border: 1px solid var(--rc-line); background: var(--rc-card-bg); border-radius: 2px; overflow: hidden; cursor: pointer; }
.rc-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.rc-pdp__thumb.is-active { border-color: var(--rc-gold); }

.rc-pdp__info { position: sticky; top: 2rem; }
.rc-pdp__crumbs { font-family: 'Outfit', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--rc-ink-soft); margin-bottom: 1rem; }
.rc-pdp__crumbs a { color: var(--rc-ink-soft); text-decoration: none; }
.rc-pdp__crumbs a:hover { color: var(--rc-gold); }
/* kente bar above the product title (echoes .product-summary::before) */
.rc-pdp__title { position: relative; font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.08; margin: 0 0 .8rem; padding-top: 1rem; color: var(--rc-ink); }
.rc-pdp__title::before { content: ''; position: absolute; top: 0; left: 0; width: 64px; height: 5px; background: var(--rc-kente); }
.rc-pdp__price { font-family: 'Outfit', sans-serif; font-size: 1.15rem; margin-bottom: 1.6rem; color: var(--rc-ink); }
.rc-pdp__sizes-label, .rc-pdp__sizes .rc-pdp__sizeguide { font-family: 'Outfit', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--rc-ink-soft); }
.rc-pdp__size-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin: .6rem 0 .5rem; }
.rc-pdp__size-grid .rc-size { min-width: 2.6rem; padding: .55rem .7rem; }
.rc-pdp__sizeguide { display: inline-block; margin-bottom: 1.4rem; text-decoration: underline; }
.rc-pdp__sizeguide:hover { color: var(--rc-gold); }
.rc-pdp__atc { width: 100%; margin-bottom: 1rem; }
.rc-pdp__ship { font-family: 'Outfit', sans-serif; font-size: .78rem; color: var(--rc-ink-soft); margin-bottom: 1.5rem; }
.rc-pdp__desc { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; line-height: 1.6; color: var(--rc-ink); border-top: 1px solid var(--rc-line); padding-top: 1.2rem; }
.rc-pdp__desc p { margin: 0 0 .8rem; }
.rc-pdp__related { margin-top: 5rem; }
.rc-pdp__related h2 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 1.6rem; color: var(--rc-ink); }

/* ── Editorial blocks (homepage / shop) — RC structure, Kankou colourway ───── */
.rc-hero { position: relative; min-height: 86vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--rc-card-bg); }
.rc-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Collage hero — a mosaic of braids + clothes (mud shows through the seams) */
.rc-hero__collage {
  position: absolute; inset: 0; z-index: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr);
  gap: 3px; background: var(--mud, #120904);
}
.rc-hero__collage img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
@media (max-width: 760px) { .rc-hero__collage { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); } }
/* ═══════════════════════════════════════════════════════════════════════════
   Shop hero — world-class bento-mosaic (asymmetric grid, feature tile,
   edge-to-edge cover imagery, depth, hover zoom + kente reveal, editorial copy)
═══════════════════════════════════════════════════════════════════════════ */
.rc-shop-hero { position: relative; min-height: max(560px, calc(100vh - 12rem)); overflow: hidden; background: var(--mud, #120904); }
.rc-shop-mosaic {
  position: absolute; inset: 0; z-index: 1;
  display: grid; gap: 8px; padding: 8px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-template-areas:
    "t2 t3 t4 t1 t1"
    "t5 t6 t7 t1 t1"
    "t8 t9 t10 t11 t12";
}
.rc-mtile {
  position: relative; overflow: hidden; border-radius: 6px; display: block; text-decoration: none;
  background: var(--rc-card-bg); box-shadow: 0 16px 34px -18px rgba(0,0,0,.7);
}
.rc-mtile img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; transition: transform 1s cubic-bezier(.2,.7,.2,1); display: block; }
.rc-mtile:hover img { transform: scale(1.07); }
.rc-mtile::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px; z-index: 3; background: var(--rc-kente); opacity: 0; transition: opacity .3s; }
.rc-mtile:hover::after { opacity: .92; }
.rc-mtile__label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.5rem .85rem .7rem; font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 500;
  letter-spacing: .03em; color: #fff; background: linear-gradient(to top, rgba(11,7,5,.9), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity .28s ease, transform .28s ease;
}
.rc-mtile:hover .rc-mtile__label { opacity: 1; transform: none; }
/* staggered load cascade — CSS only, always ends visible (no JS dependency) */
.rc-mtile { animation: rc-mtile-in .7s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(var(--i, 0) * 55ms); }
@keyframes rc-mtile-in { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .rc-mtile { animation: none; } }

.rc-shop-hero__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to top, rgba(11,7,5,.94) 3%, rgba(11,7,5,.36) 26%, transparent 50%),
    linear-gradient(to right, rgba(11,7,5,.82) 0%, rgba(11,7,5,.16) 40%, transparent 58%);
}
.rc-shop-hero__copy { position: absolute; left: 0; bottom: 0; z-index: 3; max-width: 640px; padding: 0 clamp(1.5rem, 6vw, 6rem) clamp(2rem, 7vh, 5rem); }
.rc-shop-hero__eyebrow { font-family: 'Outfit', sans-serif; font-size: .74rem; text-transform: uppercase; letter-spacing: .24em; color: var(--rc-gold); }
.rc-shop-hero__title { font-family: 'DM Serif Display', serif; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.0; color: #fff; margin: .7rem 0 1rem; }
.rc-shop-hero__sub { font-family: 'Outfit', sans-serif; font-size: 1rem; color: rgba(255,255,255,.9); max-width: 460px; margin-bottom: 1.8rem; line-height: 1.6; }
.rc-shop-hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.rc-shop-hero__ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.rc-shop-hero__ghost:hover { background: var(--rc-paper); color: var(--rc-paper-ink); border-color: var(--rc-paper); }

@media (max-width: 760px) {
  .rc-shop-hero { min-height: 0; display: flex; flex-direction: column; }
  .rc-shop-mosaic {
    position: static; padding: 0 0 8px; gap: 6px;
    grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 1fr; grid-template-areas: none;
  }
  .rc-mtile { grid-area: auto !important; aspect-ratio: 3 / 4; }
  .rc-mtile:nth-child(1) { grid-column: 1 / -1 !important; aspect-ratio: 16 / 11; }
  .rc-mtile__label { opacity: 1; transform: none; font-size: .62rem; padding: 1rem .7rem .55rem; }
  .rc-shop-hero__scrim { display: none; }
  .rc-shop-hero__copy { position: static; order: -1; max-width: none; padding: 2.4rem 1.4rem 1.6rem; text-align: center; }
  .rc-shop-hero__title { color: var(--rc-ink); font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .rc-shop-hero__sub { color: var(--rc-ink-soft); margin-left: auto; margin-right: auto; }
  .rc-shop-hero__cta { justify-content: center; }
  .rc-shop-hero__ghost { color: var(--rc-ink); border-color: var(--rc-line-strong); }
}
/* stronger scrim over the busier collage so cream copy stays legible */
.rc-hero--collage .rc-hero__scrim { background:
  linear-gradient(90deg, rgba(15,8,4,.86) 0%, rgba(15,8,4,.50) 48%, rgba(15,8,4,.22) 100%),
  linear-gradient(0deg, rgba(15,8,4,.72) 0%, transparent 50%); }
/* warm mud scrim so cream copy stays legible */
.rc-hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(15,8,4,.72) 0%, rgba(15,8,4,.30) 52%, rgba(15,8,4,.05) 100%),
  linear-gradient(0deg, rgba(15,8,4,.55) 0%, transparent 42%); }
.rc-hero__copy { position: relative; z-index: 2; padding: 0 7vw 7vh; max-width: 640px; color: var(--rc-paper); }
.rc-hero__eyebrow { font-family: 'Outfit', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: var(--rc-gold); }
.rc-hero__title { font-family: 'DM Serif Display', serif; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02; margin: .8rem 0 1rem; }
.rc-hero__sub { font-family: 'Outfit', sans-serif; font-size: 1rem; max-width: 440px; opacity: .92; margin-bottom: 1.8rem; }

.rc-section { padding: 5rem 0; }
.rc-section__head { text-align: center; margin-bottom: 2.6rem; }
.rc-section__eyebrow { font-family: 'Outfit', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: var(--rc-gold); }
.rc-section__title { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--rc-ink); margin: .5rem 0 0; }
/* kente underline under each section heading */
.rc-section__head::after { content: ''; display: block; width: 72px; height: 4px; margin: 1rem auto 0; background: var(--rc-kente); border-radius: 2px; }
.rc-section__link { display: block; text-align: center; margin-top: 2.4rem; }

/* Category tiles (Reigning Champ "Shop by Category") */
.rc-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 760px) { .rc-cats { grid-template-columns: repeat(2, 1fr); } }
.rc-cat { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; text-decoration: none; background: var(--rc-card-bg); box-shadow: 0 16px 34px rgba(0,0,0,0.30); }
.rc-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.rc-cat:hover img { transform: scale(1.05); }
.rc-cat__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.2rem 1rem; color: var(--rc-paper); font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; font-weight: 600; background: linear-gradient(to top, rgba(11,7,5,.82), transparent); }
/* kente reveal along the bottom of each tile on hover */
.rc-cat::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 3; background: var(--rc-kente); transform: scaleX(0); transform-origin: left; transition: transform .45s ease; }
.rc-cat:hover::after { transform: scaleX(1); }

/* Full-bleed editorial split — copy panel becomes a warm Kankou panel */
.rc-editorial { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
@media (max-width: 760px) { .rc-editorial { grid-template-columns: 1fr; } }
.rc-editorial--reverse .rc-editorial__media { order: 2; }
.rc-editorial__media { min-height: 420px; background: var(--rc-card-bg); }
.rc-editorial__media img { width: 100%; height: 100%; object-fit: cover; }
.rc-editorial__copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 4rem clamp(1.5rem, 5vw, 5rem); background: var(--rc-panel); color: var(--rc-ink); }
/* kente seam down the inner edge of the copy panel */
.rc-editorial__copy::before { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 5px; background: var(--rc-kente); }
.rc-editorial--reverse .rc-editorial__copy::before { left: auto; right: 0; }
.rc-editorial__copy h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--rc-ink); margin: .4rem 0 1rem; line-height: 1.1; }
.rc-editorial__copy p { font-family: 'Outfit', sans-serif; color: var(--rc-ink-soft); line-height: 1.7; max-width: 460px; margin-bottom: 1.6rem; }

/* ============================================================================
   Store-page theme hook (body.rc-page).
   We DO NOT strip the base warm theme any more — we let styles.css paint the
   mud gradient, adinkra texture overlay, and full kente runners, then tune the
   header/footer accents to the store layout.
   ========================================================================== */
body.rc-page main { background: transparent; }

/* terracotta "Shop" pill in the header */
body.rc-page .header-cta {
  background: var(--rc-terra); color: #fff; border: 0; padding: .65rem 1.4rem; border-radius: 2px;
  font-family: 'Outfit', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; text-decoration: none;
}
body.rc-page .header-cta:hover { background: var(--rc-gold); color: var(--rc-paper-ink); }
body.rc-page .site-nav a:hover, body.rc-page .site-nav a[aria-current="page"] { color: var(--rc-gold); }
body.rc-page .rc-cart-btn { color: var(--rc-paper); }
body.rc-page .nav-toggle__bar { background: var(--rc-paper); }
body.rc-page .bg-toggle { display: none !important; }   /* animate toggle stays off (#16) */

/* ── Floating (sticky) top bar — keeps social + nav + cart reachable ───────── */
.site-topbar {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--mud) 90%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px -20px rgba(0,0,0,.75);
}
.site-topbar::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--rc-kente); opacity: .55; }

/* ── Top social links (in the announcement bar, every page) ────────────────── */
.announcement-bar .shell { justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.top-social { display: inline-flex; align-items: center; gap: 13px; }
.top-social a { display: inline-flex; color: inherit; opacity: .8; transition: opacity .15s, color .15s, transform .15s; }
.top-social a:hover { opacity: 1; color: var(--rc-gold); transform: translateY(-1px); }
.top-social svg { width: 15px; height: 15px; display: block; }
@media (max-width: 560px) {
  .announcement-bar .shell { justify-content: center; row-gap: 6px; }
  .top-social { width: 100%; justify-content: center; }
}

/* ── Phone "Call" buttons — number rendered as a subheading inside the button ─ */
.call-btn { flex-direction: column; line-height: 1.18; gap: 2px; }
.call-btn .call-btn__label { display: block; }
.call-btn .call-btn__num { display: block; font-size: .74em; font-weight: 600; letter-spacing: .03em; opacity: .82; }

/* ── Founder portrait (Korka) in the "Our story" editorial panel ───────────── */
.rc-editorial__media--founder {
  display: flex; align-items: center; justify-content: center;
  background: var(--rc-panel); padding: 2.5rem 1.5rem;
}
.founder-portrait { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; text-align: center; }
.founder-portrait img {
  width: 220px; height: 220px; border-radius: 50%; object-fit: cover; object-position: center top;
  border: 3px solid var(--rc-gold); box-shadow: 0 18px 42px rgba(0,0,0,0.45);
}
.founder-portrait figcaption { display: flex; flex-direction: column; gap: .25rem; }
.founder-portrait__name { font-family: 'DM Serif Display', serif; font-size: 1.35rem; color: var(--rc-ink); }
.founder-portrait__role { font-family: 'Outfit', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--rc-ink-soft); }
@media (max-width: 760px) { .rc-editorial__media--founder { min-height: 0; padding: 3rem 1.5rem; } }
