/* Kromar category product listing — filters + variant cards */

.kromar-listing {
  --listing-gap: 1.25rem;
}

.kromar-listing__filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

.kromar-listing__filters-bar h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #212121;
}

.kromar-listing__clear {
  border: 0;
  background: none;
  color: #c0392b;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.kromar-listing__filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--listing-gap);
  margin-bottom: 1.5rem;
}

@media (max-width: 1199px) {
  .kromar-listing__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .kromar-listing__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .kromar-listing__filters {
    grid-template-columns: 1fr;
  }
}

.kromar-filter-panel {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.kromar-filter-panel__title {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  margin: 0;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.kromar-filter-value-search-wrap {
  padding: 0 1rem 0.75rem;
  background: #fff;
}

.kromar-filter-value-search {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #cfd4dc;
  border-radius: 8px;
  font-size: 14px;
  color: #212529;
  background: #fff;
}

.kromar-filter-value-search::placeholder {
  color: #9ca3af;
}

.kromar-filter-value-search:focus {
  outline: none;
  border-color: #0a66cc;
  box-shadow: 0 0 0 2px rgba(10, 102, 204, 0.12);
}

.kromar-filter-search-empty {
  color: #6c757d;
  font-size: 13px;
  padding: 0.75rem 1rem !important;
  list-style: none;
}

.mobil-filtre-deger-search-wrap {
  padding: 12px 20px;
  border-bottom: 1px solid #e9ecef;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}

.mobil-filtre-deger-search {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #cfd4dc;
  border-radius: 8px;
  font-size: 15px;
  color: #212529;
  background: #fff;
}

.mobil-filtre-deger-search::placeholder {
  color: #9ca3af;
}

.mobil-filtre-deger-search:focus {
  outline: none;
  border-color: #0a66cc;
  box-shadow: 0 0 0 2px rgba(10, 102, 204, 0.12);
}

.mobil-filtre-deger-search-empty {
  padding: 24px 20px;
  text-align: center;
  color: #6c757d;
  font-size: 14px;
}

.kromar-filter-panel__body {
  overflow-y: auto;
  max-height: 220px;
  padding: 0.25rem 0;
}

.kromar-filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.35;
}

.kromar-filter-option:nth-child(odd) {
  background: #f7f7f7;
}

.kromar-filter-option:hover {
  color: #121416;
}

.kromar-filter-option input {
  flex-shrink: 0;
}

.kromar-listing__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--listing-gap);
}

@media (max-width: 1199px) {
  .kromar-listing__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .kromar-listing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .kromar-listing__grid {
    grid-template-columns: 1fr;
  }
}

.kromar-product-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kromar-product-card__image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  padding: 1rem;
}

.kromar-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kromar-product-card__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kromar-product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #6e7279;
  margin-bottom: 0.5rem;
}

.kromar-product-card__stars {
  color: #edd6b1;
  letter-spacing: 1px;
}

.kromar-product-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.75rem;
}

.kromar-product-card__title a {
  color: #212121;
  text-decoration: none;
}

.kromar-product-card__title a:hover {
  color: #000;
}

.kromar-product-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.25rem;
}

.kromar-product-card__price .adet-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6e7279;
}

.kromar-product-card__discount {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6e7279;
  margin: 0 0 0.85rem;
}

.kromar-product-card__actions {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: auto;
}

.kromar-qty-control {
  display: flex;
  align-items: stretch;
  border: 1px solid #ddd;
  border-radius: 0.35rem;
  overflow: hidden;
  background: #fff;
}

.kromar-qty-control__btn {
  width: 2rem;
  border: 0;
  background: #f7f7f7;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: #212121;
}

.kromar-qty-control__btn:hover {
  background: #eee;
}

.kromar-qty-control__input {
  width: 4.5rem;
  border: 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  -moz-appearance: textfield;
}

.kromar-qty-control__input::-webkit-outer-spin-button,
.kromar-qty-control__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.kromar-product-card__cart-btn {
  flex: 1;
  border: 0;
  border-radius: 0.35rem;
  background: #212121;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 3rem;
}

