/* Car detail page — BE FORWARD marketplace theme */

body.bf-detail-page.car-detail-page {
  padding: 0 !important;
  background: var(--bf-page) !important;
}

body.bf-detail-page main.det {
  background: var(--bf-page);
  overflow-x: clip;
  font-family: var(--bf-font);
  color: var(--bf-black);
}

/* ── Page head ─────────────────────────────────────────────────── */

.det-head {
  background: #fff;
  border-bottom: 1px solid var(--bf-line);
  padding: 20px 0 0;
}

.det-head__crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--bf-muted);
  margin-bottom: 12px;
}

.det-head__crumb a {
  color: var(--bf-muted) !important;
  text-decoration: none;
}

.det-head__crumb a:hover {
  color: var(--bf-orange) !important;
}

.det-head__crumb i {
  font-size: 9px;
  opacity: 0.45;
}

.det-head__crumb span {
  color: var(--bf-black);
  font-weight: 600;
}

.det-head__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.det-head__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--bf-bg-soft);
  border: 1px solid var(--bf-line);
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-muted);
  margin-bottom: 14px;
}

.det-head__flag {
  width: 26px;
  height: 17px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px var(--bf-line);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.det-head__flag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 50%, var(--bf-orange) 36%, transparent 37%);
}

.det-head__title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--bf-black);
}

.det-head__title em {
  font-style: normal;
  color: var(--bf-orange);
}

.det-head__lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bf-muted);
  max-width: 56ch;
}

.det-head__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.det-head__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-grey);
}

.det-head__trust i {
  color: var(--bf-orange);
}

.det-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.det-head__stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.det-head__stat {
  padding: 10px 16px;
  background: var(--bf-bg-soft);
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius-sm);
  text-align: center;
  min-width: 88px;
}

.det-head__stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bf-black);
  line-height: 1.1;
}

.det-head__stat span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bf-muted);
}

/* ── Main layout ───────────────────────────────────────────────── */

.det-main {
  padding: 24px 0 32px;
}

.det-main .container {
  padding-top: 0;
}

.det-flash {
  margin-bottom: 16px;
}

.det-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 24px;
  align-items: start;
}

.det-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.det-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 88px;
}

/* ── Gallery ───────────────────────────────────────────────────── */

.det-gallery {
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  overflow: hidden;
  box-shadow: var(--bf-shadow);
}

.det-gallery__main {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  max-height: 520px;
  background: #111;
  overflow: hidden;
}

body.bf-detail-page .det-gallery__main,
body.bf-detail-page .gallery-main {
  width: 100% !important;
  height: auto !important;
}

.det-gallery__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.det-gallery:hover .det-gallery__main img {
  transform: scale(1.02);
}

.det-gallery__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bf-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.det-gallery__badge--reserved,
.badge-reserved {
  top: auto;
  bottom: 12px;
  left: 12px;
  background: var(--bf-black);
}

.det-gallery__thumbs {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bf-bg-soft);
  border-top: 1px solid var(--bf-line);
  overflow-x: auto;
}

.det-gallery__thumb {
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--bf-radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.65;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.det-gallery__thumb img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  display: block;
}

.det-gallery__thumb.active,
.det-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--bf-orange);
}

/* ── Meta chips ──────────────────────────────────────────────── */

.det-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.det-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--bf-line);
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-grey);
}

.det-meta i {
  color: var(--bf-orange);
  font-size: 12px;
}

/* ── Tabs ────────────────────────────────────────────────────── */

.det-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
}

.det-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 14px;
  border-radius: var(--bf-radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--bf-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.det-tab:hover {
  color: var(--bf-orange);
  background: var(--bf-orange-soft);
}

.det-tab.active {
  background: var(--bf-orange);
  color: #fff;
}

.det-panel {
  display: none;
}

.det-panel.active {
  display: block;
}

.det-panel-card {
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  padding: 24px;
  box-shadow: var(--bf-shadow);
}

.det-panel-card__title,
.detail-card-title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bf-line);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bf-black);
}

.det-text,
.detail-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--bf-muted);
}

.det-text:last-child {
  margin-bottom: 0;
}

.detail-card-table {
  padding: 0;
  overflow: hidden;
}

/* Spec grid */
.det-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bf-line);
}

.det-spec-box {
  background: var(--bf-bg-soft);
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius-sm);
  padding: 18px 14px;
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.det-spec-box i {
  color: var(--bf-orange);
  font-size: 16px;
  margin-bottom: 8px;
}

.det-spec-box .spec-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--bf-black);
  line-height: 1.35;
  word-break: break-word;
}

.det-spec-box .spec-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bf-muted);
  margin-top: 6px;
}

/* Spec table */
.det-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.det-spec-table tr {
  border-bottom: 1px solid var(--bf-line);
}

.det-spec-table tr:last-child {
  border-bottom: none;
}

.det-spec-table td {
  padding: 12px 16px;
}

.det-spec-table td:first-child {
  width: 42%;
  color: var(--bf-muted);
  background: var(--bf-bg-soft);
  font-weight: 600;
}

