/* ===== Single Dealer page ===== */

.bp-dealer-single__verified-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bp-primary);
  background: rgba(15, 23, 18, 0.85);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.bp-dealer-single__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
}

.bp-dealer-single__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  color: var(--bp-muted);
}

.bp-dealer-single__meta-item i {
  color: var(--bp-primary);
  font-size: 1rem;
}

.bp-dealer-single__status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bp-primary);
  animation: bp-blink 1.8s ease-in-out infinite;
}

@keyframes bp-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.bp-dealer-single__step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.bp-dealer-single__step-num {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--bp-primary-rgb), 0.12);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.25);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--bp-primary);
  letter-spacing: 0.04em;
}

.bp-dealer-block__text {
  color: var(--bp-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.bp-dealer-block__text p {
  margin-bottom: 1rem;
}

.bp-dealer-block__text p:last-child {
  margin-bottom: 0;
}

.bp-dealer-testimonials-section .bp-dealer-testimonial {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.bp-dealer-testimonials-section .bp-dealer-testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  right: 1.1rem;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(var(--bp-primary-rgb), 0.08);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  user-select: none;
}

.bp-dealer-testimonial__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--bp-muted-ink-strong);
  font-size: 1.02rem;
  line-height: 1.75;
}

.bp-dealer-testimonial__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bp-primary);
  background: rgba(var(--bp-primary-rgb), 0.08);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.16);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.bp-dealer-testimonial__star {
  color: var(--bp-accent);
  font-size: 0.9rem;
}

.bp-dealer-testimonial__avatar {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.bp-dealer-testimonial__avatar--primary {
  background: rgba(var(--bp-primary-rgb), 0.12);
  color: var(--bp-primary);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.28);
}

.bp-dealer-testimonial__avatar--accent {
  background: rgba(var(--bp-accent-rgb), 0.12);
  color: var(--bp-accent);
  border: 1px solid rgba(var(--bp-accent-rgb), 0.28);
}

.bp-dealer-testimonial__name {
  color: var(--bp-ink);
}

.bp-dealer-testimonial__role {
  color: var(--bp-muted-ink);
  font-size: 0.95rem;
}

.bp-dealer-faq-section .bp-page-faq-item {
  border: 1px solid rgba(var(--bp-primary-rgb), 0.12);
  border-radius: var(--bp-radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--bp-surface-plain);
}

.bp-dealer-faq-section .bp-page-faq-item:hover {
  background: var(--bp-surface-plain);
}

.bp-dealer-faq-section .bp-page-faq-item.is-open {
  border-color: rgba(var(--bp-primary-rgb), 0.24);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.bp-dealer-faq-section .bp-page-faq-item__toggle {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  outline: none;
  box-shadow: none;
}

.bp-dealer-faq-section .bp-page-faq-item__toggle:focus,
.bp-dealer-faq-section .bp-page-faq-item__toggle:focus-visible {
  outline: none;
  box-shadow: none;
}

.bp-dealer-faq-section .bp-page-faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.bp-dealer-faq-section .bp-page-faq-item.is-open .bp-page-faq-item__panel {
  grid-template-rows: 1fr;
}

.bp-dealer-faq-section .bp-page-faq-item__answer {
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--bp-muted);
  line-height: 1.7;
}

.bp-dealer-faq-section .bp-page-faq-item.is-open .bp-page-faq-item__answer {
  padding-bottom: 1.25rem;
}

.bp-dealer-faq-section .bp-page-faq-item__arrow {
  transition: transform 0.3s;
}

.bp-dealer-faq-section .bp-page-faq-item.is-open .bp-page-faq-item__arrow {
  transform: rotate(180deg);
  color: var(--bp-primary);
}
