.btsp {
  --btsp-navy: #0e2050;
  --btsp-navy-2: #16306e;
  --btsp-gold: #e3ae3c;
  --btsp-gold-soft: #f6e4b6;
  --btsp-ink: #16181d;
  --btsp-muted: #6b7280;
  --btsp-line: #eaecf0;
  padding-bottom: 40px;
}
.btsp-crumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--btsp-muted);
  padding: 14px 0 12px;
}
.btsp-crumb a {
  color: var(--btsp-muted);
  text-decoration: none;
}
.btsp-crumb a:hover {
  color: var(--btsp-ink);
}

.btsp-hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-color: var(--btsp-navy);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.btsp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9, 18, 44, 0.95) 0%,
    rgba(9, 18, 44, 0.82) 34%,
    rgba(9, 18, 44, 0.12) 62%,
    rgba(9, 18, 44, 0) 78%
  );
}
.btsp-hero:not(.has-img)::after {
  background: linear-gradient(120deg, rgba(22, 48, 110, 0.9), rgba(9, 18, 44, 0.95));
}
.btsp-hero-in {
  position: relative;
  z-index: 2;
  padding: 34px 38px;
  max-width: 580px;
  color: #ffffff;
}
.btsp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(227, 174, 60, 0.2);
  border: 1px solid rgba(227, 174, 60, 0.45);
  color: var(--btsp-gold-soft);
}
.btsp-hero-in h1 {
  margin: 14px 0 10px;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.btsp-hero-in p {
  margin: 0 0 18px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 46ch;
}
.btsp-search {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 440px;
  box-shadow: 0 8px 24px rgba(5, 11, 28, 0.3);
}
.btsp-search-input {
  flex: 1;
  border: 0;
  padding: 13px 16px;
  font-size: 14px;
  min-width: 0;
  color: var(--btsp-ink);
  background: #ffffff;
}
.btsp-search-input:focus {
  outline: 2px solid var(--btsp-gold);
  outline-offset: -2px;
}
.btsp-search-btn {
  border: 0;
  background: var(--btsp-navy);
  color: #ffffff;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.btsp-search-btn:hover {
  background: var(--btsp-navy-2);
}

.btsp-stores {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btsp-store {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  color: #3a4256;
  text-decoration: none;
  transition: border-color 0.16s ease;
}
.btsp-store:hover {
  border-color: #c9cfda;
  text-decoration: none;
  color: #3a4256;
}
.btsp-store.is-active {
  background: var(--btsp-navy);
  border-color: var(--btsp-navy);
  color: #ffffff;
}

.btsp-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
  align-items: start;
}
.btsp-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.btsp-card {
  background: #ffffff;
  border: 1px solid var(--btsp-line);
  border-radius: 14px;
  padding: 16px;
}
.btsp-card h2 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--btsp-muted);
  font-weight: 700;
}
.btsp-check-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.btsp-check-top h2 {
  margin: 0;
}
.btsp-check-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--btsp-navy);
  font-variant-numeric: tabular-nums;
}
.btsp-bar {
  height: 6px;
  border-radius: 3px;
  background: #eef0f4;
  overflow: hidden;
  margin-bottom: 13px;
}
.btsp-bar i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--btsp-gold), var(--btsp-navy));
  transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.btsp-check {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.btsp-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  font-size: 13px;
  color: #3a4256;
  cursor: pointer;
  border-radius: 7px;
  margin: 0;
}
.btsp-check label:hover {
  background: #f4f6f9;
}
.btsp-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 1.5px solid #c6ccd8;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.btsp-check input:checked {
  background: var(--btsp-navy);
  border-color: var(--btsp-navy);
}
.btsp-check input:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5px;
  width: 4px;
  height: 9px;
  border: solid var(--btsp-gold);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}
.btsp-check input:focus-visible {
  outline: 2px solid var(--btsp-gold);
  outline-offset: 2px;
}
.btsp-check input:checked + span {
  color: #98a1b2;
  text-decoration: line-through;
}

.btsp-bands {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.btsp-band {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  background: #f4f6f9;
  color: #3a4256;
  text-decoration: none;
}
.btsp-band:hover {
  background: #e8ecf2;
  color: #3a4256;
  text-decoration: none;
}
.btsp-band.is-active {
  background: var(--btsp-navy);
  color: #ffffff;
}

.btsp-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.btsp-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 13px;
  color: #3a4256;
  text-decoration: none;
  transition: background 0.16s ease;
}
.btsp-cat:hover {
  background: #f4f6f9;
  color: #3a4256;
  text-decoration: none;
}
.btsp-cat.is-cur {
  background: var(--btsp-navy);
  color: #ffffff;
  font-weight: 600;
}
.btsp-cat-ic {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #a9760f;
}
.btsp-cat.is-cur .btsp-cat-ic {
  color: var(--btsp-gold);
}

.btsp-main {
  min-width: 0;
}
.btsp-rowhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 13px;
}
.btsp-rowhead h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--btsp-ink);
}
.btsp-rowhead h2::before {
  content: '';
  width: 4px;
  height: 19px;
  border-radius: 2px;
  background: var(--btsp-gold);
}
.btsp-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: #a9760f;
  white-space: nowrap;
  text-decoration: none;
}
.btsp-more:hover {
  color: #7e5709;
  text-decoration: none;
}
.btsp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.btsp-grid > * {
  min-width: 0;
}
.btsp-empty {
  background: #ffffff;
  border: 1px solid var(--btsp-line);
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
}
.btsp-empty p {
  margin: 0 0 16px;
  color: var(--btsp-muted);
  font-size: 14px;
}
.btsp-empty-btn {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 11px;
  background: var(--btsp-navy);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}
.btsp-empty-btn:hover {
  background: var(--btsp-navy-2);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .btsp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .btsp-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .btsp-side {
    order: 2;
  }
  .btsp-hero {
    min-height: 0;
  }
  .btsp-hero::after {
    background: linear-gradient(
      180deg,
      rgba(9, 18, 44, 0.94) 0%,
      rgba(9, 18, 44, 0.86) 55%,
      rgba(9, 18, 44, 0.74) 100%
    );
  }
  .btsp-hero-in {
    padding: 24px 20px 26px;
    max-width: none;
  }
  .btsp-hero-in h1 {
    font-size: 27px;
  }
  .btsp-hero-in p {
    font-size: 13.5px;
  }
}
@media (max-width: 575px) {
  .btsp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .btsp-hero-in h1 {
    font-size: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btsp-bar i,
  .btsp-cat,
  .btsp-store {
    transition: none;
  }
}