.det-spec-table td:last-child {
  font-weight: 600;
  color: var(--bf-black);
}

/* Features */
.det-features-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.det-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bf-grey);
}

.det-feature-item i {
  color: #16a34a;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Purchase card ───────────────────────────────────────────── */

.det-purchase {
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  overflow: hidden;
  box-shadow: var(--bf-shadow-md);
}

.det-purchase::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--bf-orange), var(--bf-orange-d));
}

.det-purchase__head {
  padding: 20px 20px 0;
}

.det-purchase__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bf-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.det-purchase__stock {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-muted);
}

.det-purchase__stock i {
  color: var(--bf-orange);
  margin-right: 4px;
}

.det-purchase__price {
  padding: 16px 20px 8px;
}

.det-purchase__price-big {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bf-orange-d);
  line-height: 1;
}

.det-purchase__price-label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bf-muted);
}

.det-price-breakdown {
  padding: 0 20px 16px;
}

.det-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed var(--bf-line);
  font-size: 13px;
}

.det-price-row span {
  color: var(--bf-muted);
}

.det-price-row strong {
  color: var(--bf-black);
}

.det-price-row--total {
  border-bottom: none;
  margin-top: 4px;
  padding: 12px 14px;
  background: var(--bf-orange-soft);
  border-radius: var(--bf-radius-sm);
}

.det-price-row--total span,
.det-price-row--total strong {
  color: var(--bf-orange-d);
  font-weight: 700;
}

.det-purchase__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 0 20px 20px;
}

.det-btn-wa {
  grid-column: 1 / -1;
  background: #25d366 !important;
  border-color: #25d366 !important;
}

.det-btn-wa:hover {
  background: #1da851 !important;
  border-color: #1da851 !important;
}

.det-purchase__fav {
  width: 46px;
  height: 46px;
  border-radius: var(--bf-radius-sm);
  border: 1px solid var(--bf-line);
  background: #fff;
  color: var(--bf-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.det-purchase__fav.active,
.det-purchase__fav:hover {
  color: var(--bf-orange);
  border-color: var(--bf-orange);
  background: var(--bf-orange-soft);
}

.det-purchase__compare {
  justify-content: center;
  min-height: 46px;
}

/* ── Sidebar cards ───────────────────────────────────────────── */

.det-side-card {
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  overflow: hidden;
}

.det-side-card__title,
.car-sidebar-form-title {
  margin: 0;
  padding: 18px 20px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--bf-black);
  display: flex;
  align-items: center;
  gap: 10px;
}

.det-side-card__title i,
.car-sidebar-form-title i {
  color: var(--bf-orange);
}

.det-inquiry-form,
.car-sidebar-inquiry-form {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.bf-detail-page .det-inquiry-form input,
body.bf-detail-page .det-inquiry-form textarea,
body.bf-detail-page .det-inquiry-form select,
body.bf-detail-page .inquiry-form input,
body.bf-detail-page .inquiry-form textarea,
body.bf-detail-page .inquiry-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.bf-detail-page .det-inquiry-form input:focus,
body.bf-detail-page .det-inquiry-form textarea:focus,
body.bf-detail-page .det-inquiry-form select:focus {
  outline: none;
  border-color: var(--bf-orange);
  box-shadow: 0 0 0 3px rgba(0, 71, 255, 0.15);
}

body.bf-detail-page .det-inquiry-form textarea {
  min-height: 96px;
  resize: vertical;
}

.det-phone-row,
.inquiry-phone-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
}

.det-form-error {
  margin: 0 20px 12px;
}

.det-reserve-body,
.car-reserve-body {
  padding: 0 20px 20px;
}

.car-reserve-copy,
.car-reserve-unavailable,
.car-reserve-note {
  font-size: 13px;
  color: var(--bf-muted);
  line-height: 1.55;
  margin: 0 0 14px;
}

.det-reserve-actions,
.car-reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.det-reserve-actions .rj-btn,
.car-reserve-actions .rj-btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.det-reserve-status,
.car-reserve-status {
  padding: 14px 16px;
  border-radius: var(--bf-radius-sm);
  background: var(--bf-bg-soft);
  border: 1px solid var(--bf-line);
}

.det-reserve-status strong {
  display: block;
  margin-bottom: 6px;
  color: var(--bf-black);
}

.det-reserve-status p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--bf-muted);
}

.car-reserve-status-pending {
  border-color: #fcd34d;
  background: #fffbeb;
}

.car-reserve-status-confirmed {
  border-color: #86efac;
  background: #f0fdf4;
}

.car-reserve-status-converted {
  border-color: #93c5fd;
  background: #eff6ff;
}

/* Export tools */
.det-tools {
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  overflow: hidden;
}

.det-tools summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--bf-black);
  display: flex;
  align-items: center;
  gap: 10px;
}

.det-tools summary::-webkit-details-marker {
  display: none;
}

.det-tools summary i {
  color: var(--bf-orange);
}

