/* =========================================================
   BKS MFP — FINAL FRONTEND.CSS
   Mobil filtre = ortada açılan modal panel
   ========================================================= */

.bks-mfp {
  --page-width: 1920px;
  --page-max: 1205px; /* 267 + 29 + 909 */
  --sidebar-w: 267px;
  --sidebar-gap: 29px;
  --content-w: 909px;

  --font-main: "Rajdhani", sans-serif;

  --text: #333333;
  --text-soft: #666666;
  --text-muted: #8A8A8A;

  --line: #E5E5E5;
  --line-soft: #F5F5F5;
  --surface: #FFFFFF;
  --surface-soft: #FAFAFA;

  --orange-1: #EE751C;
  --orange-2: #FF9241;
  --orange: #EF8D43;
  --orange-soft: #FFF5EE;
  --orange-border: #F2B287;

  --red: #EF5B73;
  --red-border: #F3A1AF;
  --blue: #4B7BEC;
  --blue-border: #ADC4FF;

  --grad-orange: linear-gradient(239.76deg, #EE751C 1.06%, #FF9241 98.94%);

  --r-8: 8px;
  --r-10: 10px;
  --r-12: 12px;
  --r-16: 16px;
  --r-18: 18px;
  --r-20: 20px;
  --r-24: 24px;
  --r-pill: 999px;

  --tr-fast: 180ms ease;
  --tr: 260ms ease;
}


body.bks-mfp-body-lock {
  overflow: hidden;
  touch-action: none;
}

/* mobile full sheet helpers */
.bks-mfp .bks-mobile-selected {
  display: none;
}

.bks-mfp .bks-mobile-selected.is-empty {
  display: none !important;
}

.bks-mfp .bks-mobile-apply-wrap {
  display: none;
}


.bks-mfp *,
.bks-mfp *::before,
.bks-mfp *::after {
  box-sizing: border-box;
}

.bks-mfp img {
  display: block;
  max-width: 100%;
}

.bks-mfp button,
.bks-mfp input,
.bks-mfp select,
.bks-mfp textarea {
  font: inherit;
}

.bks-mfp,
.bks-mfp * {
  font-family: var(--font-main);
}

body.bks-mfp-body-lock {
  overflow: hidden;
  touch-action: none;
}

/* =========================
   PAGE / LAYOUT
   ========================= */

.bks-mfp .bks-page {
  width: 100%;
  max-width: calc(var(--page-max) + 48px);
  margin: 0 auto;
  padding: 0 24px;
}

.bks-mfp .bks-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, var(--content-w));
  gap: var(--sidebar-gap);
  align-items: start;
}

.bks-mfp .bks-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
}

.bks-mfp .bks-sidebar-inner {
  width: 100%;
  padding-right: 24px;
  border-right: 1px solid var(--line-soft);
}

.bks-mfp .bks-content {
  width: 100%;
  min-width: 0;
}

/* =========================
   SIDEBAR HEADER
   ========================= */

.bks-mfp .bks-top-filter-row {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 8px 16px 8px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

/* =========================
   FILTER BLOCKS
   ========================= */

.bks-mfp .bks-filter-block + .bks-filter-block {
  margin-top: 16px;
}

.bks-mfp .bks-filter-head {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  user-select: none;
}

.bks-mfp .bks-filter-head h5,
.bks-mfp .bks-filter-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.bks-mfp .bks-arrow {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 16px;
  transition: transform var(--tr-fast);
}

.bks-mfp .bks-arrow::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-right: 1.5px solid var(--text);
  border-bottom: 1.5px solid var(--text);
  transform: rotate(45deg);
  transform-origin: center;
}

.bks-mfp .bks-is-closed .bks-arrow {
  transform: rotate(180deg);
}

.bks-mfp .bks-is-closed .bks-filter-body {
  display: none;
}

.bks-mfp .bks-tree,
.bks-mfp .bks-feature-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.bks-mfp .bks-tree > li + li,
.bks-mfp .bks-feature-list > li + li {
  margin-top: 10px;
}

.bks-mfp .bks-row,
.bks-mfp .bks-sub-row,
.bks-mfp .bks-feature-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  line-height: 1.4;
}

.bks-mfp .bks-row {
  font-size: 14px;
  font-weight: 600;
}

