/*
Theme Name: LIS Collectibles
Theme URI: https://lis.ng
Author: LIS Collectibles Fashion
Description: Mobile-first SEO-optimized WooCommerce theme for LIS Collectibles Fashion Nigeria.
Version: 4.0.0
Requires at least: 6.0
Requires PHP: 7.4
WC requires at least: 7.0
License: GNU General Public License v2 or later
Text Domain: lis
*/

/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
  --red:    #C8102E;
  --red-dk: #9B0D22;
  --gold:   #D4AF37;
  --dark:   #111111;
  --mid:    #444444;
  --muted:  #888888;
  --light:  #F8F5F1;
  --border: #E5E0D8;
  --white:  #FFFFFF;
  --radius: 6px;
  --trans:  0.2s ease;
  --max:    1200px;
  --gap:    clamp(1rem, 4vw, 2rem);
  --fd:     'Cormorant Garamond', Georgia, serif;
  --fb:     'DM Sans', system-ui, -apple-system, sans-serif;
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--fb); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--fd); font-weight: 500; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { color: var(--mid); line-height: 1.7; }

.eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red); display: block;
}

/* =====================================================
   LAYOUT
   ===================================================== */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gap); }
.section { padding-block: 4rem; }
.section-light { background: var(--light); }
.section-dark  { background: var(--dark); }
.section-head  { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { margin: .4rem 0 .75rem; }
.section-head p  { max-width: 520px; margin-inline: auto; color: var(--muted); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 2rem; border-radius: var(--radius);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: var(--trans); cursor: pointer; border: 2px solid transparent;
  font-family: var(--fb); white-space: nowrap;
}
.btn-red   { background: var(--red);   color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dk); border-color: var(--red-dk); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-ghost:hover { background: #fff; color: var(--dark); }
.btn-gold  { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { filter: brightness(1.08); }
.btn-wa    { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1da851; }
.btn-lg { padding: .95rem 2.5rem; font-size: .82rem; }
.btn-full { width: 100%; }

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.ann-bar {
  background: var(--dark); color: rgba(255,255,255,.88);
  text-align: center; padding: .55rem var(--gap);
  font-size: .78rem; font-weight: 500; letter-spacing: .04em;
  position: relative;
}
.ann-bar a { color: var(--gold); text-decoration: underline; }
.ann-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.4); font-size: 1.2rem; line-height: 1;
  cursor: pointer; padding: .2rem .4rem;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.header-inner {
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gap);
  height: 66px; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.5rem;
}

/* Logo */
.site-logo img { height: 42px; width: auto; display: block; }
.site-logo-text {
  font-family: var(--fd); font-size: 1.5rem; font-weight: 600; color: var(--dark);
}
.site-logo-text span { color: var(--red); }

/* Primary nav */
.primary-nav { display: flex; justify-content: center; }
.primary-nav ul { display: flex; gap: 2rem; align-items: center; }
.primary-nav a {
  font-size: .77rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); transition: color var(--trans); position: relative; padding-bottom: 3px;
}
.primary-nav a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 2px; background: var(--red); transition: width var(--trans);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--dark); }
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { width: 100%; }

/* Header icons */
.header-actions { display: flex; align-items: center; gap: 1rem; justify-content: flex-end; }
.h-icon {
  color: var(--dark); display: flex; align-items: center;
  position: relative; transition: color var(--trans); padding: .2rem;
}
.h-icon:hover { color: var(--red); }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--red); color: #fff; font-size: .58rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .3rem; }
.hamburger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--trans); }
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 15px; }
.hamburger span:nth-child(3) { width: 19px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 20px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 20px; }

/* Mobile drawer */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: var(--white); padding: 5rem var(--gap) 2rem;
  overflow-y: auto; transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  font-family: var(--fd); font-size: 1.85rem; font-weight: 500;
  color: var(--dark); display: block; padding: .75rem 0;
  border-bottom: 1px solid var(--border); transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-footer { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .hamburger   { display: flex; }
  .mobile-nav  { display: block; }
}