.kromar-product-card__cart-btn:hover {
  background: #000;
}

.kromar-product-card__cart-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.kromar-listing__status {
  text-align: center;
  padding: 2rem 1rem;
  color: #6e7279;
}

.kromar-listing__sentinel {
  height: 1px;
}

.kromar-selected-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.kromar-selected-filters:empty {
  display: none;
}

.kromar-selected-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #212121;
  color: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
}

.kromar-selected-filters__chip button {
  border: 0;
  background: none;
  color: #edd6b1;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* Kromar ürün kartı — kategori + arama ortak (eski tema quantity/cart) */
.custom-quantity-cart {
  display: flex;
  width: 100%;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.quantity-input {
  flex: 1;
  border: none;
  font-size: 15px;
  outline: none;
  padding: 0 8px;
  height: 100%;
}

.quantity-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #ccc;
  background: #fff;
  opacity: 1;
  visibility: visible;
}

.quantity-controls .arrow {
  padding: 0;
  font-size: 11px;
  border: none;
  background: #fff;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.quickview__cart--btn {
  background-color: #222;
  color: #fff;
  border: none;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ccc;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.quickview__cart--btn i {
  font-size: 16px;
  line-height: 1;
}

.product-list .current__sale__desc {
  color: #6e7279;
  font-weight: bold;
  font-size: 14px !important;
}

.product-list .product__card--title a {
  font-weight: 600 !important;
}

.product-list h3 {
  line-height: 1.4 !important;
}

.product-list .product__badge {
  background: none;
  width: 8rem;
}

/* Eski Kromar: stokta olmayan kart alt mesajı */
.product__card--content .stokta-yok {
  position: absolute;
  bottom: 50px;
  left: 1.5rem;
  right: 1.5rem;
}

.product__card--content .stokta-yok > .product__card--title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product__card--content .stock-text {
  font-size: 30px;
  color: #006fe9;
  display: flex;
  flex-direction: column;
}

.product__card--content .stock-text strong {
  font-weight: 700;
}

#urunListesiAlani.kromar-listing--loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

#filtreKutulari.kromar-filters--locked,
.mobil-filtre-container.kromar-filters--locked {
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

#filtreKutulari.kromar-filters--locked .filtre-checkbox:disabled {
  cursor: not-allowed;
}

@keyframes kromar-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Tam sayfa yükleme — arama ilk açılış */
.kromar-page-loading {
  padding: 40px 16px 56px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.kromar-page-loading__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 36px 28px 32px;
  margin: 0 auto 28px;
  max-width: 420px;
}

.kromar-page-loading__spinner {
  width: 46px;
  height: 46px;
  border: 3px solid #e5e7eb;
  border-top-color: #0a66cc;
  border-radius: 50%;
  animation: kromar-listing-spin 0.75s linear infinite;
  margin: 0 auto 18px;
}

.kromar-page-loading__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #212529;
  margin: 0 0 8px;
}

.kromar-page-loading__subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.kromar-page-loading__skeletons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 991px) {
  .kromar-page-loading__skeletons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .kromar-page-loading__skeletons {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Ürün kartı iskelet */
.kromar-product-skeleton {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  padding: 16px;
  height: 100%;
}

.kromar-product-skeleton__img,
.kromar-product-skeleton__line {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: kromar-skeleton-shimmer 1.35s ease-in-out infinite;
  border-radius: 8px;
}

.kromar-product-skeleton__img {
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}

.kromar-product-skeleton__line {
  height: 14px;
  margin-bottom: 10px;
}

.kromar-product-skeleton__line--short {
  width: 42%;
}

.kromar-product-skeleton__line--btn {
  width: 100%;
  height: 36px;
  margin-bottom: 0;
  margin-top: 6px;
  border-radius: 6px;
}

.kromar-listing-skeleton-grid {
  opacity: 0.95;
}

.kromar-listing-count {
  font-size: 17px;
  color: #333;
  margin: 0 auto 24px;
  width: fit-content;
}

.kromar-listing-count--loading {
  margin-bottom: 28px;
}

.kromar-listing-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 500;
}

.kromar-listing-status__spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid #d1d5db;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: kromar-listing-spin 0.75s linear infinite;
  flex-shrink: 0;
}