.bks-mfp .bks-sub-row,
.bks-mfp .bks-feature-row {
  font-size: 14px;
  font-weight: 400;
}

.bks-mfp .bks-sub-row {
  padding-left: 22px;
  margin-top: 4px;
}

.bks-mfp .bks-check {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.bks-mfp .bks-check input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.bks-mfp .bks-check span {
  position: absolute;
  inset: 0;
  border: 0.6px solid var(--text);
  border-radius: 3px;
  background: #fff;
  transition: all var(--tr-fast);
}

.bks-mfp .bks-check input:checked + span {
  border-color: transparent;
  background: var(--grad-orange);
}

.bks-mfp .bks-check input:checked + span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1.2px;
  width: 4.8px;
  height: 3px;
  border-left: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: rotate(-45deg);
}

/* =========================
   MOBILE FILTER BUTTON
   ========================= */

.bks-mfp .bks-mobile-filter-btn {
  display: none;
  width: 100%;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-8);
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

/* =========================
   TOPBAR
   ========================= */

.bks-mfp .bks-topbar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin-bottom: 24px;
}

.bks-mfp .bks-topbar-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}



.bks-mfp .bks-topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
}

.bks-mfp .bks-active-label,
.bks-mfp .bks-topbar-right,
.bks-mfp .bks-sort-label {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
    /*width: 100%;*/
}
.bks-result-text{
margin-top: 18px;
color:  #333;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 22.4px */
}


.bks-mfp .bks-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.bks-mfp .bks-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 14px;
  border: 0;
  border-radius: 16px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.bks-mfp .bks-pill button,
.bks-mfp .bks-pill .bks-pill-icon,
.bks-mfp .bks-pill svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.bks-mfp .bks-pill button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.bks-mfp .bks-pill button:hover {
  opacity: .88;
}

.bks-mfp .bks-sort-box {
  position: relative;
  width: 201px;
  flex: 0 0 201px;
}

.bks-mfp .bks-sort-box select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 42px;
  padding: 10px 42px 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-8);
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  outline: none;
  cursor: pointer;
}

.bks-mfp .bks-sort-box::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 1.5px solid var(--text);
  border-bottom: 1.5px solid var(--text);
  transform: rotate(45deg);
  pointer-events: none;
}

/* =========================
   GRID
   ========================= */

.bks-mfp .bks-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.bks-mfp .bks-is-hidden {
  display: none !important;
}

/* =========================
   CARD
   ========================= */

.bks-mfp .bks-card {
  min-width: 0;
  border-radius: 16px;
  transition: transform var(--tr-fast), opacity var(--tr-fast);
}

.bks-mfp .bks-card:hover {
  transform: translateY(-3px);
}

.bks-mfp .bks-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.bks-mfp .bks-card-image {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #D3D3D3;
  aspect-ratio: 442.5 / 287;
  margin-bottom: 0;
}

.bks-mfp .bks-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bks-mfp .bks-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.bks-mfp .bks-featured {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 6px 12px;
  border-radius: 16px;
  background: rgba(238, 117, 28, 0.08);
  gap: 6px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--orange-1);
}

