/* ============================================================
   Global / Theme
   ============================================================ */

/* Brand display font (swap prevents FOIT) */
@font-face {
  font-family: 'Lobster';
  src: url('/assets/Lobster-Regular.ttf') format('truetype');
  font-display: swap;
}

/* Design tokens */
:root{
  --brand:#AF1B18;
  --tile: 260px; /* card width unit used in grid */
}

html, body { height:100%; }

body{
  margin:0;
  background:#0e0f12;
  color:#e7e7ea;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}


/* ----------------------------------------
   Global Link Styling — Zisditik Brand
   ---------------------------------------- */

a {
  color: var(--brand, #AF1B18);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

/* Hover / Focus states */
a:hover,
a:focus-visible {
  color: #ff5a47; /* lighter red for visual feedback */
  text-decoration: underline;
  text-decoration-color: #ff5a47;
}

/* Visited links — stay consistent, not purple */
a:visited {
  color: var(--brand, #AF1B18);
}

/* Special case: inside dark cards, FAQ, or footer */
.card a,
.faq a,
footer a,
.rich a {
  color: var(--brand, #AF1B18);
}

.card a:hover,
.faq a:hover,
footer a:hover,
.rich a:hover {
  color: #ff5a47 !important;
  text-decoration: underline;
}

/* Accessibility & keyboard nav */
a:focus-visible {
  outline: 2px solid #ff5a47;
  outline-offset: 2px;
  border-radius: 4px;
}


a {
  position: relative;
  text-decoration: none !important;
}
a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0%; height: 1px;
  background-color: currentColor;
  transition: width 0.25s ease;
}
a:hover::after,
a:focus-visible::after {
  width: 100%;
}

/* Disable link underline animation for specific links */
a.no-underline {
  text-decoration: none !important;
  color: inherit !important; /* or var(--brand) if you want a fixed color */
}

a.no-underline::after {
  display: none !important; /* disables the underline animation */
}

/* Prevent hover/focus color changes */
a.no-underline:hover,
a.no-underline:focus-visible {
  color: inherit !important;     /* no color change */
  text-decoration: none !important;
}


/* ============================================================
   Accessibility 
   ============================================================ */


/* Accessibility: reduce motion users get snappier UI */
@media (prefers-reduced-motion: reduce){
  * { animation:none !important; transition:none !important; }
}

/* 1) Visible, consistent focus (keyboard) */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* Make focus obvious on interactive bits you already have */
a:focus-visible,
.btn:focus-visible,
.pill:focus-visible,
.catmenu-btn:focus-visible,
.mobile-cta__close:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 10px; /* keeps glow neat on pills/buttons */
}

/* 2) Don’t rely on color alone for links */
.review-links a:hover,
.review-links a:focus-visible {
  text-decoration: underline;
}

/* 3) Ensure adequate hit-targets on mobile */
@media (max-width: 720px) {
  a, .btn, .pill, .catmenu-btn, .mobile-cta__close {
    min-height: 44px;              /* WCAG touch target */
    padding-block: max(.5rem, 10px);
  }
}

/* 4) High-contrast users */
@media (prefers-contrast: more) {
  :root { --brand: #ff4a3a; }           /* brighter brand */
  .btn, .pill, .catmenu-btn {
    border-color: #ffffff;
  }
  .rating-badge,
  .price-tag {
    background: transparent;
    border-color: #fff;
  }
}

/* 5) Windows High Contrast mode */
@media (forced-colors: active) {
  * { forced-color-adjust: auto; }
  .hero__overlay,
  .mobile-cta__bar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: Canvas;               /* system color */
    border: 1px solid CanvasText;
  }
  .pill, .btn, .catmenu-btn, .rating-badge, .price-tag {
    border: 1px solid CanvasText !important;
    background: Canvas !important;
    color: CanvasText !important;
  }
}

/* 6) Keep text readable if users bump spacing (1.4.12) */
body {
  line-height: 1.5;          /* avoid tight line-height */
  word-spacing: .12em;       /* gentle boost */
}

/* 7) Screen-reader only utility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* 8) Keyboard-visible state for “selected” */
.pill[aria-current="page"],
.pill[aria-current="true"] {
  box-shadow: 0 0 0 2px var(--brand) inset;
}

/* 9) Nav/search dropdown: keep in view & readable */
.search-results {
  overscroll-behavior: contain; /* prevent page scroll steal */
}

/* 10) Motion-safe fallback for animated meter */
@media (prefers-reduced-motion: reduce) {
  .rating-meter .fill { transition: none; }
}



/* ============================================================
   QR Row
   ============================================================ */

/* QR row layout */
.qr-block{
  display:grid;
  grid-template-columns: 88px minmax(0,1fr); /* allow second column to shrink */
  gap:12px;
  align-items:center;
}
.qr-block .qr-text{
  min-width:0; /* critical so text wraps inside the grid cell */
}

/* URL line: readable and unbreakable tokens still wrap */
.qr-url{
  font-size:.9em;
  opacity:.85;
  white-space:normal;        /* allow line breaks */
  overflow-wrap:anywhere;    /* break long strings anywhere if needed */
  word-break:break-word;     /* ensure long segments don’t overflow */
}

/* ============================================================
   CTA Center (rating + review links)
   ============================================================ */

.cta-center{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

/* price-tag: styled pill for price + net weight (KEEP) */
.price-tag{
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.price-tag .dot  { opacity:.6; }
.price-tag .netwt{ font-weight:600; opacity:.9; }

/* price: separate inline component (KEEP) */
.price{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-weight:600;
}
.price .dot   { opacity:.6; }
.price .netwt{
  font-weight:500;
  opacity:.9;
  font-size:.95em;
}

/* Rating badge + meter */
.rating-badge{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 10px; border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 6px 14px rgba(0,0,0,.25);
  font-weight:700;
}
.rating-badge .flame{ filter:saturate(1.2); font-size:1.05em; }
.rating-badge .score{ font-size:1.05em; }
.rating-badge .den{ opacity:.8; }

.rating-meter{
  position:relative; width:180px; height:6px; border-radius:999px;
  background:rgba(255,255,255,.08); overflow:hidden;
}
.rating-meter .fill{
  height:100%; width:0; /* set width inline via JS (e.g., 74%) */
  background:linear-gradient(90deg, #ff7a18, #ff3d3d);
  border-radius:999px; transition:width .5s ease;
}

/* Review links row */
.review-links{
  display:flex; align-items:center; gap:10px;
  font-size:.95em;
}
.review-links a{
  text-decoration:none; color:inherit; opacity:.9; padding:2px 0;
  border-bottom:1px solid transparent;
}
.review-links a:hover{ border-bottom-color: currentColor; }
.review-links .sep{ opacity:.4; user-select:none; }

/* ============================================================
   Blog Content
   ============================================================ */

.blog-post .post-body img { max-width:100%; height:auto; display:block; }
.blog-post .post-body figure { margin: 1.25rem 0; }

/* Blog index header */
.blog-index .blog-head { margin: 0 0 18px; }
.blog-index .blog-head h1 {
  margin: 0 0 6px;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
}
.blog-index .blog-head__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: .95rem;
  opacity: .8;
}
.blog-index .blog-head__meta .sep { opacity: .6 }
.blog-index .blog-head__sub {
  margin: 8px 0 0;
  max-width: 65ch;
  opacity: .9;
}
@media (max-width: 720px){
  .blog-index .blog-head h1 { font-size: 1.6rem; }
}

  .blog-index .post-list { display:grid; gap:16px; padding:0; list-style:none; }
  .blog-card { padding:0; background:#191b20; border-radius:12px; overflow:hidden; max-width:1200px; margin:0 auto; }
  .blog-card__link { display:grid; grid-template-columns: 240px 1fr; gap:14px; color:inherit; text-decoration:none; }
  .blog-card__thumb { aspect-ratio:16/9; background:#0f1115; }
  .blog-card__thumb img { width:100%; height:100%; object-fit:cover; display:block; }
  .blog-card__body { padding:14px; }
  .blog-card__title { margin:0 0 6px; font-size:1.15rem; line-height:1.2; color: var(--brand); }
  .blog-card__date { opacity:.7; font-size:.9em; display:block; margin-bottom:6px; color: #e7e7ea;}
  .blog-card__excerpt { margin:6px 0 0; opacity:.9; color: #e7e7ea; }
  @media (max-width: 720px) {
    .blog-card__link { grid-template-columns: 1fr; }
  }

  p.blog-head__sub {
	  max-width:100% !important;
  }



/* ============================================================
   Hero
   ============================================================ */

header.hero{
  position:relative; min-height:58vh;
  display:flex; align-items:center; justify-content:center;
  text-align:center; overflow:hidden;
}
.hero__bg{ position:absolute; inset:0; z-index:-2; overflow:hidden; }
.hero__bg img{ width:100%; height:100%; object-fit:cover; display:block; }

/* overlay improves contrast over photography */
.hero__overlay{
  position:absolute; inset:0; z-index:-1;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55), rgba(0,0,0,.95));
}
.hero h1{
  font-family:'Lobster', cursive;
  font-size: clamp(48px, 8vw, 120px);
  margin:0; color:var(--brand);
  text-shadow:0 10px 30px rgba(0,0,0,.6);
}
.hero p{
  max-width:900px; margin:16px auto 0;
  font-size: clamp(16px, 2.2vw, 22px); opacity:.95;
}

/* Hero: mobile sizing */
@media (max-width: 720px){
  header.hero{ min-height:46vh; padding:28px 14px 18px; }
  .hero h1{ font-size: clamp(32px, 8.5vw, 56px); line-height:1.05; letter-spacing:.5px; }
  .hero p{ font-size: clamp(14px, 3.6vw, 17px); max-width:560px; margin-top:10px; }
}

/* ============================================================
   Top Nav + Category Pills
   ============================================================ */

nav.top{
  position:sticky; top:0; z-index:9;
  backdrop-filter: blur(8px);
  background:rgba(14,15,18,.75);
  border-bottom:1px solid #1d1f25;
}
.navwrap{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  padding:12px 16px; position:relative;
}
.brand{ font-family:'Lobster', cursive; color:var(--brand); font-size:26px; }

.catbar{ display:flex; align-items:center; gap:10px; position:relative; margin:16px auto 0; }
.catbar .catbar-inner{ display:flex; gap:.5rem; flex-wrap:wrap; align-items:center; }

.catmenu-btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px; border:1px solid #2a2d35;
  background:#1a1b1e; color:#e7e7ea; font-weight:600; cursor:pointer;
}
.catmenu-btn svg{ width:18px; height:18px; }

.cats{
  display:none; position:absolute; top:calc(100% + 8px); left:0; right:0;
  background:#111218; border:1px solid #1e2028; border-radius:14px; padding:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.35); flex-wrap:wrap; gap:8px; z-index:20;
}
.cats.open{ display:flex; }

@media (min-width: 721px){
  .catmenu-btn{ display:none; }
  .cats{ display:flex !important; position:static; background:none; border:0; padding:0; box-shadow:none; }
}

/* Pills */
.pill{
  background:#1a1b1e; border:1px solid #2a2d35;
  padding:.5rem .9rem; border-radius:999px; cursor:pointer;
  display:inline-block; color:#e7e7ea; text-decoration:none;
}
.pill:hover { filter: brightness(1.08); }
.pill.active{ background:var(--brand); border-color:transparent; color:#fff; }
.pill, .pill:link, .pill:visited { color: inherit; text-decoration: none; }

/* Search in catbar */
.catbar .search { margin-left:auto; }
.catbar .search input {
  padding:.5rem .75rem; border-radius:999px; border:0;
  background:#151515; color:#e7e7ea;
}

/* ============================================================
   Search UI
   ============================================================ */

.search-wrap{ position:relative; }
.search-input{
  width:220px; max-width:52vw;
  background:#1a1b1e; border:1px solid #2a2d35; color:#e7e7ea;
  border-radius:12px; padding:9px 12px 9px 36px; outline:none;
}
.search-icon{ position:absolute; left:10px; top:8px; opacity:.6; pointer-events:none; }
.search-results{
  position:absolute; top:44px; right:0; left:0; z-index:25;
  background:#111218; border:1px solid #1e2028; border-radius:14px; padding:8px;
  box-shadow:0 16px 40px rgba(0,0,0,.45); max-height:70vh; overflow:auto;
}
.search-item{
  display:flex; gap:10px; align-items:center; padding:8px; border-radius:10px; cursor:pointer;
}
.search-item:hover{ background:#14161b; }
.search-thumb{ width:44px; height:44px; border-radius:8px; overflow:hidden; flex:0 0 auto; background:#0c0d10; }
.search-empty{ padding:10px; opacity:.7; }

@media (max-width:720px){ .search-input{ width:160px; } }

/* Page wrapper */
.wrap{ max-width:1200px; margin:0 auto; padding:20px; }

/* ============================================================
   Cards / Grid
   ============================================================ */

.grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--tile), var(--tile)));
  gap:18px; justify-content:center; align-items:start;
}
@media (max-width:1200px){ :root { --tile: 260px; } }
@media (max-width: 960px){ :root { --tile: 240px; } }
@media (max-width: 640px){ .grid{ grid-template-columns: 1fr; } }

.card{
  position:relative; background:#14161b; border:1px solid #22252d;
  border-radius:22px; overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  display:flex; flex-direction:column;
}
.card-img{ position:relative; width:100%; aspect-ratio:4/3; overflow:hidden; background:#0c0d10; }
.card-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.card-ribbon{
  position:absolute; left:0; right:0; bottom:0; height:10%; min-height:28px;
  background:linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,.45));
  color:#fff; font-size:.85em; font-weight:700; letter-spacing:.02em; text-transform:uppercase;
  display:flex; align-items:center; padding:0 10px;
}
.card .inner{ padding:14px 14px 18px; }
.card h3{ margin:0 0 6px; font-size:20px; }
.card p{ margin:0 0 10px; opacity:.85; min-height:46px; }

/* A standalone .price style exists above; keep both */
.price{ font-weight:700; color:#fff; }

/* Footer + home sections */
footer{ padding:30px 16px; text-align:center; color:#bfc3cf; border-top:1px solid #20222a; }
.home-sections{ display:grid; gap:28px; margin-top:30px; }
.home-section{ background:#111218; border:1px solid #1e2028; border-radius:18px; padding:18px; }

/* ============================================================
   Product CTA Row
   ============================================================ */

.cta-row{
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
  margin-top:14px; padding-top:10px; border-top:1px solid #20222a;
}

/* price-tag pill variant (KEEP distinct from .price) */
.price-tag{
  font-size:22px; font-weight:800; letter-spacing:.01em;
  background:linear-gradient(180deg, rgba(175,27,24,.18), rgba(175,27,24,.04));
  color:#fff; padding:8px 14px; border-radius:14px; border:1px solid #2a2d35;
  box-shadow:0 4px 16px rgba(0,0,0,.25) inset;
}

.cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Buttons */
.btn, .btn:link, .btn:visited{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:12px; border:1px solid #2a2d35;
  background:#1a1b1e; color:#e7e7ea; text-decoration:none; font-weight:600;
}
.btn:hover{ filter:brightness(1.08); }
.btn.primary{ background:var(--brand); border-color:transparent; color:#fff; box-shadow:0 6px 18px rgba(175,27,24,.35); }
.btn.ghost{ background:transparent; }

@media (max-width:640px){
  .cta-row{ flex-direction:column; align-items:stretch; }
  .price-tag{ width:100%; text-align:center; }
  .cta-actions{ justify-content:space-between; }
}

/* ============================================================
   Mobile Tidy-ups
   ============================================================ */

@media (max-width: 720px){
  header.hero{ min-height:30vh; padding:16px 12px; }
  .wrap{ padding:12px; }

  .card{ border-radius:16px; }
  .card .inner{ padding:16px; }
  .card-img img{
    width:100%; height:auto; aspect-ratio:1 / 1;
    object-fit:cover; display:block;
  }

  /* price-tag pill compaction (KEEP distinct) */
  .price-tag{
    display:inline-flex;
    align-items:baseline;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    font-weight:700;
    line-height:1.2;
  }
  .price-tag .dot{ opacity:.5; }
  .price-tag .netwt{ font-weight:500; opacity:.9; }

  /* Stack CTAs full-width */
  .cta-row{ display:grid; gap:10px; }
  .cta-row .btn{ width:100%; }

  /* Compact rating block */
  .cta-center{
    display:grid; gap:8px; margin:8px 0 2px; justify-items:start;
  }
  .rating-badge{ font-size:14px; padding:6px 10px; border-radius:999px; }
  .rating-meter{ height:6px; }

  .review-links{
    display:flex; gap:8px; flex-wrap:wrap;
    font-size:13px; opacity:.9;
  }

  /* QR: smaller side-by-side */
  .qr-block{
    display:grid; grid-template-columns:88px 1fr; gap:12px; align-items:center;
  }
  .qr-block img{ width:88px; height:88px; }
  .qr-url{
    font-size:.9em; opacity:.8;
    overflow:hidden; text-overflow:ellipsis;
    white-space:normal; overflow-wrap:anywhere; word-break:break-word;
  }
}

/* ultra-narrow tweaks */
@media (max-width: 400px){
  .price-tag{ font-size:18px; }     /* KEEP: .price-tag only */
  .rating-badge{ font-size:13px; }
}

/* Sticky “Buy” button on mobile (primary only) */
@media (max-width: 720px){
  .btn.primary.sticky-buy{
    position:sticky; bottom:10px; z-index:10;
  }
}

/* ============================================================
   Mobile Floating CTA
   ============================================================ */

.mobile-cta__bar { display:none; }

@media (max-width: 720px){
  .mobile-cta{
    position:fixed; left:10px; right:10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display:flex; justify-content:center;
    z-index:1000;
    transition: transform .28s ease, opacity .2s ease;
    will-change: transform, opacity;
    pointer-events:none; /* bar reenables clicks */
  }
  .mobile-cta__bar{
    pointer-events:auto;
    display:flex; align-items:center; gap:10px;
    padding:10px 12px; max-width:520px; width:100%;
    border-radius:16px;
    background: rgba(18,18,18,.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 26px rgba(0,0,0,.35);
  }
  .mobile-cta__title{
    font-size:13px; font-weight:600; opacity:.9; white-space:nowrap;
  }
  .mobile-cta__btn{
    flex:1; text-align:center; padding:10px 14px; border-radius:999px;
  }
  .mobile-cta__close{
    appearance:none; border:0; background:transparent;
    font-size:18px; line-height:1; opacity:.7; padding:4px 6px;
  }

  /* hidden states */
  .mobile-cta--hidden{ transform: translateY(140%); opacity:0; }
  .mobile-cta--off   { display:none; } /* after user closes */

  /* keep content readable above the bar */
  body.has-mobile-cta-padding{ padding-bottom:88px; }
}

/* ============================================================
   Footer Nav
   ============================================================ */

/* 1) Only-hide-for-visuals helper (needed by the H2) */
.visually-hidden {
  position:absolute !important;
  width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* 2) Reset lists inside the footer */
.ft-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Optional: make the columns read nicely */
.ft-nav .ft-list,
.ft-nav .ft-social {
  display: grid;
  gap: .4rem;
}

/* Optional: keep the strong, visible focus */
.ft-nav a:focus-visible, .ft-nav .btn:focus-visible {
  outline: 3px solid var(--brand, #AF1B18);
  outline-offset: 3px;
  border-radius: .3rem;
}

.ft-legal {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 16px;
  padding: 16px 0 24px;
  text-align: center;
  font-size: .95rem;
  color: rgba(231,231,234,.85);
}
.ft-legal p { margin: 0; }


.ft-nav{
  margin-top:32px;
  border-top:1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,0));
}
.ft-wrap{ padding-top:18px; padding-bottom:18px; }

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

/* Columns */
.ft-col{ display:grid; gap:8px; align-content:start; }
.ft-col h3{
  margin:0 0 6px;
  font:800 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing:.06em; text-transform:uppercase;
  color: rgba(255,255,255,.7);
  text-decoration: underline;
}
.ft-col a{
  text-decoration:none; color: rgba(255,255,255,.82);
  font-size:14px; line-height:1.6;
}
.ft-col a:hover{ color:#fff; text-decoration:underline; }

/* Social layout */
.ft-social{ display:grid; gap:6px; margin-bottom:10px; }

/* Footer call to action */
.ft-cta{
  display:inline-block; margin-top:4px; border-radius:999px; padding:9px 14px; text-align:center;
  background:transparent;
  border:1px solid rgba(175,27,24,.6); /* #AF1B18 alpha */
  color: rgba(255,255,255,.92);
}
.ft-cta:hover{
  background: rgba(175,27,24,.18);
  border-color: rgba(175,27,24,.9);
}

/* Footer responsiveness */
@media (max-width: 960px){
  .ft-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px){
  .ft-grid{ grid-template-columns: 1fr; }
  .ft-col{ gap:6px; }
  .ft-cta{ width:100%; }
}



/* --- Footer: hard resets & color inheritance --- */
.ft-nav { color: rgba(231,231,234,.9); }
.ft-nav a,
.ft-nav a:visited { color: inherit; text-decoration: none; }
.ft-nav a:hover { text-decoration: underline; }

/* Hide the <h2> visually but keep it for SRs */
.ft-nav > h2.visually-hidden {
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* Kill bullets & left padding everywhere inside footer */
.ft-nav nav ul,
.ft-nav .ft-list,
.ft-nav .ft-social {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  gap: .5rem;
}

/* Tappable targets on mobile */
.ft-nav a, .ft-nav .btn { line-height: 1.4; padding: 2px 0; }

/* Visible keyboard focus */
.ft-nav a:focus-visible, .ft-nav .btn:focus-visible {
  outline: 3px solid var(--brand, #AF1B18);
  outline-offset: 3px;
  border-radius: .35rem;
}

/* Grid behavior */
.ft-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }

/* --- Mobile layout fixes --- */
@media (max-width: 720px) {
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-col h3 { margin: 0 0 .5rem; }
  .ft-legal { text-align: center; padding: 16px 0 24px; }
}

/* Legal bar divider (keeps your look from desktop) */
.ft-legal {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 16px;
  color: rgba(231,231,234,.8);
}
.ft-legal p { margin: 0; }

/* Footer CTA button override */
.ft-nav .ft-cta {
  display: inline-flex;        /* use flex so it centers horizontally/vertically */
  align-items: center;         /* vertical centering */
  justify-content: center;     /* horizontal centering */
  padding: 6px 16px;           /* smaller pill padding */
  border-radius: 9999px;       /* nice pill shape */
  background: var(--brand, #AF1B18);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;                /* remove the extra border */
  min-width: 120px;            /* keeps it from shrinking oddly */
  text-align: center;
}

/* Hover/focus states */
.ft-nav .ft-cta:hover,
.ft-nav .ft-cta:focus-visible {
  background: #c0211b;
  outline: none;
}


/* ============================================================
   FAQ
   ============================================================ */

/* FAQ links and interactive content */
.faq a {
  color: var(--brand);
  text-decoration: underline;
  font-weight: 500;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.faq a:hover,
.faq a:focus-visible {
  color: #ff5a47; /* slightly lighter red on hover for contrast */
  text-decoration-color: #ff5a47;
}

/* Optional: if you want cleaner look (no underline by default) */
.faq a {
  text-decoration: none;
}
.faq a:hover,
.faq a:focus-visible {
  text-decoration: underline;
}

.faq summary {
  list-style: none;
  user-select: none;
  outline: none;
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '▸';
  position: absolute;
  right: 0;
  transition: transform 0.2s ease;
}
.faq[open] summary::after {
  transform: rotate(90deg);
}
.faq[open] {
  background: #202226;
}



/* ============================
   Events list — responsive UX
   ============================ */

.event-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.event-title {
  font-weight: 800;
  margin: 0 0 4px;
  font-size: clamp(18px, 4.4vw, 20px);
  line-height: 1.2;
}

.event-meta {
  opacity: .9;
  font-size: .95rem;
  line-height: 1.35;
}

.event-address {
  opacity: .78;
  font-size: .9rem;
  margin-top: 4px;
  white-space: normal;
}

/* Actions */
.event-actions {
  display: flex;
  gap: 8px;
  justify-self: end;
}

/* Softer ghost button to pair with brand button */
.btn.btn--ghost {
  background: transparent;
  border: 1px solid #353841;
}

/* Touch-friendly buttons */
.btn {
  min-height: 44px;                     /* thumb target */
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .event-card {
    grid-template-columns: 1fr;         /* stack */
    padding: 12px;
  }
  .event-actions {
    justify-self: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;     /* two big buttons side-by-side */
    gap: 10px;
    margin-top: 10px;
  }
  .btn { width: 100%; }                 /* full-width tap targets */
  .event-meta { font-size: .95rem; }
  .event-address { font-size: .9rem; }
}

/* ---------- Very small phones ---------- */
@media (max-width: 380px) {
  .event-actions { grid-template-columns: 1fr; }  /* stack buttons vertically */
}

