/**
 * bk-talep — Talep formu popup (Arıtmalı Su Sebilleri)
 * Marka rengi: rgb(1, 150, 225)
 */

:root {
  --bk-talep-surface: #f6fcff;
  --bk-talep-close-bg: #dceef6;
  --bk-talep-text: #324467;
  --bk-talep-text-muted: rgba(50, 68, 103, 0.65);
  --bk-talep-border: rgba(50, 68, 103, 0.16);
  --bk-talep-select-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23324467' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/**
 * bk-talep-module — Talep Formu Popup (izole, taşınabilir modül)
 * ------------------------------------------------------------------
 * Orijinal "Talep Formu Popup" bölümünün tasarımı, responsive
 * davranışı ve tüm etkileşimleri birebir korunarak, vanilla CSS ile
 * yeniden oluşturulmuştur (Bootstrap/Tailwind bağımlılığı yoktur).
 *
 * Tüm seçiciler ".bk-talep-" ön ekiyle başlar ve modüle özgü kök
 * sınıflara (bk-talep-module / bk-talep-portal) bağlı kalır; böylece
 * host projenin diğer stilleriyle çakışmaz.
 *
 * Font: Bu modül kendi font ailesini tanımlamaz — eklendiği projenin
 * fontunu miras alır (font-family: inherit). Yalnızca font boyutu,
 * kalınlığı, satır yüksekliği gibi orijinal tipografi değerleri
 * korunmuştur.
 */

/* Kutu modeli sıfırlaması — yalnızca modülün kendi kökleri altında. */
.bk-talep-portal,
.bk-talep-portal *,
.bk-talep-portal *::before,
.bk-talep-portal *::after {
  box-sizing: border-box;
}

.bk-talep-portal {
  font-family: inherit;
}

.bk-talep-module button,
.bk-talep-module input,
.bk-talep-module select,
.bk-talep-module textarea,
.bk-talep-portal button,
.bk-talep-portal input,
.bk-talep-portal select,
.bk-talep-portal textarea {
  font-family: inherit;
}

/* ------------------------------------------------------------------
 * Sağ altta sabit duran "Talep Oluştur" tetikleyici butonu
 * ------------------------------------------------------------------ */

.bk-talep-trigger {
  position: fixed;
  left: 20px;
  bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  width: 70px;
  height: 70px;
  z-index: 50;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.bk-talep-trigger-icon {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(0 120 180), rgb(1 150 225), rgb(51 180 240));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(1, 150, 225, 0.4);
  overflow: hidden;
  backface-visibility: hidden;
  transition: background 2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.bk-talep-trigger:hover .bk-talep-trigger-icon {
  background: linear-gradient(135deg, rgb(0 100 160), rgb(0 120 180), rgb(1 150 225));
  background-size: 300% 300%;
  animation: bk-talep-gradient-shift 4s ease infinite 0.5s;
  animation-fill-mode: both;
  box-shadow: 0 6px 25px rgba(1, 150, 225, 0.6);
}

@keyframes bk-talep-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bk-talep-trigger svg,
.bk-talep-header-trigger svg {
  fill: currentColor;
}

.bk-talep-trigger svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.bk-talep-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ffffff;
  color: rgb(1, 150, 225);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.bk-talep-trigger .bk-talep-tooltip {
  position: absolute;
  backface-visibility: visible;
  background: linear-gradient(135deg, rgb(0 120 180), rgb(1 150 225), rgb(51 180 240));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  padding: 11px 16px;
  border-radius: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 10px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.bk-talep-trigger:hover .bk-talep-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(15px);
}

/* Header sepet butonu (ikon + açık tooltip, tek tıklama alanı) */
.bk-talep-header-trigger {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  vertical-align: middle;
  font-family: inherit;
}

.bk-talep-header-trigger--pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  width: auto;
}

.bk-talep-header-trigger--pill .bk-talep-trigger-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  color: #fff;
}

.bk-talep-header-trigger--pill .bk-talep-trigger-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  color: #fff;
}

.bk-talep-header-trigger--pill .bk-talep-badge {
  top: -5px;
  right: -5px;
}

.bk-talep-header-trigger--pill .bk-talep-tooltip {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  backface-visibility: visible;
  background: linear-gradient(135deg, rgb(0 120 180), rgb(1 150 225), rgb(51 180 240));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  padding: 11px 16px;
  border-radius: 20px;
}

.menu-field .group\/menu-item:has(.bk-talep-header-trigger) {
  overflow: visible;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 10px;
}

.menu-field #menu-center {
  overflow: visible;
}

