:root {
  --main-orange: var(--pv-color-primary, #F99B27);
  --text-dark: var(--pv-color-text, #222);
  --text-light: var(--pv-color-text-muted, #666);
  --border: var(--pv-color-border-soft, #e6ecf4);
  --bg-light: var(--pv-color-bg-soft, #f3f5f8);
}

.yq-quota-badge {
  margin: 0;
  padding: 6px 10px;
  border: 1px solid var(--main-orange);
  border-radius: 14px;
  background: var(--main-orange);
  color: #ffffff;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.yq-quota-badge__item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.yq-quota-badge__label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.yq-quota-badge__item strong {
  color: #ffffff;
  font-size: 14px;
}

.yq-page-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--main-orange);
  background: var(--main-orange);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  transition: all .2s ease;
  float: left;
  margin-right: 15px;
}

.back-btn:hover {
  background: var(--pv-color-primary-hover);
  border-color: var(--pv-color-primary-hover);
}

.back-btn__icon {
  width: 18px;
  height: 18px;
}

.back-btn__icon path {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.back-btn__text {
  line-height: 1;
}

.yq-confirm-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.yq-confirm-modal__content {
  width: min(460px, 96vw);
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 18px 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.yq-confirm-modal__content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--text-dark);
}

.yq-confirm-modal__content p {
  margin: 0;
  color: var(--text-light);
}

.yq-confirm-modal__actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.yq-confirm-modal__btn {
  border: 0;
  border-radius: 8px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 600;
}

.yq-confirm-modal__btn--cancel {
  background: #eceff3;
  color: #333;
}

.yq-confirm-modal__btn--confirm {
  background: var(--main-orange);
  color: #fff;
}

.yq-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px 15px;
  font-family: var(--pv-font-sans, "Inter", Arial, sans-serif);
}

.yq-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.yq-sub {
  color: var(--text-light);
  margin-bottom: 25px;
}

.yq-page-heading .yq-sub {
  margin-bottom: 0;
}

/* TAB */
.yq-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 25px;
  justify-content: center;
}

.yq-tab {
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-light);
  transition: .2s;
  border-bottom: 3px solid transparent;
}

.yq-tab.active {
  color: var(--main-orange);
  border-bottom: 3px solid var(--main-orange);
}

.yq-tab-content {
  display: none;
}

  .yq-tab-content.active {
    display: flex !important;
    justify-content: center;
  }

/* KART */
.yq-card {
  background: white;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 8px;
  width: 500px;
}

.yq-input-group {
  margin-bottom: 15px;
}

.yq-input-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  color: var(--text-dark);
}

.yq-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  transition: .2s;
  max-width: 550px !important;
  height: 43px;
  padding: 8px 16px;
  border-radius: 7px;
}

.yq-select {
  max-width: 550px !important;
}

.yq-input:focus {
  border-color: var(--main-orange);
}

.yq-btn {
  width: 100%;
  padding: 12px;
  background: var(--main-orange);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: .2s;
  max-width: 200px;
}

.yq-btn:hover {
  opacity: .85;
}

/* MARKA LİSTESİ */
.yq-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.yq-brand-item {
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: .2s;
}

.yq-brand-item:hover {
  background: var(--main-orange);
  color: white;
  border-color: var(--main-orange);
}

/* LOADING */
#yqLoader {
  display: none;
  margin-top: 15px;
  text-align: center;
  color: var(--text-light);
}

@media (max-width: 600px) {
  .yq-page-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .yq-title {
    font-size: 22px;
  }
}


/* Yeni ekran */
.yq-details.hidden {
  display: none;
}

.yq-details {
  padding: 20px;
  animation: fadeIn .3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yq-details-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.yq-back-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: .2s;
}

.yq-back-btn:hover {
  background: var(--pv-color-bg-soft);
}

.yq-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.yq-panel {
  border: 1px solid var(--pv-color-border);
  padding: 20px;
  border-radius: 14px;
  background: var(--pv-color-white);
}

.yq-panel h3 {
  margin-bottom: 15px;
}


