/* ╔══════════════════════════════════════════╗
  ║   HIZMET RADARI — HIZMET ARA SAYFASI     ║
  ╚══════════════════════════════════════════╝ */

:root {
  --blue: #0099E5;
  --blue-dark: #007CC7;
  --blue-deeper: #0D1B2A;
  --blue-light: #E8F6FF;
  --blue-mid: #CCE9F9;
  --orange: #FF8C00;
  --orange-dark: #E07A00;
  --orange-light: #FFF3E0;
  --ink: #0D1B2A;
  --ink-2: #1E3448;
  --ink-3: #4A6580;
  --muted: #8FA8C0;
  --border: rgba(0, 153, 229, 0.10);
  --border-2: rgba(0, 0, 0, 0.07);
  --bg: #F4F8FC;
  --white: #FFFFFF;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-full: 9999px;
  --sh-xs: 0 2px 8px rgba(0, 100, 180, 0.06);
  --sh-sm: 0 4px 16px rgba(0, 100, 180, 0.09);
  --sh-md: 0 10px 32px rgba(0, 100, 180, 0.13);
  --sh-blue: 0 6px 24px rgba(0, 153, 229, 0.28);
  --sh-orange: 0 6px 24px rgba(255, 140, 0, 0.28);
  --font: 'Poppins', sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --ha-h: 70px;
  /* desktop header yüksekliği */
  --ham-h: 112px;
  /* mobil header yüksekliği (logo + search) */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ════════════════════════════════════════════
   DESKTOP HEADER
════════════════════════════════════════════ */
.ha-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--ha-h);
  background: linear-gradient(135deg, var(--blue-deeper) 0%, #122035 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
}

.ha-header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ── */
.ha-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 220px;
}

.ha-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.ha-logo-name {
  font-family: var(--font);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
}

.ha-logo-tag {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}

/* ── SEARCH FORM ── */
.ha-search-form {
  flex: 0 1 560px;
  max-width: 560px;
  margin-left: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-full);
  padding: 0 6px 0 18px;
  height: 44px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(12px);
}

.ha-search-form:focus-within {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.ha-search-form i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  flex-shrink: 0;
}

.ha-search-form input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  min-width: 0;
}

.ha-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.ha-search-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: var(--r-full);
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(255, 140, 0, 0.35);
  transition: all 0.2s;
}

.ha-search-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.08);
}

/* ── ACTIONS ── */
.ha-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}

.ha-btn-ghost {
  height: 38px;
  padding: 0 18px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.ha-btn-ghost i {
  font-size: 15px;
}

.ha-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.ha-btn-cta {
  height: 38px;
  padding: 0 20px;
  border-radius: var(--r-full);
  border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(255, 140, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.ha-btn-cta i {
  font-size: 15px;
}

.ha-btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255, 140, 0, 0.50);
  color: #fff;
}

/* ════════════════════════════════════════════
   MOBİL HEADER
════════════════════════════════════════════ */
.ha-mobile-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: linear-gradient(160deg, var(--blue-deeper) 0%, #122035 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.20);
  padding: calc(var(--safe-t) + 10px) 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ha-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ha-mobile-btns {
  display: flex;
  gap: 6px;
}

.ha-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s;
}

.ha-icon-btn:hover,
.ha-icon-btn:active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 140, 0, 0.10);
}

/* Mobil search bar */
.ha-mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-full);
  padding: 0 6px 0 14px;
  height: 40px;
  transition: background 0.2s, border-color 0.2s;
}

.ha-mobile-search:focus-within {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.ha-mobile-search i {
  color: rgba(255, 255, 255, 0.50);
  font-size: 16px;
  flex-shrink: 0;
}

.ha-mobile-search input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  min-width: 0;
}

.ha-mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.ha-mobile-search button {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: var(--r-full);
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.ha-mobile-search button:hover {
  background: var(--orange-dark);
}

/* body padding — header'dan sonra içerik */
body {
  padding-top: 0;
}

/* sticky olduğu için extra padding gerekmez */

/* ════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════ */
.biz-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media(min-width:992px) {
  .biz-container > aside {
    position: sticky;
    top: calc(var(--ha-h) + 14px);
    align-self: start;
  }

  .biz-container {
    grid-template-columns: 270px 1fr;
    padding: 24px 32px;
    gap: 20px;
    align-items: start;
  }
}

/* ════════════════════════════════
   FİLTRE PANELİ
════════════════════════════════ */
.filter-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(14, 42, 76, 0.10);
  overflow: hidden;
  border: 1px solid rgba(0, 153, 229, 0.14);
  display: flex;
  flex-direction: column;
}