@keyframes kromar-listing-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 767.98px) {
  .kromar-listing-count {
    display: none;
  }
}

/* Ürün listesi sayfalama — blog.html / kategori ile uyumlu */
#kromar-listing-pagination.pagination__area {
  padding: 30px 0;
  margin-top: 30px;
  text-align: center;
}

#kromar-listing-pagination .kromar-listing-pagination__list.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
  --pg-font-size: 15px;
  --pg-pad-y: 10px;
  --pg-pad-x: 14px;
  --pg-radius: 10px;
}

.kromar-listing-pagination__list .page-link {
  font-size: var(--pg-font-size);
  color: #282828;
  background: #fff;
  border: 1px solid #dfe3e7;
  padding: var(--pg-pad-y) var(--pg-pad-x);
  border-radius: var(--pg-radius);
  line-height: 1;
  min-width: 40px;
  text-align: center;
  transition: background .15s, color .15s, box-shadow .15s, border-color .15s;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  text-decoration: none;
  cursor: pointer;
}

.kromar-listing-pagination__list .page-link:hover:not(:disabled) {
  background: #eef5ff;
  border-color: #c9d8f0;
  color: #282828;
}

.kromar-listing-pagination__list .page-item.active .page-link {
  background: #f8dfb8;
  border-color: #f8dfb8;
  color: #282828;
  box-shadow: 0 2px 8px rgba(10,102,204,.25);
}

.kromar-listing-pagination__list .page-item.disabled .page-link {
  color: #9aa3ad;
  background: #f5f7fa;
  border-color: #e5e9ef;
  cursor: not-allowed;
}

.kromar-listing-pagination__list .page-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10,102,204,.2);
}

.kromar-listing-pagination__jump {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.kromar-listing-pagination__jump-label {
  margin: 0;
  font-size: 15px;
  color: #4b5563;
}

.kromar-listing-pagination__jump-input {
  width: 72px;
  height: 40px;
  border: 1px solid #dfe3e7;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  color: #282828;
  background: #fff;
}

.kromar-listing-pagination__jump-input:focus {
  outline: none;
  border-color: #c9d8f0;
  box-shadow: 0 0 0 3px rgba(10,102,204,.2);
}

.kromar-listing-pagination__jump-btn {
  height: 40px;
  padding: 0 16px;
  border: 1px solid #282828;
  border-radius: 10px;
  background: #282828;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.kromar-listing-pagination__jump-btn:hover {
  background: #111;
  border-color: #111;
}

.kromar-listing-pagination__jump-total {
  font-size: 15px;
  color: #6b7280;
}

/* Arama sayfası — 1. Türünüzü Seçin */
.kromar-search-type-section {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 20px 20px 16px;
}

.kromar-search-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.kromar-search-type-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0a66cc;
  margin: 0;
}

.kromar-search-type-nav {
  display: flex;
  gap: 8px;
}

.kromar-search-type-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #dfe3e7;
  border-radius: 8px;
  background: #fff;
  color: #282828;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.kromar-search-type-arrow:hover {
  background: #f3f4f6;
}

.kromar-search-type-track-wrap {
  overflow: hidden;
}

.kromar-search-type-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.kromar-search-type-card {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .12s, box-shadow .12s, transform .08s;
}

.kromar-search-type-card:active {
  transform: scale(0.98);
}

.kromar-search-type-card:hover {
  border-color: #c9d8f0;
  box-shadow: 0 4px 14px rgba(10, 102, 204, 0.08);
}

.kromar-search-type-card.active {
  border-color: #0a66cc;
  box-shadow: 0 0 0 2px #0a66cc;
}

