/* Banger Labs — Shop (catalog) + product card.
   1:1 source-of-truth UI port, rebranded to the Banger Labs design tokens.
   Uses brand vars from style.css: --bl-p #7C5CFF, --bl-p2 #5B3BE0, --bl-p3 #9B7BFF, --bl-dk #14102E. */

/* ============================================================ SHOP SHELL */
.bl-shop {
  font-family: var(--font-body);
  color: var(--bl-ink);
  background: #fff;
  padding: clamp(14px, 2.2vw, 30px) clamp(16px, 4vw, 56px) clamp(40px, 6vw, 80px);
  -webkit-font-smoothing: antialiased;
}
/* ---- toolbar: category pills (left) + search (fills right) on one row, desktop only ---- */
@media (min-width: 769px) {
  .bl-shop-toolbar { display: flex; align-items: center; gap: 24px; border-bottom: 1px solid #f0f0f4; margin: 0 clamp(-16px, -4vw, -56px) 28px; padding: 8px clamp(16px, 4vw, 56px); }
  .bl-shop-toolbar .bl-shop-catnav { order: 1; flex: 0 1 auto; min-width: 0; border-bottom: 0; margin: 0; padding: 0; background: transparent; }
  .bl-shop-toolbar .bl-shop-search { order: 2; flex: 1 1 auto; max-width: none; margin: 0; }
}

/* ---- search ---- */
.bl-shop-search { position: relative; width: 100%; max-width: 520px; margin: 0 auto 18px; }
.bl-shop-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: var(--bl-mute); pointer-events: none; }
#bl-shop-search-input {
  width: 100%; height: 46px; padding: 0 16px 0 44px; border: 1px solid #e6e2f5; border-radius: 11px;
  font-size: 14px; color: var(--bl-ink); background: #fff; outline: none; box-sizing: border-box; font-family: var(--font-body);
  transition: border-color .2s var(--bl-ease), box-shadow .2s var(--bl-ease);
}
#bl-shop-search-input:focus { border-color: var(--bl-p); box-shadow: 0 0 0 4px rgba(124,92,255,.10); }
.bl-shop-search-clear { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--bl-mute); padding: 0; line-height: 1; display: inline-flex; }
.bl-shop-search-clear:hover { color: var(--bl-ink); }

/* ---- category nav (sticky pills) ---- */
.bl-shop-catnav {
  position: static; z-index: 1;
  background: #fff;
  border-bottom: 1px solid #f0f0f4; margin: 0 clamp(-16px, -4vw, -56px) 28px; padding: 12px clamp(16px, 4vw, 56px);
}
.bl-shop-catnav-inner { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; max-width: 1880px; margin: 0 auto; }
.bl-shop-catnav-inner::-webkit-scrollbar { display: none; }
.bl-cat-pill {
  flex-shrink: 0; display: inline-flex; align-items: center; height: 34px; padding: 0 14px;
  background: transparent; border: 1px solid transparent; border-radius: 8px; font-size: 13px; font-weight: 500;
  color: var(--bl-mute); cursor: pointer; white-space: nowrap; line-height: 1; transition: all .2s var(--bl-ease); font-family: var(--font-display); letter-spacing: -.01em;
}
.bl-cat-pill:hover { color: var(--bl-ink); }
.bl-cat-pill.is-active { background: var(--bl-dk); border-color: var(--bl-dk); color: #fff; }

/* ---- layout: catalog sidebar + grid ---- */
.bl-shop-layout { display: flex; align-items: flex-start; gap: 36px; max-width: 1880px; margin: 0 auto; }
.bl-catalog { flex: 0 0 220px; width: 220px; position: static; align-self: flex-start; }
.bl-catalog-inner { padding-right: 8px; }
.bl-catalog-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--bl-dk); margin: 0 0 14px; letter-spacing: -.01em; }
.bl-catalog-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.bl-catalog-item {
  display: block; width: 100%; text-align: left; background: none; border: none; padding: 6px 0;
  font-size: 14px; line-height: 1.3; cursor: pointer; font-family: var(--font-display) !important; color: var(--bl-mute);
  transition: color .15s; font-weight: 500; letter-spacing: -.01em;
}
.bl-catalog-item:first-child, .bl-catalog-item.is-active { color: var(--bl-p); font-weight: 600; }
.bl-catalog-item:hover { color: var(--bl-p); }

.bl-shop-grid-wrap { min-width: 0; flex: 1; }
.bl-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(224px, 1fr)); gap: 22px; }
.bl-product-grid > * { min-width: 0; }
.bl-product-cell { scroll-margin-top: 100px; min-width: 0; }