@media(min-width:992px) {
  .filter-panel {
    position: relative;
    top: auto;
  }
}

@media(max-width:991.98px) {
  .filter-panel {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(360px, 92%);
    z-index: 9999;
    border-radius: 24px 0 0 24px;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  }

  .filter-panel.active {
    right: 0;
  }
}

.filter-head {
  padding: 18px 20px 15px;
  border-bottom: 1px solid rgba(0, 153, 229, 0.14);
  background: linear-gradient(135deg, #ffffff 0%, #f2f9ff 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.filter-head-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-head-title i {
  color: var(--orange);
  font-size: 17px;
}

.filter-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-3);
  font-size: 15px;
  transition: all 0.2s;
}

.filter-close-btn:hover {
  background: var(--blue-light);
  color: var(--blue);
  border-color: var(--blue);
}

.filter-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 18px;
  -webkit-overflow-scrolling: touch;
}

.filter-scroll > div {
  margin-bottom: 12px !important;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.filter-scroll > div:last-child {
  margin-bottom: 0 !important;
}

@media(min-width:992px) {
  .filter-scroll {
    max-height: calc(100vh - 200px);
  }
}

@media(max-width:991.98px) {
  .filter-scroll {
    max-height: calc(100vh - 170px);
  }
}

.filter-scroll::-webkit-scrollbar {
  width: 4px;
}

.filter-scroll::-webkit-scrollbar-thumb {
  background: var(--blue-mid);
  border-radius: 4px;
}

.filter-label {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5b6f85;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-label i {
  font-size: 13px;
  color: var(--orange);
}

.biz-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(148, 163, 184, 0.34);
  border-radius: var(--r-sm);
  background: #f8fbff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FA8C0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.biz-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 153, 229, 0.12);
}

.biz-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.biz-select+.biz-select {
  margin-top: 7px;
}

#subCatContainer {
  overflow: visible !important;
  max-height: none !important;
}

.sub-category-scroll-wrap .form-check {
  border: 1.5px solid rgba(148, 163, 184, 0.30);
  padding: 9px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 6px;
  transition: all 0.2s;
  cursor: pointer;
  background: #fbfdff;
}

.sub-category-scroll-wrap .form-check:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.sub-category-scroll-wrap .form-check-input:checked {
  background-color: var(--orange);
  border-color: var(--orange);
}

.sub-category-scroll-wrap .form-check-label {
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.price-slider-wrapper {
  padding: 14px 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.filter-footer {
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(0, 153, 229, 0.14);
  flex-shrink: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.btn-apply {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--sh-orange);
  transition: all 0.2s;
  margin-bottom: 7px;
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 140, 0, 0.40);
}

.btn-clear {
  width: 100%;
  height: 38px;
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  background: none;
  color: var(--ink-3);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-clear:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 22, 40, 0.44);
  z-index: 9998;
  backdrop-filter: blur(3px);
}

@media(max-width:991.98px) {
  .filter-head::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.45);
    transform: translateX(-50%);
  }

  .filter-head {
    position: relative;
    padding-top: 20px;
  }
}

.filter-overlay.active {
  display: block;
}

@media (min-width: 992px) {
  .filter-overlay {
    z-index: 9999;
  }
}

/* ════════════════════════════════
   SONUÇ ALANI
════════════════════════════════ */
.results-head {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--sh-xs);
  border: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
  position: sticky;
  top: calc(var(--ham-h) + 8px);
  z-index: 430;
}

@media (min-width: 992px) {
  .results-head {
    top: calc(var(--ha-h) + 8px);
  }
}

.results-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

.results-count .count-badge {
  background: var(--blue-light);
  color: var(--blue);
  padding: 3px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 800;
}

.sort-select {
  height: 36px;
  padding: 0 34px 0 12px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-full);
  background: var(--bg);
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FA8C0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
}

.sort-select:focus {
  border-color: var(--orange);
}

.results-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-open-btn {
  height: 40px;
  padding: 0 16px;
  border: 1.5px solid rgba(255, 140, 0, 0.4);
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #ff9d1f 0%, #ff8c00 45%, #ea580c 100%);
  color: #ffffff;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.filter-open-btn i {
  font-size: 15px;
}