/* =====================================================
   SEARCH OVERLAY
   ===================================================== */
.search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(255,255,255,.96);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 15vh; opacity: 0; pointer-events: none;
  transition: opacity var(--trans);
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box { width: 90%; max-width: 600px; text-align: center; }
.search-box label {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 1rem;
}
.search-box input[type=search] {
  width: 100%; border: none; border-bottom: 2px solid var(--dark);
  background: transparent; font-family: var(--fd);
  font-size: clamp(1.5rem, 4vw, 2.5rem); text-align: center;
  padding: .75rem 0; outline: none; color: var(--dark);
}
.search-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.6rem; cursor: pointer; color: var(--muted);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: clamp(520px, 85vh, 820px);
  background: #1a0d06 center / cover no-repeat;
  display: flex; align-items: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,4,2,.88) 0%, rgba(10,4,2,.55) 55%, rgba(10,4,2,.15) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max); margin-inline: auto;
  padding: 4rem var(--gap); width: 100%;
}
.hero-inner { max-width: 580px; }
.hero-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
}
.hero-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; margin-bottom: 1rem; }
.hero-sub { color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; max-width: 420px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 540px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar { background: var(--dark); padding: 1rem var(--gap); }
.trust-inner {
  max-width: var(--max); margin-inline: auto;
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.82); font-size: .78rem; font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* =====================================================
   CATEGORY TILES
   ===================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cat-tile {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--radius); display: block; background: var(--border);
  background-size: cover; background-position: center;
  transition: transform .4s ease;
}
.cat-tile:hover { transform: scale(1.02); }
.cat-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
}
.cat-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 1; padding: 1.25rem;
}
.cat-name { color: #fff; font-family: var(--fd); font-size: 1.1rem; display: block; margin-bottom: .2rem; }
.cat-count { font-size: .68rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

@media (max-width: 860px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cat-grid { gap: .6rem; } }

/* =====================================================
   PRODUCT GRID & CARDS
   ===================================================== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.prod-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; transition: transform var(--trans), box-shadow var(--trans);
}
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.prod-img-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden; background: var(--light);
}
.prod-img {
  display: block; width: 100%; height: 100%;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s; display: block; }
.prod-img .img-hover {
  position: absolute; inset: 0; opacity: 0; transition: opacity .35s;
  object-fit: cover; width: 100%; height: 100%;
}
.prod-card:hover .img-hover { opacity: 1; }
.prod-card:hover .img-main  { opacity: 0; }
.prod-badge {
  position: absolute; top: .6rem; left: .6rem;
  background: var(--red); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 3px; z-index: 1;
}
.prod-badge.sale { background: var(--gold); color: var(--dark); }
.prod-atc {
  position: absolute; bottom: 0; left: 0; right: 0;
  transform: translateY(100%); transition: transform var(--trans); z-index: 2;
}
.prod-atc a {
  display: block; width: 100%; background: var(--red); color: #fff;
  text-align: center; padding: .7rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: background var(--trans);
}
.prod-atc a:hover { background: var(--red-dk); }
.prod-card:hover .prod-atc { transform: translateY(0); }
.prod-body { padding: .85rem; }
.prod-cat  { font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.prod-name { font-family: var(--fd); font-size: .95rem; line-height: 1.3; margin-bottom: .35rem; }
.prod-name a { color: var(--dark); transition: color var(--trans); }
.prod-name a:hover { color: var(--red); }
.prod-price { font-size: .95rem; font-weight: 700; color: var(--dark); }
.prod-price del { color: var(--muted); font-weight: 400; font-size: .82rem; margin-right: .25rem; }

@media (max-width: 900px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px)  { .product-grid { gap: .6rem; } .prod-body { padding: .65rem; } }

/* =====================================================
   PROMO BANNER
   ===================================================== */
.promo-banner {
  min-height: 420px; display: flex; align-items: center;
  background: #1a0d06 center / cover no-repeat;
  position: relative;
}
.promo-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,4,2,.92) 0%, rgba(10,4,2,.65) 55%, transparent 100%);
}
.promo-content {
  position: relative; z-index: 1;
  max-width: var(--max); margin-inline: auto;
  padding: 3rem var(--gap); width: 100%;
}
.promo-content h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 3rem); margin-bottom: .75rem; }
.promo-content p  { color: rgba(255,255,255,.75); max-width: 380px; margin-bottom: 1.75rem; }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter { background: var(--light); padding: 4.5rem var(--gap); text-align: center; }
.nl-inner { max-width: 520px; margin-inline: auto; }
.nl-inner h2 { margin: .4rem 0 .75rem; }
.nl-inner p  { color: var(--muted); margin-bottom: 1.75rem; }
.nl-form { display: flex; gap: .5rem; max-width: 420px; margin-inline: auto; }
.nl-input {
  flex: 1; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; background: var(--white); color: var(--dark);
  outline: none; transition: border-color var(--trans);
}
.nl-input:focus { border-color: var(--red); }
.nl-input::placeholder { color: var(--muted); }
.nl-msg { margin-top: .75rem; font-size: .85rem; min-height: 1.2em; }
@media (max-width: 480px) { .nl-form { flex-direction: column; } .nl-form .btn { width: 100%; } }

