/* ══════════════════════════════════════
   FAQ Page 2026 — Teebling
   ══════════════════════════════════════ */

/* ── Hero ── */
.tb-fq-hero {
  padding: 50px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
  position: relative;
  overflow: hidden;
}
.tb-fq-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(78,100,223,.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.tb-fq-hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.tb-fq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e3e6ed;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 1.85rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 24px;
}
.tb-fq-badge i { color: #4e64df; }
.tb-fq-title {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
  margin: 0 0 18px;
}
.tb-fq-title span { color: #4e64df; }
.tb-fq-subtitle {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 32px;
}

/* ── Search ── */
.tb-fq-search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto 48px;
}
.tb-fq-search {
  width: 100%;
  padding: 14px 18px 14px 48px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1.85rem;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fafafa;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.tb-fq-search:focus {
  border-color: #4e64df;
  box-shadow: 0 0 0 3px rgba(232,116,34,.1);
  background: #fff;
}
.tb-fq-search::placeholder { color: #aaa; }
.tb-fq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.85rem;
  color: #999;
  pointer-events: none;
}
.tb-fq-search-count {
  font-size: 1.7rem;
  color: #999;
  text-align: center;
  margin-top: 8px;
  display: none;
}
.tb-fq-search-count.show { display: block; }

/* ── Category Tabs ── */
.tb-fq-cats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.tb-fq-cat {
  padding: 8px 20px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1.85rem;
  font-weight: 600;
  color: #555;
  background: #fff;
  cursor: pointer;
  transition: all .2s;
}
.tb-fq-cat:hover {
  border-color: #4e64df;
  color: #4e64df;
}
.tb-fq-cat.active {
  background: #1a1a2e;
  border-color: #1a1a2e;
  color: #fff;
}

/* ── Accordion Grid ── */
.tb-fq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 60px;
}
.tb-fq-grid.single-result {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.tb-fq-grid.single-result .tb-fq-col { display: contents; }
.tb-fq-grid.two-results {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.tb-fq-grid.two-results .tb-fq-col { display: contents; }
.tb-fq-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Accordion Item ── */
.tb-fq-item {
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
  background: #fff;
}
.tb-fq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.tb-fq-item.open { border-color: #4e64df; }
.tb-fq-item.hidden { display: none; }

.tb-fq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}
.tb-fq-q-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a2e;
  transition: background .2s, color .2s;
}
.tb-fq-item.open .tb-fq-q-num {
  background: #4e64df;
  color: #fff;
}
.tb-fq-q-text {
  flex: 1;
  font-size: 1.85rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
}
.tb-fq-q-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #666;
  transition: transform .3s, background .2s;
}
.tb-fq-item.open .tb-fq-q-arrow {
  transform: rotate(180deg);
  background: #4e64df;
  color: #fff;
}

.tb-fq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.tb-fq-answer-inner {
  padding: 0 20px 20px;
  font-size: 1.75rem;
  line-height: 1.7;
  color: #555;
}
.tb-fq-answer-inner strong { color: #1a1a2e; }
.tb-fq-answer-inner a { color: #4e64df; text-decoration: none; }
.tb-fq-answer-inner a:hover { text-decoration: underline; }

/* ── "No results" ── */
.tb-fq-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  display: none;
}
.tb-fq-empty.show { display: block; }
.tb-fq-empty-icon {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 12px;
}
.tb-fq-empty-text {
  font-size: 1.85rem;
  font-weight: 600;
  color: #999;
}

/* ── Helpful Widget ── */
.tb-fq-helpful {
  padding: 48px 0;
  border-top: 1px solid #eee;
}
.tb-fq-helpful-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.tb-fq-helpful-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.tb-fq-helpful-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.tb-fq-helpful-btn {
  padding: 10px 36px;
  font-size: 1.85rem;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #1a1a2e;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}
.tb-fq-helpful-btn:hover { border-color: #4e64df; }
.tb-fq-helpful-btn.voted-yes {
  border-color: #16a34a;
  background: #f0fdf4;
}
.tb-fq-helpful-btn.voted-no {
  border-color: #dc2626;
  background: #fef2f2;
}
.tb-fq-helpful-btn:disabled {
  cursor: default;
  opacity: .8;
}
.tb-fq-helpful-count {
  font-size: 1.7rem;
  color: #999;
}

/* ── Share Row ── */
.tb-fq-share {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.tb-fq-share-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 1.85rem;
  text-decoration: none;
  transition: all .2s;
}
.tb-fq-share-link:hover {
  border-color: #4e64df;
  color: #4e64df;
}

/* ── Contact CTA ── */
.tb-fq-cta-text {
  font-size: 1.85rem;
  color: #666;
  margin-top: 20px;
}
.tb-fq-cta-text a {
  color: #4e64df;
  font-weight: 600;
  text-decoration: none;
}
.tb-fq-cta-text a:hover { text-decoration: underline; }

/* ── Stats Banner (reused from contact) ── */
.tb-fq-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
  padding: 56px 0;
}
.tb-fq-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.tb-fq-banner-text { flex: 1; }
.tb-fq-banner-tag {
  font-size: 1.7rem;
  font-weight: 600;
  color: #4e64df;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.tb-fq-banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 20px;
}
.tb-fq-banner-btns {
  display: flex;
  gap: 12px;
}
.tb-fq-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s;
}
.tb-fq-banner-btn:hover { transform: translateY(-2px); }
.tb-fq-banner-btn.primary { background: #4e64df; color: #fff; }
.tb-fq-banner-btn.primary:hover { color: #fff; }
.tb-fq-banner-btn.wa { background: #25d366; color: #fff; }
.tb-fq-banner-btn.wa:hover { color: #fff; }
.tb-fq-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.tb-fq-stat { text-align: center; }
.tb-fq-stat-num {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
}
.tb-fq-stat-label {
  font-size: 1.4rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tb-fq-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .tb-fq-grid { grid-template-columns: 1fr; }
  .tb-fq-banner-inner { flex-direction: column; text-align: center; }
  .tb-fq-stats { justify-content: center; }
  .tb-fq-banner-btns { justify-content: center; }
}
@media (max-width: 768px) {
  .tb-fq-hero { padding: 40px 0 40px; }
  .tb-fq-title { font-size: 3rem; }
  .tb-fq-subtitle { font-size: 1.4rem; }
  .tb-fq-search-wrap { max-width: 100%; }
  .tb-fq-cats { gap: 8px; }
  .tb-fq-cat { padding: 6px 14px; font-size: 1.7rem; }
  .tb-fq-stats { flex-direction: column; gap: 16px; }
  .tb-fq-stat-divider { width: 40px; height: 1px; }
}

 #promoContent span:not(.free-shipping__icon) {
  color: #fff;
} 
div#promoBar {
    height: 39px;
    border-bottom: 2px solid #ffffff29;
}
.tb-cta.tb-cta--dark {
    border: 2px solid #ffffff38;
    border-radius: 6px;
}
a.link.btn--no-space.btn.c-link__button.tb-btn--medium.link--default {
    background: white;
    color: black;
    border-radius: 6px;
}
    .tb-cta { 
        -webkit-align-items: center;
        align-items: center;
        background: #000e5e !important;
        border-radius: 12px;
        box-shadow: 0 2px 4px 0 var(--color-neutral-900-a20);
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 12px;
        gap: 8px
    }

    .bl-top-bar {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        justify-content: center;
        background: #000e5e !important;
        text-align: center;
        padding: 10px;
        width: 100%;
        gap: 4px
    }


    
    .tb-cta { 
        -webkit-align-items: center;
        align-items: center;
        background: #000e5e !important;
        border-radius: 12px;
        box-shadow: 0 2px 4px 0 var(--color-neutral-900-a20);
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 12px;
        gap: 8px
    }