.filter-open-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: saturate(1.06);
}

.filter-open-btn:active {
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .filter-open-btn {
    display: none;
  }
}

.sub-category-scroll-wrap {
  max-height: 210px;
  overflow-y: auto;
  padding-right: 2px;
}

.sub-category-scroll-wrap::-webkit-scrollbar {
  width: 6px;
}

.sub-category-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.55);
  border-radius: 999px;
}

/* ════════════════════════════════
   HİZMET KARTI
════════════════════════════════ */
.service-item {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border-2);
  overflow: hidden;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--orange);
}

.service-item.is-selected {
  border: 2px solid #22C55E !important;
  background: #F0FDF4;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.16) !important;
  transform: translateY(-2px);
}

.service-item::after {
  content: "\ea5e";
  font-family: "tabler-icons" !important;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  background: #22C55E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.5) rotate(-20deg);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.service-item.is-selected::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@media(max-width:767px) {
  .service-item {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
  }
}

.selection-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

.usta-sec-check {
  display: none !important;
}

.service-img-container {
  position: relative;
  overflow: hidden;
  width: 140px;
  flex-shrink: 0;
}

@media(max-width:767px) {
  .service-img-container {
    width: 100px;
    grid-row: 1 / 3;
  }
}

.service-img-container a {
  display: block;
  height: 100%;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-item:hover .service-img-container img {
  transform: scale(1.06);
}

.badge-overlay {
  position: absolute;
  bottom: 7px;
  left: 7px;
}

.glass-badge {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

.dynamic-badges {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 5;
}

.d-badge {
  background: var(--orange);
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--r-full);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 3px;
}

.service-info-content {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

@media(max-width:767px) {
  .service-info-content {
    padding: 10px 8px 6px;
  }
}

.kat-badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 3px 11px;
  border-radius: var(--r-full);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  width: fit-content;
}

.service-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 5px;
}

.service-provider-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  min-width: 0;
}

.service-provider-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.service-provider-name {
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.service-title a {
  color: var(--ink);
  transition: color 0.2s;
}

.service-title a:hover {
  color: var(--orange);
}

.fast-reply-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #E8FFF5;
  color: #059669;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 9.5px;
  font-weight: 700;
  margin-bottom: 7px;
  width: fit-content;
}

.fast-reply-badge i {
  font-size: 11px;
}

.service-desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-meta span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-meta i {
  font-size: 12px;
}

.price-tag {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  border-left: 1px dashed rgba(148, 163, 184, 0.55);
  min-width: 184px;
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(255, 183, 77, 0.16) 0%, rgba(255, 183, 77, 0) 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  flex-shrink: 0;
}

.price-head {
  border: 1px solid rgba(255, 178, 102, 0.28);
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.9), rgba(255, 255, 255, 0.95));
  border-radius: 14px;
  padding: 9px 10px;
}

@media(max-width:767px) {
  .price-tag {
    grid-column: 2 / 3;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 10px;
    min-width: 0;
    background: #f8fbff;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .price-head {
    min-width: 136px;
    padding: 8px 9px;
  }
}

.price-prefix {
  font-size: 10px;
  color: #a16207;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.price-prefix i {
  font-size: 11px;
}

.price-num {
  font-size: 28px;
  font-weight: 800;
  color: #c2410c;
  line-height: 1;
}

.price-type {
  font-size: 10px;
  color: #92400e;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  margin-top: 5px;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(255, 251, 235, 0.92);
}

.price-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

@media(max-width:767px) {
  .price-btns {
    margin-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: auto;
  }
}

.btn-incele,
.btn-wp,
.btn-teklif-al-sistem {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-incele {
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: #f8fafc;
  color: #334155;
}

.btn-incele:hover {
  border-color: rgba(2, 132, 199, 0.56);
  background: #ecfeff;
  color: #0f766e;
}

.btn-wp {
  border: none;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 6px 14px rgba(34, 197, 94, 0.24);
}

.btn-wp:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  transform: translateY(-1px);
}

.btn-wp i {
  font-size: 14px;
}

/* Tıklanabilir alanların seçimi tetiklememesi */
.price-btns,
.service-title a,
.service-img-container a {
  position: relative;
  z-index: 15;
}