.yq-btn {
  width: 100%;
  padding: 12px;
  background: var(--pv-color-primary);
  color: var(--pv-color-white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: .25s;
}

.yq-btn:hover {
  opacity: .85;
}


:root {
  --oem-primary-color: var(--pv-color-primary);
  --oem-text-color: var(--pv-color-text-secondary);
  --oem-light-gray: var(--pv-color-bg-soft, #f3f5f8);
  --oem-border-color: var(--pv-color-border, #d6deea);
  --oem-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


/* Kapsayıcı Stil */
.oem-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Başlık Alanı */
.oem-header {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--oem-primary-color);
  padding-bottom: 10px;
}

.oem-title {
  font-size: 1.8rem;
  color: var(--oem-primary-color);
  font-weight: 600;
}

.oem-subtitle {
  font-size: 13px;
  color: var(--pv-color-text-muted);
  margin-top: 5px;
}

/* Filtre Seçim Alanı */
.oem-filter-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 15px;
  background-color: var(--pv-color-white);
  border: 1px solid var(--oem-border-color);
  border-radius: 6px;
}

.oem-select-group {
  flex: 1 1 200px; /* Esneklik ve minimum genişlik */
  display: flex;
  flex-direction: column;
}

.oem-select-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--oem-text-color);
}

.oem-select {
  border: 1px solid var(--oem-border-color);
  background-color: var(--pv-color-white);
  min-width: 150px;
  cursor: pointer;
  transition: border-color 0.2s;
  height: 43px;
  padding: 8px 16px;
  border-radius: 7px;
}

.oem-select:focus {
  border-color: var(--oem-primary-color);
  outline: none;
}

/* Sonuçlar Alanı */
.oem-results-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Araç Grupları (Collapse Yapısı Başlığı) */
.oem-vehicle-group {
  background-color: var(--pv-color-white);
  border: 1px solid var(--oem-border-color);
  border-radius: 6px;
  box-shadow: var(--oem-shadow);
  overflow: hidden;
}

.oem-group-header {
  padding: 15px;
  background-color: var(--oem-light-gray);
  border-bottom: 1px solid var(--oem-border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.oem-group-header:hover {
  background-color: var(--pv-color-bg-soft);
}

.oem-group-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--oem-text-color);
}

.oem-toggle-icon {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--oem-primary-color);
  transition: transform 0.2s;
}

.oem-group-header.oem-active .oem-toggle-icon {
  transform: rotate(45deg);
}

/* Araç Detay Tablosu */
.oem-group-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.oem-group-content.oem-open {
  max-height: 2000px; /* Yüksekliği dinamik olarak ayarla */
  transition: max-height 0.5s ease-in;
}

.oem-vehicle-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.oem-vehicle-table th, .oem-vehicle-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--pv-color-border-soft, #e6ecf4);
  cursor: pointer;
}

.oem-vehicle-table th {
  background-color: var(--oem-primary-color);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.oem-vehicle-table tr:nth-child(even) {
  background-color: var(--pv-color-bg-soft);
}

.oem-vehicle-table tr:hover {
  background-color: var(--pv-color-bg-soft);
}

/* Yükleme Göstergesi */
.oem-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.oem-spinner {
  border: 4px solid var(--pv-color-bg-soft);
  border-top: 4px solid var(--oem-primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .oem-container {
    padding: 10px;
  }

  .oem-filter-section {
    flex-direction: column;
    gap: 15px;
  }

  .oem-select-group {
    flex: 1 1 100%;
  }

  .oem-vehicle-table {
    border: none;
  }

  .oem-vehicle-table thead {
    display: none;
  }

  .oem-vehicle-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid var(--oem-border-color);
    border-radius: 6px;
    overflow: hidden;
  }

  .oem-vehicle-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--pv-color-border-soft, #e6ecf4);
    padding: 10px 15px;
  }

  /* Etiketleri kalın yap */
  .oem-vehicle-table td:before {
    content: attr(data-label);
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 10px;
    color: var(--oem-primary-color);
    flex-shrink: 0;
  }

  .oem-vehicle-table tr:last-child {
    border-bottom: none;
  }
}