/* ---- empty state ---- */
.bl-shop-empty { grid-column: 1 / -1; padding: 80px 20px; text-align: center; color: var(--bl-mute); }
.bl-shop-empty-h { font-size: 20px; font-weight: 600; color: var(--bl-dk); margin: 0 0 6px; }
.bl-shop-empty-p { font-size: 14px; color: var(--bl-mute); }
.bl-shop-clear-filters { margin-top: 16px; padding: 8px 20px; border: 1px solid #e6e2f5; border-radius: 10px; background: #fff; cursor: pointer; font-size: 14px; color: var(--bl-ink); font-family: var(--font-body); }
.bl-shop-clear-filters:hover { border-color: var(--bl-p); color: var(--bl-p); }

/* ============================================================ PRODUCT CARD */
.bl-card-link { text-decoration: none; color: inherit; display: block; height: 100%; min-width: 0; }
.bl-card {
  display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid #e6e2f5;
  border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; isolation: isolate;
  transition: transform .4s var(--bl-ease), border-color .3s var(--bl-ease), box-shadow .4s var(--bl-ease);
}
.bl-card-link:hover .bl-card { transform: translateY(-4px); border-color: #d8d0f0; box-shadow: 0 20px 40px -22px rgba(20,16,46,.22), 0 8px 18px -12px rgba(20,16,46,.12); }

/* media */
.bl-card-media { position: relative; width: 100%; aspect-ratio: 5 / 4; background: var(--bl-paper); overflow: hidden; }
.bl-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--bl-ease); }
.bl-card-link:hover .bl-card-img { transform: scale(1.04); }
.bl-card-oos { position: absolute; inset: 0; background: rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center; }
.bl-card-oos-chip { font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px; background: var(--bl-paper); color: var(--bl-mute); border: 1px solid #e6e2f5; }

.bl-card-chips { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; z-index: 3; pointer-events: none; }

/* chips */
.bl-chip {
  display: inline-flex; align-items: center; gap: 7px; height: 24px; padding: 0 11px 0 10px;
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 7px; font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; line-height: 1;
}
.bl-chip--light { background: rgba(255,255,255,.75); border: 1px solid rgba(20,16,46,.08); color: var(--bl-dk); box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 1px 2px rgba(20,16,46,.06); }
.bl-chip--dark  { background: rgba(20,16,46,.78); border: 1px solid rgba(255,255,255,.10); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 1px 2px rgba(0,0,0,.2); }
.bl-chip-dot { position: relative; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.bl-chip--light .bl-chip-dot { background: var(--bl-p); box-shadow: 0 0 0 1.5px rgba(255,255,255,.95), 0 0 0 3px rgba(124,92,255,.25), 0 0 8px rgba(124,92,255,.45); }
.bl-chip--dark  .bl-chip-dot { background: #EDE9FF; box-shadow: 0 0 0 1.5px rgba(20,16,46,.5), 0 0 0 3px rgba(237,233,255,.2), 0 0 10px rgba(237,233,255,.6); }

/* body */
.bl-card-body { display: flex; flex-direction: column; padding: 22px 22px 6px; flex: 1; }
.bl-card-cat { font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--bl-mute); margin: 0 0 10px; }
.bl-card-titlerow { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.bl-card-title { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -.02em; color: var(--bl-dk); line-height: 1.1; margin: 0; flex: 0 1 auto; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bl-card-desc { font-size: 13.5px; line-height: 1.55; color: var(--bl-mute); margin: 0 0 16px; padding-bottom: 14px; border-bottom: 1px solid #f0f0f4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bl-card-pricerow { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; min-height: 28px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f4; margin-bottom: 14px; }
.bl-card-price { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -.025em; color: var(--bl-dk); line-height: 1; }
.bl-card-price .woocommerce-Price-amount { font-size: inherit; }
.bl-card-price del { font-size: 16px; font-weight: 400; color: var(--bl-mute); margin-right: 4px; }
.bl-card-price ins { text-decoration: none; }
.bl-card-for2 { font-size: 12.5px; font-weight: 400; color: var(--bl-mute); line-height: 1.2; }

/* simple variant badge (single label) */
.bl-card-badge { display: inline-flex; align-items: center; height: 28px; padding: 0 10px; color: #fff; border-radius: 7px; font-size: 11px; font-weight: 600; line-height: 1; white-space: nowrap; }

/* variant dropdown */
.bl-variant-dd { position: relative; flex-shrink: 0; }
.bl-variant-trigger {
  display: inline-flex; align-items: center; gap: 7px; height: 32px; padding: 0 10px 0 12px;
  background: #fff; border: 1px solid #e6e2f5; border-radius: 8px; font-size: 12px; font-weight: 600;
  color: var(--bl-dk); white-space: nowrap; cursor: pointer; font-family: var(--font-body); line-height: 1;
  transition: border-color .2s var(--bl-ease), box-shadow .2s var(--bl-ease);
}
.bl-variant-dd[data-open="true"] .bl-variant-trigger { border-color: #c9bcf0; box-shadow: 0 0 0 3px rgba(124,92,255,.12); }
.bl-variant-caret { transition: transform .2s var(--bl-ease); flex-shrink: 0; }
.bl-variant-dd[data-open="true"] .bl-variant-caret { transform: rotate(180deg); }
.bl-variant-menu {
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 132px; z-index: 20;
  background: #fff; border: 1px solid #e6e2f5; border-radius: 10px; padding: 5px;
  box-shadow: 0 16px 36px -16px rgba(20,16,46,.30), 0 6px 14px -10px rgba(20,16,46,.18);
}
.bl-variant-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; padding: 8px 10px;
  border: none; border-radius: 7px; font-family: var(--font-body); text-align: left; cursor: pointer; background: transparent;
  color: var(--bl-dk); transition: background .15s var(--bl-ease);
}
.bl-variant-opt:hover { background: #f5f3fb; }
.bl-variant-opt.is-disabled { color: #b0b0c0; opacity: .7; cursor: not-allowed; }
.bl-variant-opt-label { font-size: 12.5px; font-weight: 600; }
.bl-variant-opt-sold { font-weight: 400; font-size: 11px; }
.bl-variant-opt-price { font-size: 12.5px; font-weight: 600; color: var(--bl-p); }
.bl-variant-opt.is-disabled .bl-variant-opt-price { color: #b0b0c0; }

/* sale strip */
.bl-card-sale {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 20px; padding: 9px 12px;
  background: linear-gradient(90deg, rgba(124,92,255,.04) 0%, rgba(124,92,255,.08) 50%, rgba(124,92,255,.04) 100%);
  border: 1px solid rgba(124,92,255,.14); border-radius: 9px; font-size: 11px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--bl-p2); line-height: 1;
}
.bl-sale-dot { position: relative; width: 5px; height: 5px; border-radius: 50%; background: var(--bl-p); box-shadow: 0 0 6px rgba(124,92,255,.6); flex-shrink: 0; display: inline-block; }
.bl-sale-ping { position: absolute; inset: -2px; border-radius: 50%; border: 1px solid rgba(124,92,255,.5); animation: bl-sale-pulse 2.4s var(--bl-ease) infinite; display: block; }

/* CTA */
.bl-card-cta {
  margin: 10px 20px 20px; display: flex; align-items: center; justify-content: center; gap: 8px; height: 44px;
  background: linear-gradient(90deg, var(--bl-p2) 0%, var(--bl-p) 50%, var(--bl-p3) 100%); color: #fff;
  border: 1px solid transparent; border-radius: 11px; font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: .005em; box-shadow: 0 8px 22px -10px rgba(124,92,255,.55); transition: all .3s var(--bl-ease); width: calc(100% - 40px);
}
.bl-card-cta.bl-atc { cursor: pointer; }
.bl-card-link:hover .bl-card-cta { background: #fff; color: var(--bl-dk); border-color: #e6e2f5; box-shadow: none; }
.bl-cta-arrow { transition: transform .3s var(--bl-ease); display: inline-block; }
.bl-card-link:hover .bl-cta-arrow { transform: translateX(4px); }
.bl-atc.is-loading { opacity: .8; pointer-events: none; }

/* ============================================================ RESPONSIVE */
/* Desktop reflow (mobile <=768 unchanged): wide = sidebar + 4/row -> tablet = sidebar gone + 3/row -> 2/row.
   Pills get skinnier then wrap/stack neatly; search drops below the pills. */
@media (max-width: 1180px) {
  .bl-catalog { display: none; }
  .bl-shop-toolbar { flex-direction: column; align-items: stretch; }
  .bl-shop-toolbar .bl-shop-search { order: 2; margin-top: 12px; max-width: none; }
  .bl-shop-catnav-inner { flex-wrap: wrap; overflow: visible; }
}
/* column count is governed by auto-fill minmax above (fluid 7..1 by width) */
@media (max-width: 700px) {
  .bl-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
  .bl-card { border-radius: 12px; }
  .bl-card-body { padding: 14px 14px 4px; }
  .bl-card-cat { font-size: 9px; letter-spacing: .12em; margin: 0 0 6px; }
  .bl-card-titlerow { gap: 8px; margin-bottom: 8px; }
  .bl-card-title { font-size: 16px; }
  .bl-card-badge { height: 24px; padding: 0 8px; font-size: 10px; }
  .bl-card-desc { font-size: 12px; line-height: 1.45; margin: 0 0 12px; padding-bottom: 12px; }
  .bl-card-pricerow { gap: 6px; padding-bottom: 12px; margin-bottom: 12px; }
  .bl-card-price { font-size: 22px; }
  .bl-card-for2 { font-size: 11px; }
  .bl-card-sale { margin: 0 14px; padding: 8px 8px; font-size: 9.5px; letter-spacing: .02em; }
  .bl-card-cta { margin: 8px 14px 14px; height: 42px; font-size: 13px; width: calc(100% - 28px); }
}
@media (max-width: 360px) { .bl-product-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; } }

/* "Buy 1 Get 1 Free" quick-add revealed on dose-select (animates the card to include it) */
.bl-card-bogo{display:flex;align-items:center;justify-content:center;gap:8px;width:calc(100% - 2.5rem);margin:0 1.25rem 1.1rem;padding:12px 16px;border:none;border-radius:12px;background:linear-gradient(120deg,#7C5CFF,#5B3BE0);color:#fff;font:700 .85rem/1 'Space Grotesk',sans-serif;letter-spacing:.01em;cursor:pointer;box-shadow:0 6px 18px rgba(124,92,255,.3);transition:transform .14s,box-shadow .14s}
.bl-card-bogo[hidden]{display:none}
.bl-card-bogo.is-in{animation:blBogoCardIn .44s cubic-bezier(.16,1,.3,1)}
@keyframes blBogoCardIn{0%{opacity:0;transform:translateY(-10px) scale(.95)}100%{opacity:1;transform:none}}
.bl-card-bogo:hover{transform:translateY(-1px);box-shadow:0 10px 26px rgba(124,92,255,.42)}
.bl-card-bogo:active{transform:translateY(0)}
.bl-card-bogo.is-loading{opacity:.75;pointer-events:none}
.bl-card-bogo svg{flex:0 0 auto}
/* Dose picked: the BOGO quick-add REPLACES the "Select options" button in the same slot,
   so the card height stays constant (no stacking). Shop card (.bl-card) + home card (.bl-pcard). */
.bl-card.bl-dose-picked .bl-card-cta{display:none!important}
.bl-card.bl-dose-picked .bl-card-bogo{height:44px;margin:10px 20px 20px}
.bl-pcard.bl-dose-picked .bl-pcard-btn{display:none!important}
.bl-pcard.bl-dose-picked .bl-card-bogo{margin:auto 0 0;width:100%;padding:9px 16px;box-shadow:0 4px 14px rgba(124,92,255,.3)}
/* let each card size to its own content so one growing doesn't stretch the row */
.bl-shop-grid,.bl-products-grid,ul.products{align-items:start}

/* Bundle cards: show the full compound list (not 2-line clamped) */
.bl-card-bundle-items{-webkit-line-clamp:unset!important;display:block!important;font-weight:600;color:#5B3BE0}

/* Bundle BOGO strip: emphasize the "2nd full stack free" */
.bl-card-sale--bundle{background:rgba(42,157,92,.1)!important;border-radius:10px;padding:7px 12px!important;margin:0 1.25rem .4rem}
.bl-card-sale--bundle span:last-child{color:#1a6b3c!important;font-weight:700!important}
.bl-card-sale--bundle .bl-sale-dot,.bl-card-sale--bundle .bl-sale-ping{background:#2a9d5c!important}

/* Crisp card images (no inline baseline "black bar") + mobile side padding */
.bl-card-img{display:block}
.bl-card-media{background:#f6f4ff}
@media (max-width:700px){
  .bl-shop,.bl-featured-inner,.bl-related{padding-left:14px!important;padding-right:14px!important}
}

/* Variant dropdown: scrollable when a product has many mg doses (no off-screen overflow on mobile) */
.bl-variant-menu{max-height:min(58vh,360px)!important;overflow-y:auto!important;overscroll-behavior:contain;-webkit-overflow-scrolling:touch}
@media (max-width:700px){ .bl-variant-menu{max-height:46vh!important} }

/* Catalog sidebar — collapsible Kits group (#46) */
.bl-catalog-kitstoggle { display: flex; align-items: center; justify-content: space-between; gap: 6px; width: 100%; text-align: left; background: none; border: none; padding: 6px 0; font-size: 14px; font-family: var(--font-display) !important; color: var(--bl-mute); font-weight: 500; cursor: pointer; letter-spacing: -.01em; line-height: 1.3; }
.bl-catalog-kitstoggle:hover { color: var(--bl-p); }
.bl-catalog-chev { transition: transform .2s var(--bl-ease); flex-shrink: 0; }
.bl-catalog-kitstoggle.is-open { color: var(--bl-p); }
.bl-catalog-kitstoggle.is-open .bl-catalog-chev { transform: rotate(180deg); }
.bl-catalog-kits { list-style: none; margin: 2px 0 4px; padding: 0 0 0 12px; border-left: 1px solid #eee; display: flex; flex-direction: column; gap: 2px; }
.bl-catalog-kits[hidden] { display: none !important; } /* hidden attr must beat display:flex so the Kits list collapses on desktop too */
.bl-catalog-kits .bl-catalog-item { font-size: 13px; }

/* ─────────────────────────────────────────────────────────────────────────
   Kits FAQ — shown only in the Kits view. Premium accordion. (#53)
   Brand tokens: --bl-p #7C5CFF, --bl-dk #14102E, orange #FF6A2C accent.
   ───────────────────────────────────────────────────────────────────────── */
.bl-kitfaq { max-width: 1280px; margin: 56px auto 8px; padding: 0 4px; }
.bl-kitfaq[hidden] { display: none !important; }
.bl-kitfaq-inner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -12%, rgba(255,106,44,.07), transparent 60%),
    radial-gradient(820px 460px at 6% 0%, rgba(124,92,255,.10), transparent 58%),
    linear-gradient(180deg, #fbfaff 0%, #f6f4ff 100%);
  border: 1px solid #e9e5f7; border-radius: 22px;
  padding: 44px clamp(20px, 5vw, 64px) 40px;
  box-shadow: 0 18px 50px -22px rgba(20,16,46,.20), 0 2px 0 rgba(255,255,255,.7) inset;
}
.bl-kitfaq-head { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.bl-kitfaq-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--bl-p);
  margin-bottom: 12px;
}
.bl-kitfaq-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -.022em; line-height: 1.08;
  color: var(--bl-dk); margin: 0 0 12px;
}
.bl-kitfaq-spark { color: #FF6A2C; }
.bl-kitfaq-sub {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: #5b5577; margin: 0;
}
.bl-kitfaq-list {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 820px; margin: 0 auto;
}
.bl-kitfaq-item {
  background: #fff; border: 1px solid #e9e5f7; border-radius: 14px;
  box-shadow: 0 2px 10px rgba(20,16,46,.04);
  transition: border-color .2s var(--bl-ease), box-shadow .2s var(--bl-ease);
}
.bl-kitfaq-item.is-open {
  border-color: rgba(124,92,255,.45);
  box-shadow: 0 10px 28px -14px rgba(124,92,255,.40);
}
.bl-kitfaq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; padding: 18px clamp(16px, 2.4vw, 24px);
  font-family: var(--font-display); font-weight: 600; font-size: clamp(15px, 1.6vw, 17px);
  letter-spacing: -.01em; color: var(--bl-dk); line-height: 1.3;
}
.bl-kitfaq-q-text { flex: 1 1 auto; }
.bl-kitfaq-icon {
  flex-shrink: 0; color: var(--bl-p);
  transition: transform .25s var(--bl-ease);
}
.bl-kitfaq-item.is-open .bl-kitfaq-icon { transform: rotate(180deg); }
.bl-kitfaq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .28s var(--bl-ease);
}
.bl-kitfaq-item.is-open .bl-kitfaq-a { grid-template-rows: 1fr; }
.bl-kitfaq-a-inner {
  overflow: hidden; min-height: 0;
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.72; color: #4a4566;
  padding: 0 clamp(16px, 2.4vw, 24px);
}
.bl-kitfaq-item.is-open .bl-kitfaq-a-inner { padding-bottom: 20px; }
.bl-kitfaq-a-inner strong { color: var(--bl-dk); font-weight: 600; }

@media (max-width: 700px) {
  .bl-kitfaq { margin-top: 40px; padding: 0; }
  .bl-kitfaq-inner { border-radius: 18px; padding: 32px 16px 28px; }
  .bl-kitfaq-head { margin-bottom: 22px; }
  .bl-kitfaq-q { padding: 15px 16px; }
  .bl-kitfaq-a-inner { padding: 0 16px; font-size: 14px; }
}