/* ════════════════════════════════
   BOŞ SONUÇ
════════════════════════════════ */
.no-result {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 24px;
  text-align: center;
  box-shadow: var(--sh-xs);
  border: 1px solid var(--border);
}

.no-result-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-light);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: var(--blue);
}

.no-result h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}

.no-result p {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 22px;
  line-height: 1.7;
}

.pop-tag {
  display: inline-flex;
  align-items: center;
  background: var(--bg);
  color: var(--ink-3);
  border: 1.5px solid var(--border-2);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin: 4px;
}

.pop-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

/* ════════════════════════════════
   TEKLİF BARI
════════════════════════════════ */
.teklif-bar {
  position: fixed !important;
  bottom: calc(var(--safe-b) + 28px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60% !important;
  max-width: 400px !important;
  background: var(--blue-deeper) !important;
  border-radius: var(--r-full) !important;
  padding: 11px 14px 11px 20px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4) !important;
  z-index: 1000 !important;
  border: 1px solid rgba(255, 140, 0, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.teklif-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.teklif-sayi {
  background: var(--orange);
  color: #fff;
  padding: 3px 12px;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.teklif-bar-text {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

@media(max-width:480px) {
  .teklif-bar-text {
    display: none;
  }
}

.btn-teklif-iste {
  height: 38px;
  padding: 0 20px;
  border: none;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--sh-orange);
  transition: all 0.2s;
}

.btn-teklif-iste:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
}

@media(max-width:991.98px) {

  #teklif-bar,
  .teklif-bar {
    display: none !important;
  }
}

/* ════════════════════════════════
   MODAL
════════════════════════════════ */
.biz-modal .modal-content {
  border: none;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  font-family: var(--font);
}

.biz-modal .modal-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 22px 14px;
}

.biz-modal .modal-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.biz-modal .modal-title i {
  color: var(--orange);
  margin-right: 7px;
}

.biz-modal .modal-body {
  padding: 18px 22px;
}

.biz-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.biz-input:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.08);
}

.biz-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 5px;
  display: block;
}

.btn-send-form {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--sh-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-send-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 140, 0, 0.35);
}

.kvkk-wrap {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 0 3px;
}

.kvkk-wrap input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--orange);
  margin-top: 1px;
}

.kvkk-wrap label {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
}

.kvkk-wrap a {
  color: var(--orange);
  font-weight: 700;
}

/* ════════════════════════════════
   BOTTOM NAV (mobil)
════════════════════════════════ */
.b-nav {
  position: fixed !important;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 8px calc(var(--safe-b) + 6px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 70px;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@media(max-width:991.98px) {
  .b-nav {
    /* Mobilde fixed+blur kombinasyonunda scroll kaymasını engeller. */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media(min-width:992px) {
  .b-nav {
    display: none;
  }
}

.b-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--muted);
  flex: 1;
  padding: 4px 0;
  transition: color 0.2s;
  border: none;
  background: none;
  font-family: var(--font);
}

.b-nav-item i {
  font-size: 22px;
}

.b-nav-item span {
  font-size: 9.5px;
  font-weight: 700;
}

.b-nav-item.active {
  color: var(--orange);
}

.b-nav-item:active {
  color: var(--orange);
}

.b-nav-cta-wrapper {
  width: 62px;
  height: 62px;
  margin-top: -30px;
  position: relative;
}

.b-nav-cta {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: 4px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 22px rgba(0, 153, 229, 0.30);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.bg-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.40) !important;
}

.cta-count-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #F43F5E;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Range Slider */
.price-slider-wrapper .irs--round {
  height: 74px;
}

.price-slider-wrapper .irs--round .irs-line {
  top: 34px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e2e8f0 0%, #dbeafe 100%);
}

.price-slider-wrapper .irs--round .irs-bar {
  top: 34px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8c00 0%, #f97316 55%, #fb7185 100%);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.28);
}

.price-slider-wrapper .irs--round .irs-handle {
  top: 24px;
  width: 20px;
  height: 20px;
  border: 3px solid #ffffff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.32);
}

.price-slider-wrapper .irs--round .irs-handle:hover,
.price-slider-wrapper .irs--round .irs-handle.state_hover,
.price-slider-wrapper .irs--round .irs-handle:focus {
  transform: scale(1.08);
}

.price-slider-wrapper .irs--round .irs-handle i {
  display: none;
}

.price-slider-wrapper .irs--round .irs-from,
.price-slider-wrapper .irs--round .irs-to,
.price-slider-wrapper .irs--round .irs-single {
  top: 0;
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
  border-radius: 999px;
  padding: 5px 10px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.12);
}