/* =====================================================
   INSTAGRAM STRIP
   ===================================================== */
.insta-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px; }
.insta-item  { aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.insta-item div { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .4s ease; }
.insta-item:hover div { transform: scale(1.08); }
@media (max-width: 600px) { .insta-strip { grid-template-columns: repeat(3, 1fr); } }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding-top: 4rem; }
.footer-grid {
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gap);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .8; margin-bottom: 1rem; }
.footer-about p  { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.5); margin-top: .5rem; }
.footer-social   { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: var(--trans);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 {
  font-family: var(--fb); font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a  { font-size: .875rem; color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: var(--max); margin-inline: auto; padding: 1.25rem var(--gap);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: .76rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--trans); }
.footer-bottom a:hover { color: #fff; }
.pay-icons { display: flex; gap: .5rem; }
.pay-icons span {
  background: rgba(255,255,255,.08); border-radius: 3px;
  padding: 3px 8px; font-size: .62rem; font-weight: 700;
  color: rgba(255,255,255,.4); letter-spacing: .05em;
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* =====================================================
   MOBILE BOTTOM NAV
   ===================================================== */
.bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.06); padding: .4rem 0;
}
.bottom-nav-inner { display: flex; justify-content: space-around; }
.bn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: .6rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); padding: .35rem 1rem; position: relative;
  transition: color var(--trans); background: none; border: none; font-family: var(--fb); cursor: pointer;
}
.bn-item.active, .bn-item:hover { color: var(--red); }
.bn-badge {
  position: absolute; top: 0; right: calc(50% - 18px);
  background: var(--red); color: #fff; font-size: .52rem; font-weight: 700;
  width: 13px; height: 13px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) { .bottom-nav { display: block; } body { padding-bottom: 62px; } }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  background: var(--dark); padding: 3.5rem var(--gap);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://lis.ng/wp-content/uploads/2022/07/LIS-Collectibles-Online-shop-for-womens-clothes.png') center/cover;
  opacity: .1;
}
.page-hero-inner { position: relative; z-index: 1; max-width: var(--max); margin-inline: auto; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: .5rem; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.75rem); margin: .25rem 0 .75rem; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 520px; font-size: .95rem; }

/* =====================================================
   SHOP LAYOUT
   ===================================================== */
.shop-wrap { display: grid; grid-template-columns: 210px 1fr; gap: 2.5rem; align-items: start; }
.shop-sidebar { position: sticky; top: 80px; }
.sidebar-sec { margin-bottom: 2rem; }
.sidebar-sec h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dark); padding-bottom: .6rem; border-bottom: 2px solid var(--border); margin-bottom: 1rem;
}
.sidebar-sec ul { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-sec a  { font-size: .875rem; color: var(--mid); transition: color var(--trans); }
.sidebar-sec a:hover, .sidebar-sec a.active { color: var(--red); font-weight: 600; }
@media (max-width: 860px) { .shop-wrap { grid-template-columns: 1fr; } .shop-sidebar { position: static; } }

/* WooCommerce grid override */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; list-style: none; padding: 0; margin: 0; float: none; width: auto !important; }
.woocommerce ul.products li.product { float: none; width: auto; margin: 0; }
@media (max-width: 700px) { .woocommerce ul.products { grid-template-columns: repeat(2,1fr); } }