/* Tablet: other-menu içinde, masaüstü gibi tooltip açık */
.bk-talep-header-trigger--tablet {
  display: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .header-contact-icons {
    display: none !important;
  }

  .bk-talep-header-trigger--tablet {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .bk-talep-header-trigger--tablet,
  .menu-field .group\/menu-item:has(.bk-talep-header-trigger) {
    display: none !important;
  }
}

/* ------------------------------------------------------------------
 * Popup: karartılmış arka plan (overlay) ve pencere (modal)
 * ------------------------------------------------------------------ */

.bk-talep-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bk-talep-overlay.bk-talep-active {
  opacity: 1;
  visibility: visible;
}

.bk-talep-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  max-width: 1280px;
  width: 90%;
  max-height: 85vh;
  background: var(--bk-talep-surface);
  border-radius: 20px;
  overflow: visible; /* kapatma butonu dışarı taşar */
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  box-shadow: 0 24px 80px rgba(50, 68, 103, 0.16);
}

.bk-talep-overlay.bk-talep-active .bk-talep-modal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.bk-talep-close {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bk-talep-close-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1003;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  padding: 0;
  color: var(--bk-talep-text);
  box-shadow: 0 4px 16px rgba(50, 68, 103, 0.1);
}

.bk-talep-close:hover {
  background: rgb(1, 150, 225);
  color: #fff;
  transform: translateX(-50%) translateY(-50%) rotate(-180deg);
}

.bk-talep-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

/* ------------------------------------------------------------------
 * Sol panel: sepete eklenen ürünlerin listesi
 * ------------------------------------------------------------------ */

.bk-talep-list-wrapper {
  background: rgb(1, 150, 225);
  padding: 60px 40px 40px;
  overflow-y: auto;
  max-height: 85vh;
  border-radius: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
  scrollbar-gutter: stable;
}

.bk-talep-list-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
}

.bk-talep-list-header {
  appearance: none;
  border: 0;
  background: none;
  padding: 12px 10px 14px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  position: sticky;
  top: 0;
  z-index: 3;
  background: rgba(1, 150, 225, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.bk-talep-list-header:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

.bk-talep-list-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
}

.bk-talep-list-count {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.bk-talep-list-chevron {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 220ms ease;
}

.bk-talep-list-wrapper.bk-talep-list-collapsed .bk-talep-list-chevron {
  transform: rotate(-180deg);
}

.bk-talep-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Ürün listesi uzun olduğunda "devamı var" hissi veren gölge şeridi. */
.bk-talep-list-wrapper::after {
  content: "";
  position: sticky;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 22px;
  background: linear-gradient(180deg, rgba(1, 150, 225, 0) 0%, rgba(1, 150, 225, 0.95) 100%);
  pointer-events: none;
  z-index: 2;
}

.bk-talep-list-wrapper.bk-talep-list-collapsed {
  overflow: hidden;
}

.bk-talep-list-wrapper.bk-talep-list-collapsed .bk-talep-list {
  display: none;
}

.bk-talep-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 15px;
  align-items: center;
}

.bk-talep-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  padding: 6px;
  max-width: 100%;
}

.bk-talep-item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.bk-talep-item span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.bk-talep-item input {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 8px 12px;
  color: #ffffff;
}

.bk-talep-item input::placeholder {
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
}

.bk-talep-item input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  outline: none;
}

.bk-talep-remove {
  background: rgba(1, 150, 225, 0.1);
  border: 1px solid rgba(1, 150, 225, 0.32);
  color: #ffd8ca;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bk-talep-remove svg {
  width: 18px;
  height: 18px;
}

/* Mobilde ürün satırını daralt (çöp butonu her zaman görünsün). */
@media (max-width: 768px) {
  .bk-talep-item {
    grid-template-columns: 64px minmax(0, 1fr) 36px;
    gap: 10px;
    padding: 12px;
  }

  .bk-talep-item img {
    width: 64px;
    height: 64px;
    padding: 4px;
  }

  .bk-talep-remove {
    width: 36px;
    height: 36px;
    justify-self: end;
  }
}

.bk-talep-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 22px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.bk-talep-empty svg {
  width: 56px;
  height: 56px;
  margin: 0;
  opacity: 0.55;
}

.bk-talep-empty p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

@media (max-width: 768px) {
  .bk-talep-empty {
    gap: 10px;
    padding: 16px 12px;
  }

  .bk-talep-empty svg {
    width: 46px;
    height: 46px;
  }

  .bk-talep-empty p {
    font-size: 13px;
  }
}

/* ------------------------------------------------------------------
 * Sağ panel: talep formu
 * ------------------------------------------------------------------ */