.price-slider-wrapper .irs--round .irs-from:before,
.price-slider-wrapper .irs--round .irs-to:before,
.price-slider-wrapper .irs--round .irs-single:before {
  border-top-color: #fde68a;
}

.price-slider-wrapper .irs--round .irs-min,
.price-slider-wrapper .irs--round .irs-max {
  top: 54px;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  background: transparent;
}

/* Kart seçildiğinde oluşacak stil */
.service-item.is-selected {
  border-color: #22C55E !important;
  background-color: #F0FDF4 !important;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.18) !important;
  transform: scale(0.98);
  /* Hafifçe içeri çökme efekti */
}

/* Kartın sağ üstüne "Seçildi" işareti koyalım */
.service-item.is-selected::after {
  content: '\eb2d';
  /* tabler-icon check */
  font-family: 'tabler-icons';
  position: absolute;
  top: 10px;
  right: 10px;
  background: #16A34A;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Orta butona nabız efekti verelim (Seçim varken) */
.bg-orange.animate__bounceIn {
  background: linear-gradient(135deg, #22C55E, #16A34A) !important;
  animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.42);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
}

/* Buton Grubu Konteynırı */
.price-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
}

/* İncele Butonu - Nötr ve Profesyonel */
.btn-incele {
  min-height: 36px;
  background: #f8fafc;
  color: #334155;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-incele:hover {
  background: #ecfeff;
  color: #0f766e;
  border-color: rgba(2, 132, 199, 0.56);
}

/* WhatsApp Butonu - Canlı Yeşil */
.btn-wp {
  min-height: 36px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(34, 197, 94, 0.24);
}

.btn-wp:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-1px);
}

/* TEKLİF AL BUTONU - Sistem Aksiyonu */
.btn-teklif-al-sistem {
  min-height: 36px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(234, 88, 12, 0.26);
  transition: all 0.2s ease;
}

.btn-teklif-al-sistem:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(194, 65, 12, 0.28);
}

/* =====================================================
   APP-STYLE KART TEMASI (REFERANS GORSELE YAKIN)
===================================================== */
.app-card-theme .service-item {
  background: linear-gradient(160deg, #f8fbff 0%, #f1f7ff 56%, #eaf4ff 100%);
  border: 1px solid rgba(125, 173, 218, 0.34);
  box-shadow: 0 10px 26px rgba(12, 74, 110, 0.12);
}

.app-card-theme .service-item:hover {
  border-color: rgba(14, 165, 233, 0.55);
  box-shadow: 0 14px 30px rgba(14, 116, 144, 0.16);
}

.app-card-theme .service-item.is-selected {
  border-color: #22C55E !important;
  background: linear-gradient(160deg, #F2FFF7 0%, #E9FDEE 56%, #DFF8E7 100%) !important;
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.18) !important;
}

.app-card-theme .service-item::after {
  background: #16A34A;
  color: #ffffff;
}

.app-card-theme .service-img-container {
  padding: 0;
}

.app-card-theme .service-img-container img {
  border-radius: 0;
}

.app-card-theme .glass-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.app-card-theme .d-badge {
  background: #0ea5e9;
  color: #ffffff;
}

.app-card-theme .kat-badge {
  background: rgba(14, 165, 233, 0.14);
  color: #075985;
}

.app-card-theme .service-title,
.app-card-theme .service-title a {
  color: #0f172a;
}

.app-card-theme .service-provider-avatar {
  width: 22px;
  height: 22px;
}

.app-card-theme .service-provider-name {
  font-size: 10.5px;
  max-width: 150px;
}

.app-card-theme .service-desc {
  color: #475569;
}

.app-card-theme .service-meta span {
  color: #334155;
}

.app-card-theme .price-tag {
  border-left: 1px dashed rgba(148, 163, 184, 0.45);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(251, 146, 60, 0.15) 0%, rgba(251, 146, 60, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 252, 255, 0.98) 100%);
}

.app-card-theme .price-head {
  border-color: rgba(251, 146, 60, 0.26);
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.94), rgba(255, 255, 255, 0.95));
}

.app-card-theme .price-prefix,
.app-card-theme .price-type {
  color: #9a3412;
}