/* Genel Stil ve Değişkenler */
:root {
  --oem-primary-color: var(--pv-color-primary);
  --oem-text-color: var(--pv-color-text-secondary);
  --oem-light-gray: var(--pv-color-bg-soft, #f3f5f8);
  --oem-border-color: var(--pv-color-border, #d6deea);
  --oem-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


/* Başlık Alanı */
.oem-header {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--oem-primary-color);
  padding-bottom: 10px;
}

.oem-title {
  font-size: 1.8rem;
  color: var(--oem-primary-color);
  font-weight: 600;
}

.oem-subtitle {
  font-size: 13px;
  color: var(--pv-color-text-muted);
  margin-top: 5px;
}

/* Ana Parça Detay Alanı (Kibar Çerçeve) */
.oem-detail-header {
  background-color: var(--pv-color-white, #ffffff);
  border: 1px solid var(--pv-color-border-soft);
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 25px;
  font-size: 1.1rem;
  display: flex;
  gap: 10px;
}

.oem-part-label {
  font-size: 14px;
  align-items: center;
  display: flex;
}

.oem-part-name {
  font-size: 14px;
  align-items: center;
  display: flex;
}

/* Tablo Stili */
.oem-table-container {
  overflow-x: auto;
}

.oem-reference-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 600px; /* Mobil dikeyde kaydırma için */
}

.oem-reference-table thead th {
  background-color: var(--oem-primary-color);
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.oem-reference-table tbody td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--pv-color-bg-soft);
  vertical-align: middle;
}

.oem-reference-table tbody tr {
  transition: background-color 0.2s;
  cursor: default; /* Mobil için varsayılan cursor */
}

/* Sadece aksiyon linki olan satırlar tıklanabilir olmalı */
.oem-reference-table tbody tr.oem-clickable-row {
  cursor: pointer;
}

.oem-reference-table tbody tr.oem-clickable-row:hover {
  background-color: var(--pv-color-primary-soft); /* Hafif bir vurgu */
  box-shadow: inset 3px 0 0 0 var(--oem-primary-color);
}

/* Aksiyon Menüsü Stili (Tablo İçinde) */
.oem-action-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oem-action-list li {
  margin-bottom: 5px;
}

.oem-action-list a {
  color: var(--pv-color-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  padding: 3px 0;
  transition: color 0.2s;
}

.oem-action-list a:hover {
  color: var(--oem-primary-color);
}

.oem-action-list i {
  margin-right: 6px;
  width: 15px;
  text-align: center;
  color: var(--pv-color-text-light);
}

.oem-action-list a:hover i {
  color: var(--oem-primary-color);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .oem-part-references-module {
    padding: 10px;
  }

  .oem-reference-table {
    border: 0;
    min-width: unset;
  }

  .oem-reference-table thead {
    display: none;
  }

  .oem-reference-table tbody,
  .oem-reference-table tr,
  .oem-reference-table td {
    display: block;
    width: 100%;
  }

  .oem-reference-table tr {
    margin-bottom: 15px;
    border: 1px solid var(--pv-color-border-soft);
    border-radius: 6px;
    box-shadow: var(--oem-shadow);
  }

  .oem-reference-table tbody tr.oem-clickable-row:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .oem-reference-table td {
    border-bottom: 1px solid var(--pv-color-border-soft, #e6ecf4);
    text-align: right;
    padding: 8px 15px;
    position: relative;
  }

  .oem-reference-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--pv-color-text-muted);
    font-size: 0.8rem;
  }

  .oem-col-actions {
    border-bottom: none !important;
    background-color: var(--pv-color-bg-soft);
    border-top: 1px dashed var(--pv-color-border-soft, #e6ecf4);
  }

  .oem-action-list {
    text-align: left;
    margin-top: 30px;
  }

  .oem-action-list a {
    font-size: 0.95rem;
  }
}


/* Genel Stil ve Değişkenler */
:root {
  --fv-primary-color: var(--pv-color-primary);
  --fv-text-color: var(--pv-color-text-secondary);
  --fv-light-gray: var(--pv-color-bg-soft, #f3f5f8);
  --fv-border-color: var(--pv-color-border, #d6deea);
  --fv-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.fv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Başlık Alanı */
.fv-header {
  margin-bottom: 25px;
  border-bottom: 2px solid var(--fv-primary-color);
  padding-bottom: 10px;
}

.fv-title {
  font-size: 1.8rem;
  color: var(--fv-primary-color);
  font-weight: 600;
}

.fv-subtitle {
  font-size: 13px;
  color: var(--pv-color-text-muted);
  margin-top: 5px;
}

/* Tablo Stili */
.fv-table-container {
  overflow-x: auto;
}

.fv-vehicle-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.fv-vehicle-table thead th {
  background-color: var(--fv-primary-color);
  color: #fff;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--pv-color-primary-hover);
}

.fv-vehicle-table tbody td {
  padding: 15px;
  border-bottom: 1px solid var(--pv-color-bg-soft);
  vertical-align: top;
}

.fv-vehicle-table tbody tr {
  transition: background-color 0.2s;
  cursor: pointer;
}

.fv-vehicle-table tbody tr:hover {
  background-color: var(--pv-color-primary-soft); /* Hafif bir vurgu */
  box-shadow: inset 3px 0 0 0 var(--fv-primary-color);
}

.fv-col-action {
  width: 80px;
  text-align: center;
}

.fv-col-action i {
  color: var(--pv-color-text-muted);
  transition: color 0.2s;
}

.fv-vehicle-table tbody tr:hover .fv-col-action i {
  color: var(--fv-primary-color);
}

.fv-col-name strong {
  display: block;
  font-size: 13px;
  color: var(--fv-text-color);
}

.fv-col-name span {
  display: block;
  font-size: 13px;
  color: var(--pv-color-text-light);
}

/* --- MODAL STİLLERİ --- */
.fv-modal {
  display: none; /* Varsayılan olarak gizli */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.fv-modal-content {
  background-color: var(--pv-color-white, #ffffff);
  margin: 2% auto; /* Ortalamak için */
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 800px;
}

.fv-modal-header {
  padding: 15px 25px;
  background-color: var(--fv-primary-color);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.fv-modal-footer {
  padding: 15px 25px;
  background-color: white;
  color: var(--pv-color-text-secondary);
  display: flex;
  justify-content: end;
  align-items: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top: 1px solid var(--pv-color-border, #d6deea);
}

.fv-modal-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff !important;
}

.fv-close-btn {
  padding: 11px 19px;
  background-color: var(--pv-color-primary);
  color: var(--pv-color-white);
  border: none;
  border-radius: 7px;
  font-size: 13px;
  cursor: pointer;
  min-width: 122px;
  text-align: center;
  margin-right: 5px;
}

.fv-close-btn:hover {
  padding: 11px 19px;
  background-color: var(--pv-color-primary-hover);
  color: var(--pv-color-white);
  border: none;
  border-radius: 7px;
  font-size: 13px;
  cursor: pointer;
  min-width: 122px;
  text-align: center;
  margin-right: 5px;
}


.fv-close-btn:hover,
.fv-close-btn:focus {
  opacity: 1;
}

.fv-modal-body {
  padding: 25px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Detay Grupları */
.fv-detail-group {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pv-color-border-soft, #e6ecf4);
}

.fv-group-heading {
  font-size: 1.1rem;
  color: var(--fv-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.fv-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  font-size: 0.9rem;
}

.fv-detail-item {
  padding: 10px;
  background-color: var(--fv-light-gray);
  border-radius: 4px;
}

.fv-detail-item strong {
  display: block;
  color: var(--pv-color-text-muted);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.fv-detail-item span {
  display: block;
  margin-top: 4px;
  color: var(--fv-text-color);
  font-size: 12px
}

.fv-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  font-size: 0.9rem;
}

.fv-feature-list li {
  padding: 8px;
  border: 1px solid var(--pv-color-border-soft);
  background-color: var(--pv-color-bg-soft);
  border-left: 3px solid var(--pv-color-border-strong);
  border-radius: 4px;
}

.fv-feature-list li:hover {
  border-left-color: var(--fv-primary-color);
}


/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .fv-modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .fv-table-container {
    overflow-x: hidden;
  }

  .fv-vehicle-table {
    min-width: unset;
    width: 100%;
  }

  .fv-vehicle-table thead {
    display: none;
  }

  .fv-vehicle-table tbody,
  .fv-vehicle-table tr,
  .fv-vehicle-table td {
    display: block;
    width: 100%;
  }

  .fv-vehicle-table tr {
    margin-bottom: 15px;
    border: 1px solid var(--pv-color-border-soft);
    border-radius: 6px;
    box-shadow: var(--fv-shadow);
  }

  .fv-vehicle-table tbody tr:hover {
    transform: scale(1.01);
  }

  .fv-vehicle-table td {
    border-bottom: 1px solid var(--pv-color-border-soft, #e6ecf4);
    text-align: right;
    padding: 10px 15px;
    position: relative;
  }

  .fv-vehicle-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--pv-color-text-muted);
    font-size: 0.8rem;
  }

  .fv-col-action {
    text-align: center;
    border-bottom: none !important;
    background-color: var(--pv-color-bg-soft);
  }
}

#fv-vehicle-table-body strong {
  font-size: 13px;
}

#fv-vehicle-table-body span {
  font-size: 13px;
  margin-bottom: 10px;
}


.fv-modal-close-btn {
  padding: 9px;
  background-color: var(--pv-color-primary-hover);
  color: var(--pv-color-white);
  border: none;
  border-radius: 52px;
  font-size: 22px;
  cursor: pointer;
  min-width: 45px;
  text-align: center;
  margin-right: 5px;
}

.fv-modal-close-btn:hover {
  background-color: var(--pv-color-primary-hover);
}


.fv-modal-close-btn:hover,
.fv-modal-close-btn:focus {
  opacity: 1;
}


.yq-field {
  margin-top: 10px;
}

/* --- MODAL STİLLERİ --- */
.fv-modal {
  display: none; /* Varsayılan olarak gizli */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.fv-modal-content {
  background-color: #fefefe;
  margin: 2% auto; /* Ortalamak için */
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 1200px;
}

.fv-modal-header {
  padding: 15px 25px;
  background-color: var(--fv-primary-color);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.fv-modal-footer {
  padding: 15px 25px;
  background-color: white;
  color: #444;
  display: flex;
  justify-content: end;
  align-items: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top: 1px solid #ddd;
}

.fv-modal-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff !important;
}

.fv-close-btn {
  padding: 11px 19px;
  background-color: #F99B27;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  cursor: pointer;
  min-width: 122px;
  text-align: center;
  margin-right: 5px;
}

.fv-close-btn:hover {
  padding: 11px 19px;
  background-color: #e98306;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  cursor: pointer;
  min-width: 122px;
  text-align: center;
  margin-right: 5px;
}

.fv-close-btn:hover,
.fv-close-btn:focus {
  opacity: 1;
}

.fv-modal-body {
  padding: 25px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Detay Grupları */
.fv-detail-group {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.fv-group-heading {
  font-size: 1.1rem;
  color: var(--fv-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.fv-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  font-size: 0.9rem;
}

.fv-detail-item {
  padding: 10px;
  background-color: var(--fv-light-gray);
  border-radius: 4px;
}

.fv-detail-item strong {
  display: block;
  color: #666;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.fv-detail-item span {
  display: block;
  margin-top: 4px;
  color: var(--fv-text-color);
  font-size: 12px
}

.fv-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  font-size: 0.9rem;
}

.fv-feature-list li {
  padding: 8px;
  border: 1px solid #eee;
  background-color: #fafafa;
  border-left: 3px solid #ccc;
  border-radius: 4px;
}

.fv-feature-list li:hover {
  border-left-color: var(--fv-primary-color);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .fv-modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .fv-table-container {
    overflow-x: hidden;
  }

  .fv-vehicle-table {
    min-width: unset;
    width: 100%;
  }

  .fv-vehicle-table thead {
    display: none;
  }

  .fv-vehicle-table tbody,
  .fv-vehicle-table tr,
  .fv-vehicle-table td {
    display: block;
    width: 100%;
  }

  .fv-vehicle-table tr {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: var(--fv-shadow);
  }

  .fv-vehicle-table tbody tr:hover {
    transform: scale(1.01);
  }

    .fv-vehicle-table td {
      border-bottom: 1px solid #eee;
      padding: 10px 15px;
      position: relative;
      text-align: left !important;
    }

  .fv-vehicle-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    font-size: 0.8rem;
  }

  .fv-col-action {
    text-align: center;
    border-bottom: none !important;
    background-color: #fcfcfc;
  }
}

#fv-vehicle-table-body strong {
  font-size: 13px;
}

#fv-vehicle-table-body span {
  font-size: 13px;
  margin-bottom: 10px;
}

.fv-modal-close-btn {
  padding: 9px;
  background-color: #e98306;
  color: #fff;
  border: none;
  border-radius: 52px;
  font-size: 22px;
  cursor: pointer;
  min-width: 45px;
  text-align: center;
  margin-right: 5px;
}

.fv-modal-close-btn:hover {
  background-color: #d57500;
}


.fv-modal-close-btn:hover,
.fv-modal-close-btn:focus {
  opacity: 1;
}

:root {
  --main-orange: #F99B27;
  --text-dark: #222;
  --text-light: #666;
  --border: #e5e5e5;
  --bg-light: #fafafa;
}

.yq-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px 15px;
  font-family: "Inter", sans-serif;
}

.yq-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.yq-sub {
  color: var(--text-light);
  margin-bottom: 25px;
}

/* TAB */
.yq-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 25px;
}

.yq-tab {
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-light);
  transition: .2s;
  border-bottom: 3px solid transparent;
}

.yq-tab.active {
  color: var(--main-orange);
  border-bottom: 3px solid var(--main-orange);
}

.yq-tab-content {
  display: none;
}

.yq-tab-content.active {
  display: block;
}

/* KART */
.yq-card {
  background: white;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 8px;
}

.yq-input-group {
  margin-bottom: 15px;
}

.yq-input-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  color: var(--text-dark);
}

.yq-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  transition: .2s;
  max-width: 550px !important;
  height: 43px;
  padding: 8px 16px;
  border-radius: 7px;
}

.yq-select {
  max-width: 550px !important;
}

.yq-input:focus {
  border-color: var(--main-orange);
}

.yq-btn {
  width: 100%;
  padding: 12px;
  background: var(--main-orange);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: .2s;
}

.yq-btn:hover {
  opacity: .85;
}

/* MARKA LİSTESİ */
.yq-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.yq-brand-item {
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: .2s;
}

.yq-brand-item:hover {
  background: var(--main-orange);
  color: white;
  border-color: var(--main-orange);
}

/* LOADING */
#yqLoader {
  display: none;
  margin-top: 15px;
  text-align: center;
  color: var(--text-light);
}

@media(max-width: 600px) {
  .yq-title {
    font-size: 22px;
  }
}

/* Yeni ekran */
.yq-details.hidden {
  display: none;
}

.yq-details {
  padding: 20px;
  animation: fadeIn .3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yq-details-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.yq-back-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: .2s;
}

.yq-back-btn:hover {
  background: #eee;
}

.yq-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 25px;
}

.yq-panel {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
}

.yq-panel h3 {
  margin-bottom: 15px;
}



.yq-btn {
  width: 100%;
  padding: 12px;
  background: #f99b27;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: .25s;
}

.yq-btn:hover {
  opacity: .85;
}














:root {
  --oem-primary-color: #f99b27;
  --oem-highlight-color: #f99b27;
  --oem-highlight-bg: rgba(249, 155, 39, 0.2);
  --oem-selected-bg: #ffe4b2; /* Daha koyu bir seçili arka plan */
}

/* Yükleme Göstergesi */
.oem-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.oem-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--oem-primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}