.det-tools summary span {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--bf-muted);
}

.det-tools__body {
  padding: 0 18px 18px;
  border-top: 1px solid var(--bf-line);
}

.det-tool-block h4 {
  margin: 16px 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bf-black);
}

.det-tool-result,
.tool-result {
  font-size: 13px;
  color: var(--bf-orange-d);
  font-weight: 600;
  min-height: 1.2em;
}

/* Trust badges */
.det-trust,
.car-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.det-trust div,
.car-trust-badges div {
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius-sm);
  padding: 12px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--bf-grey);
}

.det-trust i,
.car-trust-badges i {
  display: block;
  color: var(--bf-orange);
  font-size: 16px;
  margin-bottom: 6px;
}

/* ── Orange quick panel ──────────────────────────────────────── */

.det-quick-wrap {
  padding: 0 0 24px;
  background: var(--bf-page);
}

.det-quick-panel {
  background: linear-gradient(145deg, #0047FF 0%, #0038CC 55%, #002FA8 100%);
  padding: 22px 24px;
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.det-quick-panel h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.det-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.det-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 72px;
  padding: 16px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--bf-radius-sm);
  text-decoration: none !important;
  color: inherit !important;
}

a.det-quick-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.det-quick-item__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.det-quick-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.det-quick-item__text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.det-quick-item__text em {
  font-style: normal;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
}

/* ── Pillars ─────────────────────────────────────────────────── */

.det-pillars {
  padding: 0 0 24px;
  background: var(--bf-page);
}

.det-pillar-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  overflow: hidden;
}

.det-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-right: 1px solid var(--bf-line);
  text-decoration: none !important;
  color: inherit !important;
  transition: background 0.15s ease;
}

.det-pillar:last-child {
  border-right: none;
}

.det-pillar:hover {
  background: var(--bf-bg-soft);
}

.det-pillar > i {
  width: 40px;
  height: 40px;
  border-radius: var(--bf-radius-sm);
  background: var(--bf-orange-soft);
  color: var(--bf-orange);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.det-pillar span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.det-pillar strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--bf-black);
}

.det-pillar em {
  font-style: normal;
  font-size: 11px;
  color: var(--bf-muted);
}

/* ── Similar vehicles ────────────────────────────────────────── */

.det-similar {
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid var(--bf-line);
}

.det-similar__head {
  margin-bottom: 20px;
}

.det-similar__head .rj-kicker {
  color: var(--bf-orange);
  margin-bottom: 10px;
}

.det-similar__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

.det-similar__head p {
  margin: 0;
  font-size: 14px;
  color: var(--bf-muted);
}

.det-similar__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.det-unit {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius-sm);
  overflow: hidden;
  box-shadow: var(--bf-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.det-unit:hover {
  transform: translateY(-2px);
  box-shadow: var(--bf-shadow-md);
}

.det-unit__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bf-bg-soft);
}

.det-unit__img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.det-unit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.det-unit__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bf-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.det-unit__actions {
  position: absolute;
  top: 8px;
  right: 8px;
}

.det-unit__fav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bf-muted);
  cursor: pointer;
  box-shadow: var(--bf-shadow);
}

.det-unit__fav.active,
.det-unit__fav:hover {
  color: var(--bf-orange);
}

.det-unit__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.det-unit__stock {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--bf-muted);
}

.det-unit__title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.det-unit__title a {
  color: var(--bf-black) !important;
  text-decoration: none;
}

.det-unit__title a:hover {
  color: var(--bf-orange) !important;
}

.det-unit__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--bf-line);
}

.det-unit__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--bf-orange-d);
}

.det-unit__price small {
  font-size: 10px;
  font-weight: 600;
  color: var(--bf-muted);
}

.det-unit__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-blue) !important;
  text-decoration: none;
}

.det-unit__link:hover {
  color: var(--bf-orange) !important;
}

/* ── CTA ─────────────────────────────────────────────────────── */

.det-cta {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.det-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border-radius: var(--bf-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.det-cta__copy h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

.det-cta__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  max-width: 48ch;
  line-height: 1.6;
}

.det-cta__copy .rj-kicker {
  color: var(--bf-orange);
}

.det-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

body.bf-detail-page .det-cta .rj-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: transparent;
}

@media (max-width: 1100px) {
  .det-grid {
    grid-template-columns: 1fr;
  }

  .det-sidebar {
    position: static;
  }

  .det-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .det-similar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .det-pillar-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .det-pillar:nth-child(2) {
    border-right: none;
  }

  .det-pillar:nth-child(odd) {
    border-right: 1px solid var(--bf-line);
  }

  .det-pillar:nth-child(3),
  .det-pillar:nth-child(4) {
    border-top: 1px solid var(--bf-line);
  }

  .det-cta__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .det-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .det-spec-grid {
    grid-template-columns: 1fr;
  }

  .det-similar__grid {
    grid-template-columns: 1fr;
  }

  .det-phone-row {
    grid-template-columns: 1fr;
  }
}