/* WooCommerce button override */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
  background: var(--red) !important; color: #fff !important;
  border-radius: var(--radius) !important; font-weight: 700 !important;
  font-size: .76rem !important; letter-spacing: .08em !important;
  text-transform: uppercase !important; border: none !important;
  font-family: var(--fb) !important; padding: .65rem 1.25rem !important;
  transition: background var(--trans) !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--red-dk) !important; }
.woocommerce .price { color: var(--dark) !important; font-weight: 700 !important; }
.woocommerce .price del { color: var(--muted) !important; font-weight: 400 !important; font-size: .85em !important; }
.woocommerce-message { border-top-color: var(--red) !important; }
.woocommerce div.product form.cart { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.25rem; }
.woocommerce div.product form.cart .button { width: 100% !important; padding: 1rem !important; font-size: .85rem !important; }
.woocommerce div.product form.cart .qty { width: 72px; padding: .6rem .5rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 1rem; text-align: center; }

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb { padding: .75rem 0; font-size: .76rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--dark); }

/* =====================================================
   CONTENT HELPERS
   ===================================================== */
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.four-col  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .three-col { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .four-col { grid-template-columns: repeat(2, 1fr); } }
.two-col img { border-radius: var(--radius); width: 100%; }

.card-box { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.card-box h3 { font-family: var(--fd); font-size: 1.1rem; margin-bottom: .5rem; color: var(--dark); }
.card-box p  { font-size: .875rem; color: var(--muted); line-height: 1.7; margin: 0; }

.stat-bar { background: var(--dark); border-radius: var(--radius); padding: 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 600px) { .stat-bar { grid-template-columns: repeat(2, 1fr); } }
.stat-n { font-family: var(--fd); font-size: 2.5rem; font-weight: 600; color: var(--gold); display: block; }
.stat-l { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .25rem; }

.alert { padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 1.5rem; font-size: .875rem; }
.alert-warn { background: #fff8e1; border-left: 4px solid var(--gold); color: var(--mid); }
.alert-ok   { background: #f0faf0; border-left: 4px solid #2d7a2d; color: #1a4d1a; }
.alert-err  { background: #fff0f0; border-left: 4px solid var(--red); color: var(--red-dk); }

.lis-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.lis-table th { text-align: left; padding: .75rem 1rem; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); background: var(--light); }
.lis-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); color: var(--mid); }
.lis-table tr:nth-child(even) td { background: #faf8f5; }

.faq-list details { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-list summary { padding: 1rem 1.25rem; font-size: .9rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--red); font-size: 1.2rem; flex-shrink: 0; transition: transform var(--trans); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > div { padding: 0 1.25rem 1.25rem; font-size: .875rem; color: var(--mid); line-height: 1.8; }
.faq-list details > div p  { margin-bottom: .5rem; }
.faq-list details > div ul { padding-left: 1.25rem; list-style: disc; display: flex; flex-direction: column; gap: .4rem; }
.faq-list details > div ol { padding-left: 1.25rem; list-style: decimal; display: flex; flex-direction: column; gap: .4rem; }

/* =====================================================
   UTILITIES
   ===================================================== */
.tc  { text-align: center; }
.mt1 { margin-top: 1rem; }
.mt2 { margin-top: 1.5rem; }
.mt3 { margin-top: 2.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--red); color: #fff; padding: .5rem 1rem; border-radius: 0 0 var(--radius) var(--radius); font-weight: 700; z-index: 9999; transition: top var(--trans); }
.skip-link:focus { top: 0; }