.bks-mfp .bks-featured,
.bks-mfp .bks-featured span,
.bks-mfp .bks-star {
  background-image: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bks-mfp .bks-star {
  font-size: 12px;
  line-height: 1;
}

.bks-mfp .bks-card-title {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.bks-mfp .bks-card-description {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.bks-mfp .bks-card-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.bks-mfp .bks-tag {
display: flex;
padding: 6px 12px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
    align-self: stretch;
text-align: center;
font-family: Rajdhani;
font-size: 11px;
font-style: normal;
font-weight: 600;
line-height: 140%; /* 15.4px */
    background: var(--gradient-orange, linear-gradient(240deg, #EE751C 1.06%, #FF9241 98.94%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.bks-mfp .bks-tag-orange {
  color: var(--orange-1);
border-radius: 16px;
border: 1px solid var(--orange-1, #EE751C);
    
}

.bks-mfp .bks-tag-red {
  color: var(--orange-1);
border-radius: 16px;
border: 1px solid var(--orange-1, #EE751C);
}

.bks-mfp .bks-tag-blue {
  color: var(--orange-1);
border-radius: 16px;
border: 1px solid var(--orange-1, #EE751C);
}

.bks-mfp .bks-card-actions {
  margin-top: 12px;
}

.bks-mfp .bks-card-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 16px;
  border: 1px solid var(--orange-border);
  background: #fff;
  color: var(--orange-1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: all var(--tr-fast);
}

.bks-mfp .bks-card-button:hover {
  background: var(--grad-orange);
  border-color: transparent;
  color: #fff;
}

/* =========================
   EMPTY / LOAD MORE
   ========================= */

.bks-mfp .bks-empty {
  width: 100%;
  padding: 40px 18px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}

.bks-mfp .bks-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.bks-mfp .bks-load-more-btn {
  min-width: 220px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--orange-border);
  border-radius: 16px;
  background: #fff;
  color: var(--orange-1);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.bks-mfp .bks-load-more-btn:hover {
  background: var(--grad-orange);
  border-color: transparent;
  color: #fff;
}

/* =========================
   OVERLAY / LOADING
   ========================= */

.bks-mfp .bks-mfp__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 999999999999998;
}

.bks-mfp.bks-sidebar-open .bks-mfp__overlay {
  display: block;
}

.bks-mfp.bks-mfp-is-loading .bks-grid,
.bks-mfp.bks-mfp-is-loading .bks-topbar,
.bks-mfp.bks-mfp-is-loading .bks-load-more-wrap {
  opacity: 0.55;
  pointer-events: none;
}

.bks-mfp.bks-mfp-is-loading .bks-result-text::after {
  content: " · Yükleniyor...";
}

/* =========================
   MOBILE MODAL EXTRAS
   ========================= */

.bks-mfp .bks-mobile-selected {
  display: none;
}

.bks-mfp .bks-mobile-selected.is-empty {
  display: none !important;
}

.bks-mfp .bks-mobile-apply-wrap {
  display: none;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1280px) {
  .bks-mfp .bks-page {
    max-width: 1240px;
  }

  .bks-mfp .bks-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
  }

  .bks-mfp .bks-sidebar-inner {
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .bks-mfp .bks-page {
    padding: 0 20px;
  }

  .bks-mfp .bks-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bks-mfp .bks-sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100vw;
    height: 80dvh;
    max-height: 80dvh;
    z-index: 999999999999998;

    display: flex;
    flex-direction: column;
    gap: 0;

    transform: translateY(100%);
    opacity: 1;
    visibility: visible;
    pointer-events: none;

    transition: transform 260ms ease;

    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    padding: 0;
  }

  .bks-mfp .bks-sidebar.bks-is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .bks-mfp .bks-sidebar-inner {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0;
    border-right: 0;
  }

  .bks-mfp .bks-mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .bks-mfp .bks-topbar-left {
    display: none;
  }

  .bks-mfp .bks-top-filter-row {
    min-height: 50px;
    justify-content: center;
    padding: 12px 24px;
    margin-bottom: 0;
    border-bottom: 1px solid #E5E5E5;
    background: #FFFFFF;
    color: #333333;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
  }

  .bks-mfp .bks-mobile-selected {
    display: block;
    padding: 8px 0 16px;
    background: #FFFFFF;
  }

  .bks-mfp .bks-mobile-selected-label {
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 6px 24px;
    border-bottom: 1px solid #E5E5E5;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
  }

  .bks-mfp .bks-mobile-selected-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 24px 0;
  }

  .bks-mfp .bks-mobile-selected-pills .bks-pill {
    min-height: 30px;
    padding: 4px 8px 4px 12px;
    border-radius: 16px;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }

  .bks-mfp .bks-mobile-selected-pills .bks-pill button,
  .bks-mfp .bks-mobile-selected-pills .bks-pill .bks-pill-icon,
  .bks-mfp .bks-mobile-selected-pills .bks-pill svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .bks-mfp .bks-filter-block {
    margin-top: 0 !important;
    background: #FFFFFF;
  }

  .bks-mfp .bks-filter-head {
    min-height: 34px;
    padding: 6px 24px;
    border-bottom: 1px solid #E5E5E5;
  }

  .bks-mfp .bks-filter-head h5,
  .bks-mfp .bks-filter-head h3 {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
  }

  .bks-mfp .bks-arrow {
    display: none;
  }

  .bks-mfp .bks-filter-body {
    padding: 8px 0;
  }

  .bks-mfp .bks-tree > li + li,
  .bks-mfp .bks-feature-list > li + li {
    margin-top: 0;
  }

  .bks-mfp .bks-row,
  .bks-mfp .bks-sub-row,
  .bks-mfp .bks-feature-row {
    min-height: 34px;
    align-items: center;
    gap: 8px;
    padding: 6px 48px;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }

  .bks-mfp .bks-row {
    font-weight: 400;
  }

  .bks-mfp .bks-row span{
    font-weight: 700;
  }

  .bks-mfp .bks-sub-row {
    padding-left: 70px;
    margin-top: 0;
  }

  .bks-mfp .bks-check {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }

  .bks-mfp .bks-check span {
    border: 0.6px solid #333333;
    border-radius: 3px;
  }

  .bks-mfp .bks-mobile-apply-wrap {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border-top: 1px solid #E5E5E5;
    background: #FFFFFF;
  }

    .bks-mfp .bks-mobile-apply-btn {
        width: 100%;
        /* height: 39px; */
        border: 0;
        border-radius: 8px;
        background: #EE7302;
        color: #FFFFFF;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.8;
        padding: 8px;
        margin-bottom: 37px;
        text-align: center;
        cursor: pointer;
        /* box-shadow: inset -4.5px -4.5px 1.5px -5.25px rgba(255, 255, 255, .5), inset 4.5px 4.5px 1.5px -5.25px rgba(255, 255, 255, .5), inset 3px 4.5px 1.5px -3px rgba(179, 179, 179, .2), inset -3px -4.5px 1.5px -3px #B3B3B3, inset 0 0 33px rgba(242, 242, 242, .5); */
    }

  .bks-mfp .bks-mfp__overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.28);
  }

  .bks-mfp.bks-sidebar-open .bks-mfp__overlay {
    display: block;
  }
}

@media (max-width: 767px) {
  .bks-mfp .bks-page {
    padding: 0 16px;
  }

  .bks-mfp .bks-topbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
    padding: 0;
  }

  .bks-mfp .bks-result-text,
  .bks-mfp .bks-active-label {
    display: none;
  }

  .bks-mfp .bks-topbar-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
  }

    .bks-mfp .bks-mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: auto;
        min-width: 96px;
        height: 34px;
        margin: 0;
        padding: 6px 8px 6px 8px;
        flex: 0 0 auto;
        border: 1px solid #E5E5E5;
        border-radius: 10px;
        background: #fff;
        color: #333333;
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
        /* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03); */
    }

  .bks-mfp .bks-mobile-filter-btn::before {
    content: "";
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    background:
      linear-gradient(#333, #333) left 1px top 2px / 11px 1.4px no-repeat,
      linear-gradient(#333, #333) left 3px top 6px / 7px 1.4px no-repeat,
      linear-gradient(#333, #333) left 5px top 10px / 3px 1.4px no-repeat;
  }

  .bks-mfp .bks-topbar-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex: 1 1 auto;
    width: auto;
    white-space: nowrap;
    color: #6F6F6F;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
  }

  .bks-mfp .bks-sort-label {
    color: #6F6F6F;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    flex: 0 0 auto;
  }

  .bks-mfp .bks-sort-box {
    position: relative;
    width: auto;
    min-width: 170px;
    flex: 1 1 auto;
  }

  .bks-mfp .bks-sort-box select {
        display: inline-flex;
        align-items: center;
        width:100%;
        justify-content: center;
        gap: 8px;
        min-width: 96px;
        margin: 0;
        padding: 6px 8px 6px 10px;
        flex: 0 0 auto;
        border: 1px solid #E5E5E5;
        border-radius: 10px;
        background: #fff;
        color: #333333;
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
        /* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);*/
  }

  .bks-mfp .bks-sort-box::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 7px;
    height: 7px;
    margin-top: -5px;
    border-right: 1.5px solid #000000;
    border-bottom: 1.5px solid #000000;
    transform: rotate(45deg);
    pointer-events: none;
  }

  .bks-mfp .bks-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 20px;
  }

  .bks-mfp .bks-card-title {
    font-size: 20px;
  }

  .bks-mfp .bks-card-description {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .bks-mfp .bks-topbar-right,
  .bks-mfp .bks-sort-label,
  .bks-mfp .bks-sort-box select,
  .bks-mfp .bks-pill {
    font-size: 14px;
  }

  .bks-mfp .bks-sort-box {
    min-width: 145px;
  }

  .bks-mfp .bks-pill {
    min-height: 32px;
    padding: 6px 12px;
  }

  .bks-mfp .bks-card-title {
    font-size: 18px;
  }

  .bks-mfp .bks-card-meta {
    gap: 10px;
    font-size: 13px;
  }

  .bks-mfp .bks-tag {
    font-size: 10px;
  }

  .bks-mfp .bks-load-more-btn {
    width: 100%;
  }
}
/* =========================
   PRODUCT SEARCH
   ========================= */

.bks-mfp .bks-product-search {
  position: relative;
  width: 70%;
  min-width: 70%;
  flex: 0 0 70%;
}

.bks-mfp .bks-product-search-control {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.bks-mfp .bks-product-search.is-open .bks-product-search-control,
.bks-mfp .bks-product-search-control:focus-within {
  border-color: #EE751C;
  box-shadow: 0 0 0 3px rgba(238, 117, 28, 0.10);
    margin-bottom: 20px;
}

.bks-mfp .bks-product-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border: 2px solid #8C8C8C;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

.bks-mfp .bks-product-search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  background: #8C8C8C;
  transform: rotate(45deg);
  border-radius: 2px;
}

.bks-mfp .bks-product-search-input {
  width: 100%;
  height: 44px;
  padding: 10px 40px 10px 40px;
  border: 0;
  background: transparent;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  outline: none;
}

.bks-mfp .bks-product-search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: #F3F3F3;
  color: #666;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.bks-mfp .bks-product-search.bks-has-value .bks-product-search-clear {
  opacity: 1;
  pointer-events: auto;
}

