.bspecial-locked {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e5e5e5);
  border-top: 2px solid var(--accent, #8b1a1a);
  border-radius: var(--radius, 6px);
  padding: 20px 24px;
}

.bspecial-locked-title {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, #8b1a1a);
  margin-bottom: 8px;
}

.bspecial-locked-desc {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-mid, #5a5a5a);
  margin: 0 0 20px;
}

.bspecial-locked-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  background: var(--accent, #8b1a1a);
  color: var(--white, #fff);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm, 4px);
  cursor: pointer;
  transition: background var(--transition, 0.2s);
}
.bspecial-locked-cta:hover {
  background: var(--accent-dark, #6e1414);
}

.bspecial-locked-list {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease, margin 0.3s;
}
.bspecial-locked-list.is-open {
  max-height: 400px;
  opacity: 1;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border, #e5e5e5);
}

.bspecial-locked-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 2px;
  font-family: system-ui, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text, #1a1a1a);
  text-decoration: none;
  border-bottom: 1px solid var(--border, #e5e5e5);
  transition: color var(--transition, 0.2s);
}
.bspecial-locked-list li:last-child a {
  border-bottom: none;
}
.bspecial-locked-list a:hover {
  color: var(--accent, #8b1a1a);
}
.bspecial-locked-list a:hover .arrow {
  transform: translateX(3px);
}
.bspecial-locked-list .arrow {
  color: var(--accent, #8b1a1a);
  font-size: 14px;
  transition: transform var(--transition, 0.2s);
}