.app-card-theme .price-num {
  color: #c2410c;
}

.app-card-theme .btn-incele {
  background: #f8fafc;
  border-color: rgba(148, 163, 184, 0.45);
  color: #0f172a;
}

.app-card-theme .btn-incele:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(6, 182, 212, 0.42);
  color: #155e75;
}

.app-card-theme .btn-teklif-al-sistem {
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 8px 18px rgba(234, 88, 12, 0.28);
}

.app-card-theme .btn-teklif-al-sistem:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  box-shadow: 0 10px 20px rgba(194, 65, 12, 0.28);
}

@media (max-width: 991.98px) {
  .app-card-theme .service-item {
    border-radius: 20px;
    grid-template-columns: 92px 1fr;
  }

  .app-card-theme .service-img-container {
    width: 92px;
    grid-row: 1 / 3;
    padding: 0;
  }

  .app-card-theme .service-info-content {
    padding: 10px 10px 8px;
  }

  .app-card-theme .service-title {
    font-size: 13.5px;
    margin-bottom: 6px;
  }

  .app-card-theme .service-provider-name {
    max-width: 120px;
  }

  .app-card-theme .service-pill-row {
    gap: 5px;
    margin-bottom: 6px;
  }

  .app-card-theme .service-pill {
    font-size: 9px;
    padding: 3px 7px;
  }

  .app-card-theme .service-desc {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .app-card-theme .price-tag {
    border-left: none;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.92);
  }

  .app-card-theme .price-num {
    font-size: 21px;
  }

  .app-card-theme .btn-incele,
  .app-card-theme .btn-wp,
  .app-card-theme .btn-teklif-al-sistem {
    height: 34px;
    font-size: 11.5px;
    border-radius: 14px;
    padding: 0 10px;
  }
}