.kromar-search-type-card__img-wrap {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kromar-search-type-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kromar-search-type-card__label {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kromar-search-step-title .kromar-search-type-title {
  font-size: 1.15rem;
}

@media (max-width: 767px) {
  .kromar-search-type-card {
    flex-basis: 180px;
  }
  .kromar-search-type-title {
    font-size: 1.1rem;
  }
}

/* ── Kategori / arama filtreleri (desktop + mobil panel) ── */
.desktop-filtre-container {
  display: none;
}

.mobil-filtre-container {
  display: block;
}

@media (min-width: 992px) {
  .desktop-filtre-container {
    display: block !important;
  }

  .mobil-filtre-container {
    display: none !important;
  }
}

.mobil-filtre-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #282828;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.mobil-filtre-btn:hover {
  background: #0d1259;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

.mobil-filtre-btn svg {
  stroke: #fff;
}

.mobil-filtre-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobil-filtre-panel.active {
  transform: translateX(0);
}

.mobil-filtre-ana,
.mobil-filtre-alt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.mobil-filtre-alt {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobil-filtre-alt.active {
  transform: translateX(0);
}

.mobil-filtre-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.mobil-filtre-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobil-filtre-header-left svg {
  stroke: #1a237e;
  fill: none;
}

.mobil-filtre-header-left strong {
  font-size: 18px;
  color: #1a237e;
}

.mobil-filtre-header-left small {
  display: block;
  font-size: 12px;
  color: #6c757d;
}

.mobil-filtre-kapat {
  background: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
}

.mobil-filtre-kapat svg {
  stroke: #333;
}

.mobil-filtre-liste {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.mobil-filtre-grup-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: background 0.2s;
}

.mobil-filtre-grup-item:hover {
  background: #f8f9fa;
}

.mobil-filtre-grup-bilgi {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mobil-filtre-grup-adi {
  font-size: 16px;
  font-weight: 500;
  color: #212529;
}

.mobil-filtre-grup-secili {
  font-size: 13px;
  color: #1a237e;
  font-weight: 500;
}

.mobil-filtre-grup-item svg {
  stroke: #adb5bd;
}

.mobil-filtre-footer,
.mobil-filtre-footer-alt {
  padding: 15px 20px;
  background: #fff;
  border-top: 1px solid #e9ecef;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.mobil-filtre-footer-alt {
  display: flex;
  gap: 10px;
}

.mobil-filtre-sonuc-btn {
  width: 100%;
  background: #1a237e;
  color: #fff;
  border: none;
  padding: 16px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.mobil-filtre-sonuc-btn:hover {
  background: #0d1259;
}

.mobil-filtre-geri-btn {
  flex: 0 0 35%;
  background: #fff;
  color: #212529;
  border: 2px solid #dee2e6;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.mobil-filtre-geri-btn:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}

.mobil-filtre-footer-alt .mobil-filtre-sonuc-btn {
  flex: 1;
}

.mobil-filtre-degerler {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.mobil-filtre-deger-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: background 0.2s;
}

.mobil-filtre-deger-item:hover {
  background: #f8f9fa;
}

.mobil-filtre-deger-item.selected {
  background: #e8eaf6;
  border-left: 3px solid #1a237e;
}

.mobil-filtre-deger-bilgi {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobil-filtre-deger-adi {
  font-size: 15px;
  color: #212529;
}

.mobil-filtre-deger-sayi {
  font-size: 13px;
  color: #6c757d;
}

.mobil-filtre-deger-check {
  width: 22px;
  height: 22px;
  border: 2px solid #dee2e6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mobil-filtre-deger-item.selected .mobil-filtre-deger-check {
  background: #1a237e;
  border-color: #1a237e;
}

.mobil-filtre-deger-check svg {
  display: none;
  stroke: #fff;
  width: 14px;
  height: 14px;
}

.mobil-filtre-deger-item.selected .mobil-filtre-deger-check svg {
  display: block;
}

.secili-filtreler-mobil {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.secili-filtre-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8dfb8;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.secili-filtre-badge .kaldir {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.secili-filtre-badge .kaldir:hover {
  opacity: 1;
}