.bks-mfp .bks-product-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 50;
  border: 1px solid #EAEAEA;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
}

.bks-mfp .bks-product-search-option {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 14px;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease;
}

.bks-mfp .bks-product-search-option:hover,
.bks-mfp .bks-product-search-option.is-active {
  background: #FFF5EE;
}

.bks-mfp .bks-product-search-option-title {
  color: #222;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.bks-mfp .bks-product-search-option-meta {
  color: #777;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.bks-mfp .bks-product-search-empty {
  padding: 14px;
  color: #777;
  font-size: 13px;
  line-height: 1.4;
}

.bks-mfp .bks-pill--readonly {
  background: #F6F6F6;
  color: #333;
  border: 1px solid #E5E5E5;
}

@media (max-width: 991px) {
  .bks-mfp .bks-product-search {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }
}

@media (max-width: 767px) {
  .bks-mfp .bks-product-search-input {
    height: 40px;
    font-size: 14px;
  }

  .bks-mfp .bks-product-search-control {
    min-height: 40px;
    border-radius: 10px;
  }
}

/* =========================================================
   BKS MFP — FINAL SEARCH/TOPBAR MOBILE + TABLET
   Search üstte tam genişlik
   Alt satırda: Filtrele + Sırala
   ========================================================= */

@media (max-width: 991px) {
  .bks-mfp .bks-topbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
    padding: 0;
  }

  .bks-mfp .bks-topbar-main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
  }

  .bks-mfp .bks-product-search {
    order: 1;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .bks-mfp .bks-product-search-control {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 66px;
    border: 1px solid #CFCFCF;
    border-radius: 14px;
    background: #FFFFFF;
    box-shadow: none;
    overflow: hidden;
    margin-bottom: 20px;

  }

  .bks-mfp .bks-product-search.is-open .bks-product-search-control,
  .bks-mfp .bks-product-search-control:focus-within {
    border-color: #BEBEBE;
    box-shadow: none;

  }

  .bks-mfp .bks-product-search-input {
    width: 100%;
    height: 66px;
    padding: 16px 58px 16px 20px;
    border: 0;
    background: transparent;
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    outline: none;
  }

  .bks-mfp .bks-product-search-input::placeholder {
    color: #6E6E6E;
    opacity: 1;
  }

  .bks-mfp .bks-product-search-icon {
    position: absolute;
    top: 50%;
    right: 22px;
    left: auto;
    width: 21px;
    height: 21px;
    transform: translateY(-50%);
    border: 1.8px solid #333333;
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: none;
  }

  .bks-mfp .bks-product-search-icon::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 8px;
    height: 1.8px;
    background: #333333;
    transform: rotate(45deg);
    border-radius: 2px;
  }

  .bks-mfp .bks-product-search-clear {
    position: absolute;
    right: 54px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: #F3F3F3;
    color: #666666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
  }

  .bks-mfp .bks-product-search.bks-has-value .bks-product-search-clear {
    opacity: 1;
    pointer-events: auto;
  }

  .bks-mfp .bks-product-search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 120;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    max-height: 280px;
    overflow-y: auto;
  }

  .bks-mfp .bks-topbar-right {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    white-space: nowrap;
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
  }

  .bks-mfp .bks-mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 100px;
    height: 46px;
    padding: 0 16px;
    flex: 0 0 auto;
    border: 1px solid #CFCFCF;
    border-radius: 12px;
    background: #FFFFFF;
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
  }

  .bks-mfp .bks-mobile-filter-btn::before {
    content: "";
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    background:
      linear-gradient(#666666, #666666) left 1px top 2px / 12px 1.4px no-repeat,
      linear-gradient(#666666, #666666) left 3px top 6px / 8px 1.4px no-repeat,
      linear-gradient(#666666, #666666) left 5px top 10px / 4px 1.4px no-repeat;
  }

  .bks-mfp .bks-sort-label {
    display: inline-flex;
    align-items: center;
    height: 46px;
    flex: 0 0 auto;
    width: auto;
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
  }

  .bks-mfp .bks-sort-box {
    position: relative;
    width: auto;
    min-width: 0;
    max-width: 320px;
    flex: 1 1 auto;
  }

  .bks-mfp .bks-sort-box select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 46px;
    padding: 0 42px 0 18px;
    border: 1px solid #CFCFCF;
    border-radius: 12px;
    background: #FFFFFF;
    color: #555555;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    outline: none;
    cursor: pointer;
    box-shadow: none;
  }

  .bks-mfp .bks-sort-box::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 1.6px solid #333333;
    border-bottom: 1.6px solid #333333;
    transform: rotate(45deg);
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  .bks-mfp .bks-page {
    padding: 0 16px;
  }

  .bks-mfp .bks-topbar {
    gap: 14px;
    margin-bottom: 14px;
  }

  .bks-mfp .bks-topbar-main {
    gap: 12px;
  }

  .bks-mfp .bks-product-search-control {
    min-height: 64px;
    border-radius: 14px;
  }

  .bks-mfp .bks-product-search-input {
    height: 64px;
    padding: 14px 54px 14px 18px;
    font-size: 16px;
  }

  .bks-mfp .bks-product-search-icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }

  .bks-mfp .bks-product-search-icon::after {
    width: 8px;
  }

  .bks-mfp .bks-product-search-clear {
    right: 48px;
    width: 22px;
    height: 22px;
  }

  .bks-mfp .bks-topbar-right {
    gap: 10px;
  }

  .bks-mfp .bks-mobile-filter-btn {
    min-width: 98px;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .bks-mfp .bks-sort-label {
    height: 44px;
    font-size: 15px;
  }

  .bks-mfp .bks-sort-box {
    max-width: none;
  }

  .bks-mfp .bks-sort-box select {
    height: 44px;
    padding: 0 40px 0 16px;
    border-radius: 12px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .bks-mfp .bks-topbar-main {
    gap: 10px;
  }

  .bks-mfp .bks-topbar-right {
    gap: 8px;
  }

  .bks-mfp .bks-mobile-filter-btn {
    min-width: 96px;
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .bks-mfp .bks-sort-label {
    height: 42px;
    font-size: 14px;
  }

  .bks-mfp .bks-sort-box select {
    height: 42px;
    font-size: 14px;
    padding: 0 36px 0 14px;
  }

  .bks-mfp .bks-product-search-control {
    min-height: 62px;
  }

  .bks-mfp .bks-product-search-input {
    height: 62px;
    padding: 14px 50px 14px 16px;
    font-size: 15px;
  }

  .bks-mfp .bks-product-search-icon {
    right: 18px;
    width: 19px;
    height: 19px;
  }
}
.bks-mfp .bks-topbar-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.bks-mfp .bks-active-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

@media (max-width: 767px) {
  .bks-mfp .bks-topbar-filters {
    gap: 6px;
  }

  .bks-mfp .bks-active-line {
    align-items: flex-start;
  }
}