.bk-talep-form-wrapper {
  background: var(--bk-talep-surface);
  padding: 50px 50px 35px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 85vh;
  border-radius: 0 20px 20px 0;
  scrollbar-gutter: stable;
}

.bk-talep-title {
  color: var(--bk-talep-text);
  font-size: 28px;
  font-weight: 600;
}

.bk-talep-subtitle {
  color: var(--bk-talep-text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.bk-talep-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bk-talep-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.bk-talep-group {
  position: relative;
}

.bk-talep-group label {
  position: absolute;
  left: 15px;
  top: 0;
  transform: translateY(-50%);
  background: var(--bk-talep-surface);
  padding: 0 15px;
  color: var(--bk-talep-text);
  font-size: 14px;
  pointer-events: none;
}

.bk-talep-group--textarea label {
  position: static;
  transform: none;
  display: block;
  margin: 0 0 10px;
  padding: 0 4px;
  background: transparent;
  line-height: 1.35;
  pointer-events: auto;
}

.bk-talep-group input,
.bk-talep-group select {
  width: 100%;
  height: 65px;
  padding: 0 25px;
  background: var(--bk-talep-surface);
  border: 0;
  border-radius: 10px;
  color: var(--bk-talep-text);
  font-size: 15px;
  box-shadow: 0 0 0 1px var(--bk-talep-border);
  outline: none;
}

.bk-talep-group textarea {
  width: 100%;
  min-height: 120px;
  padding: 18px 25px;
  background: var(--bk-talep-surface);
  border: 0;
  border-radius: 10px;
  color: var(--bk-talep-text);
  font-size: 15px;
  box-shadow: 0 0 0 1px var(--bk-talep-border);
  outline: none;
  resize: vertical;
}

.bk-talep-group textarea::placeholder,
.bk-talep-group input::placeholder {
  color: rgba(50, 68, 103, 0.45);
}

.bk-talep-group select {
  appearance: none;
  background-image: var(--bk-talep-select-arrow);
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

.bk-talep-group select option {
  background: var(--bk-talep-surface);
  color: var(--bk-talep-text);
}

.bk-talep-group input:focus,
.bk-talep-group select:focus {
  box-shadow: 0 0 0 2px rgb(1, 150, 225);
}

.bk-talep-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 15px 0;
}

.bk-talep-checkbox-container {
  position: relative;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
}

.bk-talep-checkbox {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 10;
  margin: 0;
  cursor: pointer;
}

.bk-talep-checkbox-box {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--bk-talep-border);
  position: relative;
  background: var(--bk-talep-surface);
}

.bk-talep-checkbox-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40%;
  height: 40%;
  border-radius: 5px;
  background: rgb(1, 150, 225);
  opacity: 0;
  transition: all 0.35s ease;
}

.bk-talep-checkbox:checked ~ .bk-talep-checkbox-box::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.bk-talep-checkbox-label {
  color: var(--bk-talep-text-muted);
  font-size: 14px;
  flex: 1 1 240px;
  min-width: 0;
  line-height: 1.4;
}

.bk-talep-checkbox-label a,
.bk-talep-kvkk-link {
  position: relative;
  z-index: 20;
  display: inline;
  color: rgb(1, 150, 225);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.35s ease;
}

.bk-talep-checkbox-label a:hover,
.bk-talep-kvkk-link:hover {
  color: rgb(0, 120, 180);
  opacity: 1;
}

.bk-talep-button-field {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.bk-talep-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  width: 100%;
  max-width: 280px;
  padding: 0 60px;
  background: rgb(1, 150, 225);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
}

.bk-talep-submit-circle {
  position: absolute;
  top: var(--bk-talep-ripple-y, 50%);
  left: var(--bk-talep-ripple-x, 50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.45s ease;
  pointer-events: none;
}

.bk-talep-submit:hover .bk-talep-submit-circle {
  transform: translate(-50%, -50%) scale(90);
}

.bk-talep-response-output {
  display: none;
  margin: 15px 0;
}

.bk-talep-message {
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.bk-talep-message-success {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.3);
}

.bk-talep-message-error {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.bk-talep-error {
  display: none;
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
}

.bk-talep-group input.bk-talep-field-error,
.bk-talep-group select.bk-talep-field-error,
.bk-talep-group textarea.bk-talep-field-error {
  box-shadow: 0 0 0 1px #ff6b6b !important;
}

.bk-talep-contact-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--bk-talep-border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .bk-talep-contact-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

.bk-talep-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--bk-talep-text-muted);
}