/* ── Mobil: kompakt kart ── */
@media (max-width: 767px) {
  .app-card-theme .service-item {
    grid-template-columns: 84px 1fr;
    margin-bottom: 10px;
  }

  .app-card-theme .service-img-container {
    width: 84px;
  }

  .app-card-theme .service-progress-wrap,
  .app-card-theme .service-pill-row {
    display: none !important;
  }

  .app-card-theme .service-desc {
    -webkit-line-clamp: 1;
    margin-bottom: 4px;
    font-size: 10.5px;
  }

  .app-card-theme .service-info-content {
    padding: 8px 8px 4px;
  }

  .app-card-theme .service-meta {
    gap: 8px;
    margin-top: 4px;
  }

  .app-card-theme .service-meta span {
    font-size: 10px;
  }

  .app-card-theme .kat-badge {
    font-size: 8.5px;
    padding: 2px 8px;
    margin-bottom: 4px;
  }

  .app-card-theme .service-title {
    font-size: 12.5px;
    margin-bottom: 3px;
  }

  .app-card-theme .service-provider-mini {
    margin-bottom: 4px;
  }

  .app-card-theme .service-provider-avatar {
    width: 20px;
    height: 20px;
  }

  .app-card-theme .service-provider-name {
    font-size: 10px;
    max-width: 96px;
  }

  .app-card-theme .price-tag {
    padding: 8px 10px;
    gap: 8px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }

  .app-card-theme .price-num {
    font-size: 19px;
  }

  .app-card-theme .price-head {
    padding: 6px 8px;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .app-card-theme .price-btns {
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
  }

  .app-card-theme .btn-incele,
  .app-card-theme .btn-wp,
  .app-card-theme .btn-teklif-al-sistem {
    height: 32px;
    font-size: 11px;
    padding: 0 8px;
    border-radius: 10px;
  }
}

  /* Desktop layout: popup filters + 4-column cards */
  @media (min-width: 992px) {
    .biz-container {
      grid-template-columns: 1fr;
      gap: 14px;
      padding-top: 14px;
    }

    .biz-container > aside {
      position: static;
    }

    .filter-panel {
      position: fixed;
      top: calc(var(--ha-h) + 10px);
      right: -460px;
      bottom: 14px;
      width: min(430px, 92vw);
      z-index: 10000;
      border-radius: 22px;
      box-shadow: -16px 0 40px rgba(0, 0, 0, 0.18);
      transition: right 0.3s ease, box-shadow 0.3s ease;
    }

    .filter-panel.active {
      right: 14px;
      box-shadow: -20px 0 48px rgba(0, 0, 0, 0.22);
    }

    .filter-head {
      border-bottom: 1px solid rgba(0, 153, 229, 0.14);
      padding: 16px 18px;
    }

    .filter-head-title {
      font-size: 14px;
    }

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

    .filter-scroll {
      max-height: calc(100vh - var(--ha-h) - 200px);
      overflow-y: auto;
      display: block;
      padding: 14px 16px;
    }

    .filter-scroll > div {
      margin-bottom: 18px !important;
      padding: 0 2px;
      border-bottom: 0;
    }

    .filter-label {
      font-size: 10px;
      margin-bottom: 8px;
    }

    .biz-select {
      min-height: 40px;
      font-size: 13px;
    }

    .price-slider-wrapper {
      padding: 12px;
    }

    .filter-footer {
      border-top: 1px solid rgba(0, 153, 229, 0.14);
      border-left: none;
      padding: 12px 14px;
      gap: 7px;
    }

    .btn-apply,
    .btn-clear {
      margin: 0;
      height: 40px;
      font-size: 12px;
    }

    .results-head {
      margin-bottom: 12px;
    }

    .hizmet-listesi-container.app-card-theme {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    @media (max-width: 1400px) {
      .hizmet-listesi-container.app-card-theme {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .app-card-theme .service-item {
      display: flex;
      flex-direction: column;
      grid-template-columns: none;
      margin-bottom: 0;
      min-height: 100%;
      border-radius: 18px;
      overflow: hidden;
    }

    .app-card-theme .service-img-container {
      width: 100%;
      height: 128px;
    }

    .app-card-theme .service-img-container a {
      height: 100%;
    }

    .app-card-theme .service-info-content {
      padding: 10px 10px 8px;
    }

    .app-card-theme .service-pill-row,
    .app-card-theme .service-desc {
      display: none;
    }

    .app-card-theme .service-progress-wrap {
      display: block;
      margin-top: 6px;
      padding-top: 6px;
      border-top: 1px dashed rgba(148, 163, 184, 0.38);
    }

    .app-card-theme .service-progress-title,
    .app-card-theme .service-progress-bar,
    .app-card-theme .service-performance {
      display: none;
    }

    .app-card-theme .service-progress-head {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .app-card-theme .service-progress-item {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 7px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.3);
      background: rgba(255, 255, 255, 0.82);
      color: #334155;
      line-height: 1.1;
    }

    .app-card-theme .service-progress-item.live {
      border-color: rgba(14, 165, 233, 0.34);
      background: rgba(236, 254, 255, 0.9);
      color: #0f766e;
    }

    .app-card-theme .service-progress-item.done {
      border-color: rgba(34, 197, 94, 0.34);
      background: rgba(240, 253, 244, 0.92);
      color: #15803d;
    }

    .app-card-theme .service-title {
      font-size: 13px;
      margin-bottom: 6px;
      line-height: 1.35;
      min-height: 34px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .app-card-theme .service-provider-mini {
      margin-bottom: 5px;
    }

    .app-card-theme .service-provider-avatar {
      width: 21px;
      height: 21px;
    }

    .app-card-theme .service-provider-name {
      max-width: 105px;
      font-size: 10px;
    }

    .app-card-theme .service-meta {
      gap: 6px;
    }

    .app-card-theme .service-meta span {
      font-size: 10px;
    }

    .app-card-theme .service-meta span:last-child {
      display: none;
    }

    .app-card-theme .price-tag {
      margin-top: auto;
      min-width: 0;
      border-left: none;
      border-top: 1px dashed rgba(148, 163, 184, 0.45);
      padding: 8px;
      gap: 8px;
    }

    .app-card-theme .price-head {
      min-width: 0;
      padding: 7px 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .app-card-theme .price-prefix {
      margin-bottom: 0;
    }

    .app-card-theme .price-num {
      font-size: 20px;
    }

    .app-card-theme .price-type {
      margin-top: 0;
      padding: 2px 7px;
      font-size: 9px;
    }

    .app-card-theme .price-btns {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
      margin-top: 8px;
    }

    .app-card-theme .btn-incele,
    .app-card-theme .btn-wp,
    .app-card-theme .btn-teklif-al-sistem {
      min-height: 32px;
      font-size: 11px;
      padding: 0 8px;
      width: 100%;
    }
  }