.bk-talep-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(1, 150, 225, 0.21);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-talep-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: rgb(1, 150, 225);
}

.bk-talep-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bk-talep-contact-label {
  font-size: 12px;
  color: rgba(50, 68, 103, 0.5);
}

.bk-talep-contact-number {
  font-size: 14px;
  font-weight: 500;
  color: var(--bk-talep-text);
}

/* ------------------------------------------------------------------
 * KVKK bilgilendirme penceresi
 * ------------------------------------------------------------------ */

.bk-talep-kvkk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.bk-talep-kvkk-overlay.bk-talep-active {
  opacity: 1;
  visibility: visible;
}

.bk-talep-kvkk-modal {
  position: relative;
  background: var(--bk-talep-surface);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.bk-talep-kvkk-close {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bk-talep-close-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  color: var(--bk-talep-text);
  box-shadow: 0 4px 16px rgba(50, 68, 103, 0.1);
}

.bk-talep-kvkk-close:hover {
  background: rgb(1, 150, 225);
  color: #fff;
}

.bk-talep-kvkk-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.bk-talep-kvkk-content {
  padding: 90px 60px 60px;
  overflow-y: auto;
  color: var(--bk-talep-text);
  background: var(--bk-talep-surface);
  line-height: 1.8;
  border-radius: 20px;
}

.bk-talep-kvkk-content .bk-talep-kvkk-heading {
  display: block;
  color: var(--bk-talep-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
}

.bk-talep-kvkk-content .bk-talep-kvkk-subheading {
  display: block;
  color: var(--bk-talep-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin: 8px 0 16px;
}

.bk-talep-kvkk-content .bk-talep-kvkk-text {
  display: block;
  margin-bottom: 20px;
  color: rgba(50, 68, 103, 0.85);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}

.bk-talep-kvkk-content .bk-talep-kvkk-label {
  font-weight: 600;
  color: var(--bk-talep-text);
}

.bk-talep-kvkk-content .bk-talep-kvkk-list {
  margin: 20px 0;
  padding-left: 30px;
  list-style-type: disc;
  list-style-position: outside;
}

.bk-talep-kvkk-content .bk-talep-kvkk-list-item {
  display: block;
  margin-bottom: 12px;
  padding-left: 10px;
  color: rgba(50, 68, 103, 0.85);
  font-size: 15px;
  line-height: 1.7;
}

.bk-talep-kvkk-content .bk-talep-kvkk-content-link {
  color: rgb(1, 150, 225);
  text-decoration: none;
  transition: color 0.35s ease;
}

.bk-talep-kvkk-content .bk-talep-kvkk-content-link:hover {
  color: rgb(0, 120, 180);
  text-decoration: underline;
}

.bk-talep-kvkk-content .bk-talep-kvkk-footer {
  display: block;
  margin-top: 8px;
  color: var(--bk-talep-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

/* ------------------------------------------------------------------
 * Kaydırma çubuğu (scrollbar) stilleri — popup ve KVKK penceresi
 * ------------------------------------------------------------------ */

.bk-talep-list-wrapper,
.bk-talep-form-wrapper,
.bk-talep-kvkk-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(50, 68, 103, 0.28) rgba(50, 68, 103, 0.08);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.bk-talep-list-wrapper::-webkit-scrollbar-track,
.bk-talep-form-wrapper::-webkit-scrollbar-track,
.bk-talep-kvkk-content::-webkit-scrollbar-track {
  background: rgba(50, 68, 103, 0.08);
  border-radius: 999px;
  margin: 6px;
}

.bk-talep-list-wrapper::-webkit-scrollbar-thumb,
.bk-talep-form-wrapper::-webkit-scrollbar-thumb,
.bk-talep-kvkk-content::-webkit-scrollbar-thumb {
  background: rgba(50, 68, 103, 0.28);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}

.bk-talep-list-wrapper::-webkit-scrollbar-thumb:hover,
.bk-talep-form-wrapper::-webkit-scrollbar-thumb:hover,
.bk-talep-kvkk-content::-webkit-scrollbar-thumb:hover {
  background: rgba(50, 68, 103, 0.42);
}

.bk-talep-list-wrapper::-webkit-scrollbar,
.bk-talep-form-wrapper::-webkit-scrollbar,
.bk-talep-kvkk-content::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.bk-talep-list-wrapper::-webkit-scrollbar-corner,
.bk-talep-form-wrapper::-webkit-scrollbar-corner,
.bk-talep-kvkk-content::-webkit-scrollbar-corner {
  background: transparent;
}

/* ------------------------------------------------------------------
 * Bildirim (toast) mesajları
 * ------------------------------------------------------------------ */

.bk-talep-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk-talep-toast {
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 600;
  animation: bk-talep-slide-in-toast 0.3s ease;
  cursor: pointer;
}

.bk-talep-toast-success {
  background: rgb(1, 150, 225);
}

.bk-talep-toast-warning {
  background: #f59e0b;
}

@keyframes bk-talep-slide-in-toast {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bk-talep-slide-out-toast {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* ------------------------------------------------------------------
 * Reduced motion — hareket azaltma tercihi olan kullanıcılar için
 * ------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  .bk-talep-portal *,
  .bk-talep-portal *::before,
  .bk-talep-portal *::after {
    scroll-behavior: auto;
  }
}

/* ------------------------------------------------------------------
 * Responsive: tablet (<=1024px)
 * ------------------------------------------------------------------ */

@media (max-width: 1024px) {
  .bk-talep-modal {
    max-width: 90%;
    grid-template-columns: 1fr;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .bk-talep-list-wrapper {
    flex: 0 0 auto;
    --bk-talep-count: 0;
    --bk-talep-steps: min(max(calc(var(--bk-talep-count) - 1), 0), 2);
    max-height: clamp(220px, calc(220px + (var(--bk-talep-steps) * 132px)), 44vh);
    border-radius: 20px 20px 0 0;
    padding: 18px 18px 16px;
  }

  .bk-talep-form-wrapper {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    padding: 40px 30px 30px;
    border-radius: 0 0 20px 20px;
  }

  .bk-talep-close {
    top: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
    width: 42px;
    height: 42px;
  }

  .bk-talep-close:hover {
    transform: translateX(-50%) translateY(-50%) rotate(-180deg);
  }

  .bk-talep-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .bk-talep-trigger {
    width: 50px;
    height: 50px;
    bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  }

  .bk-talep-trigger svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 1023px) {
  .bk-talep-trigger {
    width: 48px;
    height: 48px;
    bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  }

  .bk-talep-trigger svg {
    width: 26px;
    height: 26px;
  }
}

/* ------------------------------------------------------------------
 * Responsive: mobil (<=768px)
 * ------------------------------------------------------------------ */

@media (max-width: 768px) {
  .bk-talep-modal {
    max-width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
  }

  .bk-talep-list-title,
  .bk-talep-title {
    font-size: 22px;
    line-height: 1.15;
  }

  .bk-talep-trigger .bk-talep-tooltip {
    display: none;
  }

  .bk-talep-badge {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .bk-talep-list-wrapper {
    flex: 0 0 auto;
    --bk-talep-count: 0;
    --bk-talep-steps: min(max(calc(var(--bk-talep-count) - 1), 0), 2);
    max-height: clamp(240px, calc(240px + (var(--bk-talep-steps) * 140px)), 54vh);
    padding: 14px 14px 12px;
    border-radius: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }

  .bk-talep-list-wrapper.bk-talep-list-collapsed {
    max-height: 78px;
  }

  .bk-talep-list-header {
    border-radius: 12px;
  }

  .bk-talep-form-wrapper {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    padding: 26px 18px 18px;
  }

  .bk-talep-form {
    gap: 22px;
  }

  .bk-talep-row {
    gap: 22px;
  }

  .bk-talep-close {
    width: 38px;
    height: 38px;
  }

  .bk-talep-close svg {
    width: 18px;
    height: 18px;
  }

  .bk-talep-group input,
  .bk-talep-group select {
    height: 55px;
  }

  .bk-talep-group textarea {
    min-height: 120px;
  }

  .bk-talep-group--textarea label {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .bk-talep-checkbox-wrapper {
    margin-top: -10px;
    margin-bottom: 0;
  }

  .bk-talep-button-field {
    margin-top: -10px;
  }

  .bk-talep-submit {
    height: 50px;
    max-width: 100%;
    padding: 0 28px;
  }

  .bk-talep-tooltip {
    display: none;
  }

  .bk-talep-contact-info {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bk-talep-kvkk-modal {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 0;
  }

  .bk-talep-kvkk-content {
    padding: 60px 20px 24px;
  }

  .bk-talep-kvkk-content .bk-talep-kvkk-heading {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .bk-talep-kvkk-content .bk-talep-kvkk-text,
  .bk-talep-kvkk-content .bk-talep-kvkk-list-item {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .bk-talep-kvkk-content .bk-talep-kvkk-subheading {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .bk-talep-kvkk-content .bk-talep-kvkk-list {
    padding-left: 22px;
    margin: 15px 0;
  }
}
