/* =====================================================================
   design-standard.css — Sharingo AÇIK / SOFT tasarım dili (absolute last)
   ---------------------------------------------------------------------
   Soft pastel zemin · beyaz kart · teal + soft violet aksan
   Koyu “premium dark” zorlaması YOK
   ===================================================================== */

:root {
  /* Soft pastel shell (logo arka planına yakın) */
  --ds-void: #f3f6fb;
  --ds-deep: #e9eef7;
  --ds-surface: #ffffff;
  --ds-elev: #f7f9fc;
  --ds-elev-2: #eef2f8;

  /* Text — koyu, net */
  --ds-text: #1a1f36;
  --ds-text-soft: #2d3550;
  --ds-muted: #5b657a;
  --ds-faint: #8b93a7;

  /* Marka: soft teal (Go) + soft violet (Sharin) */
  --ds-brand: #0f9e96;
  --ds-brand-hover: #0b827b;
  --ds-brand-soft: rgba(15, 158, 150, 0.12);
  --ds-brand-text: #0b827b;
  --ds-brand-text-hover: #086860;

  --ds-accent: #7a5af8;
  --ds-accent-soft: rgba(122, 90, 248, 0.12);
  --ds-accent-text: #5b3fd4;

  /* Line / shadow — soft */
  --ds-line: rgba(26, 31, 54, 0.08);
  --ds-line-strong: rgba(26, 31, 54, 0.14);
  --ds-shadow: 0 14px 36px rgba(26, 31, 54, 0.08);
  --ds-shadow-sm: 0 6px 18px rgba(26, 31, 54, 0.06);

  /* Radius */
  --ds-r-sm: 10px;
  --ds-r-md: 14px;
  --ds-r-lg: 18px;
  --ds-r-pill: 999px;

  /* Spacing */
  --ds-pad-x: clamp(14px, 3vw, 28px);
  --ds-pad-card: 18px;
  --ds-gap: 16px;
  --ds-section-y: clamp(36px, 5vw, 72px);

  /* Controls */
  --ds-control-h: 48px;
  --ds-control-h-sm: 40px;
  --ds-touch: 44px;

  /* Type */
  --ds-font: "Sora", Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ds-font-body: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ds-fs-xs: 12px;
  --ds-fs-sm: 13px;
  --ds-fs-md: 15px;
  --ds-fs-lg: 18px;
  --ds-fs-xl: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  --ds-fs-hero: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem);

  /* Sync older tokens → light soft */
  --sm-bg: var(--ds-void);
  --sm-surface: var(--ds-surface);
  --sm-elev: var(--ds-elev);
  --sm-text: var(--ds-text);
  --sm-muted: var(--ds-muted);
  --sm-faint: var(--ds-faint);
  --sm-brand: var(--ds-brand);
  --sm-brand-text: var(--ds-brand-text);
  --sm-line: var(--ds-line);
  --sm-pad: var(--ds-pad-x);

  --uh-void: var(--ds-void);
  --uh-deep: var(--ds-deep);
  --uh-surface: var(--ds-surface);
  --uh-elevated: var(--ds-elev);
  --uh-text: var(--ds-text);
  --uh-text-soft: var(--ds-text-soft);
  --uh-text-muted: var(--ds-muted);
  --uh-brand: var(--ds-brand);
  --uh-brand-strong: var(--ds-brand-hover);
  --uh-brand-text: var(--ds-brand-text);
  --uh-line: var(--ds-line);
  --uh-radius: var(--ds-r-md);
  --uh-radius-lg: var(--ds-r-lg);
  --uh-radius-pill: var(--ds-r-pill);
  --uh-font: var(--ds-font-body);
  --uh-control-h: var(--ds-control-h);
  --uh-shadow: var(--ds-shadow);

  --pr-brand: var(--ds-brand);
  --pr-brand-600: var(--ds-brand-hover);
  --pr-brand-text: var(--ds-brand-text);
  --pr-ink: var(--ds-text);
  --pr-ink-700: var(--ds-text-soft);
  --pr-text-muted: var(--ds-muted);
  --pr-surface: var(--ds-surface);
  --pr-bg: var(--ds-void);
  --pr-line: var(--ds-line);

  --dp-bg-void: var(--ds-void);
  --dp-bg-deep: var(--ds-deep);
  --dp-bg-base: var(--ds-void);
  --dp-bg-surface: var(--ds-surface);
  --dp-bg-elevated: var(--ds-elev);
  --dp-text: var(--ds-text);
  --dp-text-soft: var(--ds-text-soft);
  --dp-text-muted: var(--ds-muted);
  --dp-blue: var(--ds-brand);
  --dp-blue-bright: var(--ds-brand-text);

  /* Compact tokens — soft light */
  --rx-bg: var(--ds-void);
  --rx-elev: #ffffff;
  --rx-elev-2: var(--ds-elev);
  --rx-line: var(--ds-line);
  --rx-ink: var(--ds-text);
  --rx-muted: var(--ds-muted);
  --rx-accent: var(--ds-brand);
  --rx-accent-2: var(--ds-brand-hover);
}


/* ========== SHELL — soft light ========== */
html {
  background: var(--ds-void) !important;
  color-scheme: light !important;
}

html body {
  background:
    radial-gradient(90% 60% at 0% 0%, rgba(122, 90, 248, 0.08) 0%, transparent 55%),
    radial-gradient(80% 50% at 100% 0%, rgba(15, 158, 150, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #f5f7fc 0%, #f0faf7 48%, #f3f6fb 100%) !important;
  background-color: var(--ds-void) !important;
  color: var(--ds-text-soft) !important;
  font-family: var(--ds-font-body) !important;
  font-size: var(--ds-fs-md) !important;
  line-height: 1.55 !important;
  -webkit-font-smoothing: antialiased;
}

html body main {
  background: transparent !important;
}


/* ========== TİPOGRAFİ ========== */
html body h1, html body .h1,
html body .section-hero .cs-wbg-head-1,
html body .section-hero h1,
html body .p-home-hero__headline,
html body .cs-homepage-sec-1 .cs-wbg-head-1 {
  font-family: var(--ds-font) !important;
  font-size: var(--ds-fs-hero) !important;
  font-weight: 750 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
}

/* Page titles (not footer labels) */
html body main .cs-wbg-head-1,
html body .section:not(.cs-footer-1) > .container > .cs-wbg-head-1,
html body .cs-banner-sec-1 .cs-wbg-head-1 {
  font-family: var(--ds-font) !important;
  font-size: var(--ds-fs-hero) !important;
  font-weight: 750 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
}

html body h2, html body .h2,
html body h3, html body .h3,
html body .cs-wbg-head-2,
html body .cs-wbg-head-3,
html body .cs-wbg-head-2 span,
html body .cs-wbg-head-3 span {
  font-family: var(--ds-font) !important;
  font-size: var(--ds-fs-xl) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  background: transparent !important;
}

/* App download band sits on a dark gradient — keep type/icons readable */
html body .p-home-app .p-home-app__eyebrow,
html body .p-home-app .p-home-app__title,
html body .p-home-app .p-home-app__title span,
html body .p-home-app h2,
html body .p-home-app h2 span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-image: none !important;
}
html body .p-home-app .p-home-app__subtitle,
html body .p-home-app p.p-home-app__subtitle {
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
}

html body h4, html body h5, html body h6,
html body .head-1 {
  font-family: var(--ds-font) !important;
  font-weight: 700 !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  line-height: 1.35 !important;
}

html body p,
html body .desc-1,
html body .cs-global-desc-1,
html body .cs-wbg-desc-1,
html body .cs-desc-1,
html body .text-muted,
html body .text-dark,
html body .text-body {
  color: var(--ds-muted) !important;
  -webkit-text-fill-color: var(--ds-muted) !important;
  line-height: 1.6 !important;
  opacity: 1 !important;
}

html body a:not([class*="btn"]):not(.cs-header-btn-3):not(.cs-primary-btn-1):not(.cs-secondary-btn-1):not(.quick-cta) {
  color: var(--ds-brand-text) !important;
}

html body a:not([class*="btn"]):hover {
  color: var(--ds-accent-text) !important;
}


/* ========== BUTONLAR ========== */
html body .cs-primary-btn-1,
html body .cs-primary-btn-2,
html body .cs-primary-btn-3,
html body .cs-secondary-btn-1,
html body .cs-secondary-btn-2,
html body .cs-header-btn-3,
html body a.cs-header-btn-3,
html body .btn-primary,
html body button.btn-primary,
html body .pr-mega-cta__btn,
html body button[type="submit"]:not(.close):not(.swal2-styled):not(.jsSignalCloseBtn1),
html body #searchButton,
html body .cs-banner-sec-1 .cs-search-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: var(--ds-control-h) !important;
  padding: 0 22px !important;
  border: 0 !important;
  border-radius: var(--ds-r-md) !important;
  background: var(--ds-brand) !important;
  background-image: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: var(--ds-font-body) !important;
  font-size: var(--ds-fs-md) !important;
  font-weight: 650 !important;
  box-shadow: 0 10px 24px rgba(15, 158, 150, 0.28) !important;
  filter: none !important;
  text-decoration: none !important;
}

html body .cs-primary-btn-1:hover,
html body .cs-primary-btn-2:hover,
html body .cs-secondary-btn-1:hover,
html body .cs-header-btn-3:hover,
html body .btn-primary:hover,
html body button[type="submit"]:not(.close):hover,
html body #searchButton:hover {
  background: var(--ds-brand-hover) !important;
  color: #fff !important;
}

html body .cs-white-btn-1,
html body .cs-outline-btn-1,
html body .cs-primary-outline-btn-1,
html body .cs-third-btn-1 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: var(--ds-control-h) !important;
  padding: 0 20px !important;
  border-radius: var(--ds-r-md) !important;
  background: #fff !important;
  border: 1px solid var(--ds-line-strong) !important;
  color: var(--ds-text-soft) !important;
  -webkit-text-fill-color: var(--ds-text-soft) !important;
  font-weight: 600 !important;
  box-shadow: var(--ds-shadow-sm) !important;
}

html body .cs-white-btn-1:hover,
html body .cs-outline-btn-1:hover {
  border-color: var(--ds-brand) !important;
  color: var(--ds-brand-text) !important;
}


/* ========== KARTLAR ========== */
html body .cs-car-box-1,
html body .cs-blog-box-1,
html body .cs-campaign-box-1,
html body .premium-card,
html body .cs-comment-box-1,
html body .cs-tab-container-1,
html body .cs-list-main-2,
html body .cs-about-us-textbox-1,
html body .cs-login-form-c-1,
html body .cs-register-form-c-1,
html body .cs-syc-infobox,
html body .cs-account-sidebar-1,
html body .cs-orderSum-left-a-1,
html body .cs-orderSum-right-a-1,
html body .cs-page-filter-d-1,
html body .cs-speech-info-box-1,
html body .cs-speech-info-box-2,
html body .modal-content,
html body .cs-cookie-fly-d-1,
html body .pr-search-card,
html body .cs-loc-date-d-1,
html body .card,
html body .list-group-item,
html body .bg-white,
html body .bg-light {
  background: var(--ds-surface) !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: var(--ds-r-lg) !important;
  color: var(--ds-text-soft) !important;
  box-shadow: var(--ds-shadow-sm) !important;
}

html body .cs-car-box-1 .head-1,
html body .cs-blog-box-1 .head-1,
html body .cs-campaign-box-1 .head-1 {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
}

html body .cs-blog-box-1 .desc-1,
html body .cs-campaign-box-1 .desc-1,
html body .cs-car-box-1 .desc-3 {
  color: var(--ds-muted) !important;
  -webkit-text-fill-color: var(--ds-muted) !important;
}

html body .cs-car-box-1 .desc-2,
html body .cs-blog-box-1 .link-1,
html body .cs-campaign-box-1 .link-1,
html body .cs-global-link-1,
html body .quick-cta {
  color: var(--ds-brand-text) !important;
  font-weight: 650 !important;
}


/* ========== FORMLAR ========== */
html body .form-control,
html body .custom-select,
html body select.form-control,
html body textarea.form-control,
html body .cs-form-control-1 input,
html body .cs-form-control-1 textarea,
html body input[type="text"],
html body input[type="email"],
html body input[type="password"],
html body input[type="tel"],
html body input[type="search"],
html body input[type="number"],
html body .select2-container--default .select2-selection--single,
html body .select2-container--default .select2-selection--multiple {
  background: #fff !important;
  border: 1px solid var(--ds-line-strong) !important;
  border-radius: var(--ds-r-md) !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  min-height: var(--ds-control-h) !important;
  font-size: var(--ds-fs-md) !important;
  box-shadow: none !important;
  color-scheme: light !important;
}

html body .form-control:focus,
html body select:focus,
html body textarea:focus {
  border-color: var(--ds-brand) !important;
  box-shadow: 0 0 0 3px var(--ds-brand-soft) !important;
  outline: none !important;
}

html body label:not(.btn),
html body .cs-form-1 label,
html body .form-group label {
  color: var(--ds-muted) !important;
  font-size: var(--ds-fs-sm) !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

html body ::placeholder {
  color: var(--ds-faint) !important;
  opacity: 1 !important;
}

html body .select2-dropdown {
  background: #fff !important;
  border-color: var(--ds-line) !important;
}

html body .select2-results__option {
  background: #fff !important;
  color: var(--ds-text-soft) !important;
}

html body .select2-results__option--highlighted[aria-selected] {
  background: var(--ds-brand-soft) !important;
  color: var(--ds-brand-text) !important;
}


/* ========== HEADER ========== */
html body .cs-sticky-header-1 {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid var(--ds-line) !important;
  box-shadow: 0 4px 20px rgba(26, 31, 54, 0.04) !important;
}

html body .cs-sticky-header-1.header-transparent:not(.is-scrolled) {
  background: rgba(255, 255, 255, 0.55) !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

html body .cs-sticky-header-1 .main-a-1,
html body .cs-sticky-header-1 .cs-main-menu-1 a {
  color: var(--ds-text-soft) !important;
  font-size: var(--ds-fs-sm) !important;
  font-weight: 650 !important;
  letter-spacing: 0.04em !important;
}

html body .cs-sticky-header-1 .main-a-1:hover {
  color: var(--ds-brand-text) !important;
}

html body .cs-sticky-header-1 .cs-header-btn-1,
html body .cs-sticky-header-1 .cs-header-btn-2 {
  width: var(--ds-control-h-sm) !important;
  height: var(--ds-control-h-sm) !important;
  border-radius: var(--ds-r-pill) !important;
  background: var(--ds-elev) !important;
  border: 1px solid var(--ds-line) !important;
  color: var(--ds-text) !important;
}

html body .cs-sticky-header-1 .cs-header-btn-1 i,
html body .cs-sticky-header-1 .cs-header-btn-2 i {
  color: var(--ds-text) !important;
}

/* Dil seçici — açık */
html body #headerLanguageOption,
html body .cs-language-select {
  background-color: #fff !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  border: 1px solid var(--ds-line-strong) !important;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ds-text) 50%),
    linear-gradient(135deg, var(--ds-text) 50%, transparent 50%) !important;
  background-position:
    calc(100% - 14px) calc(50% - 1px),
    calc(100% - 9px) calc(50% - 1px) !important;
  background-size: 5px 5px, 5px 5px !important;
  background-repeat: no-repeat !important;
  color-scheme: light !important;
}


/* ========== FOOTER ========== */
html body .cs-footer-1,
html body footer.cs-footer-1,
html body .pr-footer,
html body footer .cs-footer-1 {
  background:
    linear-gradient(180deg, #eef5f4 0%, #e8eef8 55%, #eef2f8 100%) !important;
  border-top: 1px solid rgba(15, 158, 150, 0.18) !important;
  color: var(--ds-muted) !important;
  padding-top: 48px !important;
  padding-bottom: 28px !important;
}

/* Kill hero-sized .cs-wbg-head-1 inside footer */
html body .cs-footer-1 h5,
html body .cs-footer-1 h5.cs-wbg-head-1,
html body .cs-footer-1 h5.cs-wbg-head-2,
html body .cs-footer-1 .cs-wbg-head-1,
html body .cs-footer-1 .cs-wbg-head-2,
html body .cs-footer-1 .cs-wbg-head-1 span,
html body .cs-footer-1 .cs-wbg-head-2 span {
  font-family: var(--ds-font) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  margin: 0 0 14px !important;
  min-height: 2.6em !important;
  display: flex !important;
  align-items: flex-end !important;
  background: none !important;
  background-image: none !important;
}

html body .cs-footer-1 .cs-wbg-head-1 span::before,
html body .cs-footer-1 .cs-wbg-head-1 span::after,
html body .cs-footer-1 .cs-wbg-head-2 span::before,
html body .cs-footer-1 .cs-wbg-head-2 span::after {
  display: none !important;
  content: none !important;
}

html body .cs-footer-1 a,
html body .pr-footer a,
html body .cs-footer-1 .cs-footer-menu-1 a {
  color: #3d465c !important;
  -webkit-text-fill-color: #3d465c !important;
  font-size: 14px !important;
  font-weight: 550 !important;
  line-height: 1.45 !important;
  opacity: 1 !important;
}

html body .cs-footer-1 a:hover,
html body .cs-footer-1 .cs-footer-menu-1 a:hover {
  color: var(--ds-brand-text, #0b827b) !important;
  -webkit-text-fill-color: var(--ds-brand-text, #0b827b) !important;
}

html body .cs-footer-1 .text-1,
html body .cs-footer-1 .cs-download-app-1 .text-1 {
  color: #5b657a !important;
  -webkit-text-fill-color: #5b657a !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin: 14px 0 10px !important;
  opacity: 1 !important;
}

html body .cs-footer-1 span:not(.cs-wbg-head-1 span):not(.cs-wbg-head-2 span) {
  font-weight: inherit !important;
}

html body .cs-footer-menu-2 a {
  overflow: visible !important;
  white-space: nowrap !important;
  color: #3d465c !important;
  -webkit-text-fill-color: #3d465c !important;
  font-weight: 650 !important;
  font-size: 13px !important;
}

html body .cs-footer-menu-2 li.active a {
  color: var(--ds-brand-text, #0b827b) !important;
  -webkit-text-fill-color: var(--ds-brand-text, #0b827b) !important;
}


/* ========== TABS / ACCORDION ========== */
html body .cs-navTabs-1 .nav-link,
html body .nav-tabs .nav-link {
  color: var(--ds-muted) !important;
  border: 0 !important;
  border-radius: var(--ds-r-pill) !important;
  font-weight: 650 !important;
  background: transparent !important;
}

html body .cs-navTabs-1 .nav-link.active,
html body .nav-tabs .nav-link.active {
  color: var(--ds-brand-text) !important;
  background: var(--ds-brand-soft) !important;
}

html body .cs-accordion-1 .card,
html body .cs-accordion-2 .card {
  background: #fff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: var(--ds-r-md) !important;
}

html body .cs-accordion-1 .btn-link,
html body .cs-accordion-2 .btn-link,
html body .cs-accordion-1 .card-header button {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-weight: 650 !important;
}

html body .cs-accordion-1 .card-body,
html body .cs-accordion-1 .card-body * {
  color: var(--ds-muted) !important;
}


/* ========== MODAL / TOAST ========== */
html body .modal-content {
  background: #fff !important;
  border: 1px solid var(--ds-line) !important;
  color: var(--ds-text-soft) !important;
}

html body .modal-head-1,
html body .modal-title {
  color: var(--ds-text) !important;
}

html body .swal2-popup,
html body .swal2-toast.swal2-popup {
  background: #fff !important;
  color: var(--ds-text) !important;
  border: 1px solid var(--ds-line) !important;
  box-shadow: var(--ds-shadow) !important;
}

html body .swal2-title,
html body .swal2-html-container {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
}


/* ========== DROPDOWN ========== */
/* Desktop / floating menus only — mobile drawer submenu is accordion (see mobile-lock) */
html body .csgdd1-d-1,
html body .dropdown-menu {
  background: #fff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: var(--ds-r-md) !important;
  box-shadow: var(--ds-shadow) !important;
}

html body .csgdd1-m-l-1,
html body .dd-menu-1 a,
html body .dropdown-item,
html body .level-link-2 {
  color: var(--ds-text-soft) !important;
}

html body .csgdd1-m-l-1:hover,
html body .dd-menu-1 a:hover,
html body .dropdown-item:hover {
  background: var(--ds-elev) !important;
  color: var(--ds-brand-text) !important;
}


/* ========== RENT — açık soft ========== */
html body .cs-rentcar-section-1 .cs-loc-date-d-1 {
  background: #fff !important;
  border: 1px solid var(--ds-line) !important;
}

html body .cs-rentcar-section-2 .csrcr1-col-1 {
  background: #f7f9fc !important;
  border-right: 1px solid var(--ds-line) !important;
}

html body .cs-rentcar-section-2 .cs-car-box-1 {
  background: #fff !important;
}

html body .cs-rentcar-section-2 .cs-car-box-1 .desc-3 i,
html body .cs-car-box-1 .fa-gas-pump,
html body .cs-car-box-1 .bain-doc,
html body .cs-car-box-1 .bain-gear {
  color: var(--ds-brand) !important;
}


/* ========== BANNER / FAQ ========== */
html body .cs-banner-sec-1,
html body .cs-banner-sec-1.cs-banner-sec-1--soft {
  background: linear-gradient(135deg, #e8f7f4 0%, #f4f1ff 52%, #eef3fb 100%) !important;
  color: var(--ds-text) !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body .cs-banner-sec-1 .cs-banner-wrapper,
html body .cs-banner-sec-1--soft .cs-banner-wrapper {
  background-image: none !important;
  background-color: transparent !important;
  background-size: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: clamp(36px, 5vw, 64px) var(--ds-pad-x) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  filter: none !important;
}

html body .cs-banner-sec-1 .cs-banner-wrapper::before,
html body .cs-banner-sec-1 .cs-banner-wrapper::after {
  display: none !important;
  content: none !important;
}

html body .cs-banner-sec-1 .cs-banner-textbox-1 {
  width: 100% !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding: 0 !important;
}

html body .cs-banner-sec-1 h1,
html body .cs-banner-sec-1 .cs-wbg-head-1,
html body .cs-banner-sec-1 .cs-title-1 {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  text-shadow: none !important;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem) !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
}


/* ========== SYC / AUTH — beyaz sızıntı yerine soft light ========== */
html body .cs-syc-sec-2,
html body .cs-syc-sec-3,
html body .cs-syc-sec-4,
html body .cs-syc-sec1 {
  background: transparent !important;
  color: var(--ds-text-soft) !important;
}

html body .cs-syc-infobox {
  background: #fff !important;
}

html body .cs-login-form-c-1 .cs-wbg-head-3,
html body .cs-login-form-c-1 .cs-wbg-head-3 span {
  color: var(--ds-text) !important;
  background: transparent !important;
}


/* ========== MOBİL MENÜ ========== */
html body .cs-mobile-menu-d-1 {
  background: rgba(255, 255, 255, 0.98) !important;
}

html body .cs-mobile-menu-1 .level-link-1 {
  color: var(--ds-text) !important;
  border-bottom: 1px solid var(--ds-line) !important;
}


/* ========== QUICK CTA ========== */
html body .quick-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 40px !important;
  padding: 0 16px !important;
  border-radius: var(--ds-r-pill) !important;
  background: var(--ds-brand-soft) !important;
  border: 1px solid rgba(15, 158, 150, 0.25) !important;
  color: var(--ds-brand-text) !important;
  font-weight: 650 !important;
}


/* ========== ICON renkleri açık zeminde ========== */
html body .cs-icon-box-1 .desc-1 i,
html body .cs-loc-date-d-1 i[class^="bain-"] {
  color: var(--ds-brand) !important;
}

html body .cs-rent-step-icon {
  color: var(--ds-accent) !important;
}


/* ========== SECTION ========== */
html body section.section,
html body .cs-homepage-sec-9,
html body .cs-homepage-sec-10,
html body .cs-homepage-sec-11 {
  padding-top: var(--ds-section-y) !important;
  padding-bottom: var(--ds-section-y) !important;
}

html body .container,
html body .container-2 {
  padding-left: var(--ds-pad-x) !important;
  padding-right: var(--ds-pad-x) !important;
}


/* ========== PAGINATION ========== */
html body .pagination .page-link {
  background: #fff !important;
  border: 1px solid var(--ds-line) !important;
  color: var(--ds-text-soft) !important;
  border-radius: var(--ds-r-sm) !important;
}

html body .pagination .page-item.active .page-link {
  background: var(--ds-brand) !important;
  border-color: var(--ds-brand) !important;
  color: #fff !important;
}


/* ========== Dark-class kalıntılarını nötrle ========== */
html.sharingo-ui-dark-premium body,
html[data-theme="dark"] body {
  /* design-standard last: light soft kazanır */
  color: var(--ds-text-soft) !important;
}


@media (max-width: 767.98px) {
  :root {
    --ds-pad-card: 14px;
    --ds-control-h: 46px;
    --ds-fs-md: 14px;
  }

  html body .cs-primary-btn-1,
  html body .cs-secondary-btn-1,
  html body button[type="submit"]:not(.close) {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* =====================================================================
   SEARCH BAR — konum boşluğu / tarih yamukluğu / yuvarlak Ara
   Home + Rent ortak
   ===================================================================== */

html body .cs-loc-date-d-1 {
  display: grid !important;
  grid-template-columns: minmax(140px, 0.9fr) minmax(280px, 1.6fr) auto !important;
  align-items: stretch !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 8px !important;
  background: #ffffff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: var(--ds-r-lg) !important;
  box-shadow: var(--ds-shadow-sm) !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 72px !important;
}

html body .cs-loc-date-d-1 .csld1-col-1,
html body .cs-loc-date-d-1 .csld1-col-2,
html body .cs-loc-date-d-1 .csld1-col-3 {
  float: none !important;
  display: flex !important;
  align-items: center !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 64px !important;
  height: auto !important;
  margin: 0 !important;
  flex: none !important;
  border-bottom: 0 !important;
  box-sizing: border-box !important;
}

/* Konum — içeriğe göre, gereksiz boşluk yok */
html body .cs-loc-date-d-1 .csld1-col-1 {
  grid-column: 1 !important;
  padding: 10px 14px !important;
  border-right: 1px solid var(--ds-line) !important;
}

html body .cs-loc-date-d-1 .csld1-col-1 .cs-icon-box-1,
html body .cs-loc-date-d-1 .csld1-col-2 .cs-icon-box-1 {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 12px !important;
  row-gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  flex-wrap: nowrap !important;
}

html body .cs-loc-date-d-1 .csld1-col-1.active,
html body .cs-loc-date-d-1 .csld1-col-2.active {
  background: transparent !important;
  border-radius: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

html body .cs-loc-date-d-1 .cs-icon-box-1::before,
html body .cs-loc-date-d-1 .cs-icon-box-1::after,
html body .cs-loc-date-d-1 .csld1-col-1.active .cs-icon-box-1::after,
html body .cs-loc-date-d-1 .csld1-col-2.active .cs-icon-box-1::after {
  content: none !important;
  display: none !important;
}

html body .cs-loc-date-d-1 .csld1-col-1 .csib1-col-2 {
  min-width: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  flex: 1 1 auto !important;
}

html body .cs-loc-date-d-1 .csld1-col-1 .form-control,
html body .cs-loc-date-d-1 .csld1-col-1 input.jsSearchLoc1 {
  width: 100% !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Tarihler — aynı satır, aynı yükseklik */
html body .cs-loc-date-d-1 .csld1-col-2 {
  grid-column: 2 !important;
  padding: 8px 12px !important;
  border-right: 1px solid var(--ds-line) !important;
}

html body .cs-loc-date-d-1 .csld1-col-2 > .row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  gap: 8px 12px !important;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

html body .cs-loc-date-d-1 .csld1-col-2 > .row > [class*="col-"] {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  min-height: 48px !important;
}

/* Tarih çifti (cs-date-pair) — bootstrap row yok */
html body .cs-loc-date-d-1 .cs-date-pair {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: stretch !important;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
}

html body .cs-loc-date-d-1 .cs-date-pair > .cs-icon-box-1 + .cs-icon-box-1 {
  border-left: 1px solid var(--ds-line) !important;
  padding-left: 14px !important;
}

html body .cs-loc-date-d-1 .cs-date-pair > .cs-icon-box-1:first-child {
  padding-right: 14px !important;
}

/* Eski boş-ikon kuralı KALDIRILDI — tek kolon grid ikonu üste itiyordu */

html body .cs-loc-date-d-1 .cs-icon-box-1 label {
  display: block !important;
  margin: 0 0 2px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: var(--ds-faint) !important;
  line-height: 1.2 !important;
}

html body .cs-loc-date-d-1 .cs-icon-box-1 .desc-2,
html body .cs-loc-date-d-1 .jsStartTimeZone,
html body .cs-loc-date-d-1 .jsEndTimeZone,
html body .cs-loc-date-d-1 .form-control:not(#jsdatetimes1) {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--ds-text) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}

html body .cs-loc-date-d-1 .csib1-col-1 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  margin: 0 !important;
  border-radius: 10px !important;
  background: var(--ds-brand-soft) !important;
}

html body .cs-loc-date-d-1 .csib1-col-1 .desc-1 {
  margin: 0 !important;
  line-height: 1 !important;
}

html body .cs-loc-date-d-1 .csib1-col-1 i {
  color: var(--ds-brand) !important;
}

/* Ara butonu — PILL, daire değil */
html body .cs-loc-date-d-1 .csld1-col-3 {
  grid-column: 3 !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: 10px 12px !important;
  justify-content: center !important;
  border-right: 0 !important;
}

html body .cs-loc-date-d-1 .csld1-col-3 .cs-secondary-btn-1,
html body .cs-loc-date-d-1 #searchButton,
html body .cs-rentcar-section-1 #searchButton,
html body .cs-rentcar-section-1 .csld1-col-3 .cs-secondary-btn-1,
html body .cs-homepage-sec-2 .cs-loc-date-d-1 .cs-secondary-btn-1 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 120px !important;
  max-width: none !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  aspect-ratio: auto !important;
  padding: 0 22px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 14px !important; /* pill daire olmasın: sabit yükseklik + yatay padding */
  background: var(--ds-brand) !important;
  background-image: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  box-shadow: 0 8px 18px rgba(15, 158, 150, 0.28) !important;
  line-height: 1 !important;
}

/* Gizli datetime input taşmasın */
html body .cs-loc-date-d-1 .cs-datetime-picker-1 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 1023.98px) {
  html body .cs-loc-date-d-1 {
    grid-template-columns: 1fr !important;
  }

  html body .cs-loc-date-d-1 .csld1-col-1,
  html body .cs-loc-date-d-1 .csld1-col-2,
  html body .cs-loc-date-d-1 .csld1-col-3 {
    grid-column: 1 !important;
    width: 100% !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--ds-line) !important;
    min-height: 56px !important;
  }

  html body .cs-loc-date-d-1 .csld1-col-3 {
    border-bottom: 0 !important;
  }

  html body .cs-loc-date-d-1 .csld1-col-2 > .row {
    grid-template-columns: 1fr 1fr !important;
  }

  html body .cs-loc-date-d-1 .csld1-col-3 .cs-secondary-btn-1,
  html body .cs-loc-date-d-1 #searchButton {
    width: 100% !important;
    min-width: 100% !important;
    border-radius: 12px !important;
    height: 48px !important;
    max-height: 48px !important;
  }
}

@media (max-width: 479.98px) {
  html body .cs-loc-date-d-1 .csld1-col-2 > .row,
  html body .cs-loc-date-d-1 .cs-date-pair {
    grid-template-columns: 1fr !important;
  }

  html body .cs-loc-date-d-1 .cs-date-pair > .cs-icon-box-1 + .cs-icon-box-1,
  html body .cs-loc-date-d-1 .csld1-col-2 > .row > [class*="col-"] + [class*="col-"] {
    border-left: 0 !important;
    padding-left: 0 !important;
    border-top: 1px solid var(--ds-line) !important;
    padding-top: 8px !important;
  }
}


/* =====================================================================
   TEXT CLIP FIX — kesilen TR / nav / buton / kart metinleri
   ===================================================================== */

/* Dil seçici: legacy daire (border-radius:50% + width:100%) öldü */
html body select#headerLanguageOption,
html body select#headerLanguageOption.cs-language-select,
html body .cs-sticky-header-1 select.cs-language-select,
html body .cs-sticky-header-1 .cshr2-col-1 select.cs-language-select,
html body select.cs-language-select {
  display: block !important;
  box-sizing: border-box !important;
  width: 72px !important;
  min-width: 72px !important;
  max-width: 84px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  padding: 0 28px 0 12px !important;
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  line-height: 38px !important;
  text-align: left !important;
  text-indent: 0 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  background-color: #fff !important;
  border: 1px solid var(--ds-line-strong) !important;
  border-radius: 12px !important; /* daire YASAK */
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ds-text) 50%),
    linear-gradient(135deg, var(--ds-text) 50%, transparent 50%) !important;
  background-position:
    calc(100% - 12px) calc(50% - 1px),
    calc(100% - 7px) calc(50% - 1px) !important;
  background-size: 5px 5px, 5px 5px !important;
  background-repeat: no-repeat !important;
  color-scheme: light !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body .cs-sticky-header-1 .cshr2-col-1,
html body .cs-header-row-2 .cshr2-col-1 {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  flex-basis: auto !important;
  width: auto !important;
  min-width: 72px !important;
  max-width: none !important;
  overflow: visible !important;
}

/* Header metinleri kesilmesin */
html body .cs-sticky-header-1,
html body .cs-sticky-header-1 .cs-header-row-1,
html body .cs-sticky-header-1 .cs-header-row-2,
html body .cs-sticky-header-1 .cs-main-menu-1,
html body .cs-sticky-header-1 .main-a-1,
html body .cs-sticky-header-1 .cs-header-btn-3,
html body .cs-sticky-header-1 .cs-header-btn-3 .ds-in-1,
html body .cs-sticky-header-1 .name-t-1 {
  overflow: visible !important;
  text-overflow: clip !important;
  max-height: none !important;
}

html body .cs-sticky-header-1 .main-a-1,
html body .cs-sticky-header-1 .cs-main-menu-1 a {
  white-space: nowrap !important;
  line-height: 1.2 !important;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

html body .cs-sticky-header-1 .cs-header-btn-3 {
  height: 40px !important;
  min-height: 40px !important;
  max-height: none !important;
  line-height: 1 !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
  overflow: visible !important;
}

html body .cs-sticky-header-1 .cs-header-btn-3 .ds-in-1 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  overflow: visible !important;
  line-height: 1.2 !important;
}

/* Kart başlık/açıklama: sabit max-height ile harf kesmeyi kaldır */
html body .cs-campaign-box-1 .text-div-1 .head-1,
html body .cs-blog-box-1 .text-div-1 .head-1,
html body .cs-campaign-box-1 .text-div-1 .desc-1,
html body .cs-blog-box-1 .text-div-1 .desc-1,
html body .cs-campaign-box-1 .head-1,
html body .cs-blog-box-1 .head-1,
html body .cs-campaign-box-1 .desc-1,
html body .cs-blog-box-1 .desc-1 {
  max-height: none !important;
  min-height: 0 !important;
  height: auto !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
}

html body .cs-campaign-box-1 .desc-1,
html body .cs-blog-box-1 .desc-1,
html body .cs-campaign-box-1 .text-div-1 .desc-1,
html body .cs-blog-box-1 .text-div-1 .desc-1 {
  color: var(--ds-muted) !important;
  -webkit-text-fill-color: var(--ds-muted) !important;
}

/* Nav dropdown okları metni kesmesin */
html body .dd-menu-l-1,
html body .level-link-1 {
  overflow: visible !important;
  white-space: nowrap !important;
  line-height: 1.25 !important;
}

/* Footer dil TR/EN — sharingo-brand / footer block owns styles */

@media (max-width: 1100px) {
  html body .cs-header-row-2 .cshr2-col-1,
  html body .cs-sticky-header-1 .cshr2-col-1 {
    flex: 0 0 auto !important;
    max-width: none !important;
    min-width: 72px !important;
    width: auto !important;
  }
}


/* =====================================================================
   HOME SEARCH BAR — sola sıkışma / Ara kesilmesi / boş bant
   ===================================================================== */

html body .cs-homepage-sec-2,
html body section.cs-homepage-sec-2 {
  margin-top: -24px !important;
  margin-bottom: 0 !important;
  padding-top: 12px !important;
  padding-bottom: 28px !important;
  background: transparent !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

html body .cs-homepage-sec-2 > .container,
html body .cs-homepage-sec-2 #formHomeSearch {
  width: 100% !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

html body .cs-homepage-sec-2 .cs-loc-date-d-1 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

@media (min-width: 1024px) {
  html body .cs-loc-date-d-1,
  html body .cs-homepage-sec-2 .cs-loc-date-d-1,
  html body .cs-rentcar-section-1 .cs-loc-date-d-1 {
    display: grid !important;
    grid-template-columns: minmax(160px, 1.1fr) minmax(280px, 1.8fr) auto !important;
    grid-template-rows: auto !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 72px !important;
    padding: 8px !important;
  }

  html body .cs-loc-date-d-1 .csld1-col-1,
  html body .cs-loc-date-d-1 .csld1-col-2 {
    flex: none !important;
    max-width: none !important;
    min-width: 0 !important;
    width: auto !important;
    border-top: 0 !important;
  }

  html body .cs-loc-date-d-1 .csld1-col-1 { grid-column: 1 !important; }
  html body .cs-loc-date-d-1 .csld1-col-2 { grid-column: 2 !important; }

  html body .cs-loc-date-d-1 .csld1-col-3 {
    grid-column: 3 !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    border-top: 0 !important;
    align-self: center !important;
    justify-content: center !important;
  }

  html body .cs-loc-date-d-1 .csld1-col-3 .cs-secondary-btn-1,
  html body .cs-loc-date-d-1 #searchButton {
    width: auto !important;
    min-width: 120px !important;
    max-width: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  html body .cs-loc-date-d-1 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    overflow: visible !important;
    height: auto !important;
    padding: 8px !important;
  }

  html body .cs-loc-date-d-1 .csld1-col-1 { grid-column: 1 !important; grid-row: 1 !important; }
  html body .cs-loc-date-d-1 .csld1-col-2 { grid-column: 2 !important; grid-row: 1 !important; }
  html body .cs-loc-date-d-1 .csld1-col-3 {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    border-top: 1px solid var(--ds-line) !important;
  }

  html body .cs-loc-date-d-1 .csld1-col-3 .cs-secondary-btn-1 {
    width: 100% !important;
  }
}
/* =====================================================================
   HABER VER MODAL � ikon �st �ste / okunmayan chip / soft light
   ===================================================================== */

html body .cs-signal-cont-1 .cssc1-d-1 .cssc1d1-inn-1 {
  background: #ffffff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 48px rgba(26, 31, 54, 0.16) !important;
  width: min(480px, calc(100vw - 24px)) !important;
  max-width: calc(100vw - 24px) !important;
  padding: 8px 12px 16px !important;
  color: var(--ds-text) !important;
  overflow: visible !important;
  right: 0 !important;
}

html body .cs-signal-cont-1 .cssc1-d-1 .cssc1d1-inn-2 {
  background: rgba(26, 31, 54, 0.45) !important;
  opacity: 1 !important;
}

html body .cs-signal-cont-1 .close-btn-1 {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  color: #1a1f36 !important;
  -webkit-text-fill-color: #1a1f36 !important;
  background: #f7f9fc !important;
  border: 1px solid rgba(26, 31, 54, 0.14) !important;
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

html body .cs-signal-cont-1 .close-btn-1 i {
  color: #1a1f36 !important;
  font-size: 16px !important;
  opacity: 1 !important;
}

html body .cs-signal-cont-1 .fvc1-head-1 {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin: 0 0 12px !important;
}

html body .cs-signal-cont-1 .fvc1-head-1 i {
  color: #0f9e96 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

/* Tarih kutuları — gerçek ikon (date-field-1), pseudo yok */
html body .cs-signal-cont-1 .date-box-1,
html body .date-box-1 {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  width: 100% !important;
}

html body .cs-signal-cont-1 .date-box-1 label,
html body .date-box-1 label {
  position: static !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
  color: var(--ds-muted) !important;
  -webkit-text-fill-color: var(--ds-muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

html body .cs-signal-cont-1 .date-box-1 label::before,
html body .cs-signal-cont-1 .date-box-1 label:before,
html body .date-box-1 label::before,
html body .date-box-1 label:before,
html body .cs-signal-cont-1 .date-box-1::after,
html body .date-box-1::after {
  content: none !important;
  display: none !important;
}

html body .cs-signal-cont-1 .date-box-1 .date-field-1,
html body .date-box-1 .date-field-1 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  box-sizing: border-box !important;
  background: #fff !important;
  border: 1px solid var(--ds-line-strong) !important;
  border-radius: 12px !important;
}

html body .cs-signal-cont-1 .date-box-1 .date-field-1 > i,
html body .date-box-1 .date-field-1 > i {
  flex: 0 0 auto !important;
  color: #0f9e96 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

html body .cs-signal-cont-1 .date-box-1 .date-field-1 input.form-control,
html body .cs-signal-cont-1 .date-box-1 .date-field-1 input,
html body .date-box-1 .date-field-1 input.form-control,
html body .date-box-1 .date-field-1 input {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 46px !important;
  height: 46px !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  text-indent: 0 !important;
}

html body .cs-signal-cont-1 .form-content-1 {
  max-height: min(70vh, 560px) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: 0 4px !important;
  color: var(--ds-text) !important;
}

html body .cs-signal-cont-1 .form-content-1 h5 {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin: 0 0 12px !important;
}

html body .cs-signal-cont-1 .form-val-cont-1 {
  padding: 14px 10px !important;
}

html body .cs-signal-cont-1 .form-val-cont-1.border-w-1 {
  border-bottom: 1px solid var(--ds-line) !important;
}

html body .cs-signal-cont-1 .custom-range-1 {
  position: relative !important;
  padding: 8px 4px 28px !important;
  overflow: visible !important;
}

html body .cs-signal-cont-1 .custom-range-1 .text-div-1 {
  position: relative !important;
  min-height: 28px !important;
  margin-bottom: 8px !important;
  overflow: visible !important;
}

html body .cs-signal-cont-1 .distanceSignalVal,
html body .cs-signal-cont-1 .custom-range-1 .text-div-1 span {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  z-index: 3 !important;
}

html body .cs-signal-cont-1 #distanceSliderRange.ui-slider {
  height: 6px !important;
  border: 0 !important;
  background: var(--ds-elev-2) !important;
  border-radius: 999px !important;
  margin: 10px 0 0 !important;
}

html body .cs-signal-cont-1 #distanceSliderRange .ui-slider-range {
  background: var(--ds-brand) !important;
  border-radius: 999px !important;
}

html body .cs-signal-cont-1 #distanceSliderRange .ui-slider-handle {
  width: 20px !important;
  height: 20px !important;
  top: 50% !important;
  margin-top: -10px !important;
  border-radius: 50% !important;
  border: 2px solid #fff !important;
  background: var(--ds-brand) !important;
  box-shadow: 0 4px 10px rgba(15, 158, 150, 0.35) !important;
}

/* Vites chip grid � okunur, ta�maz, �st �ste binmez */
html body .cs-signal-cont-1 .item-list-1 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  align-items: stretch !important;
}

html body .cs-signal-cont-1 .item-list-1 > li {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  flex: 1 1 calc(50% - 10px) !important;
  min-width: 120px !important;
  max-width: 100% !important;
}

html body .cs-signal-cont-1 .item-list-1 .cs-checkbox-1 {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
}

html body .cs-signal-cont-1 .item-list-1 .cs-checkbox-1 input {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  pointer-events: none !important;
}

html body .cs-signal-cont-1 .item-list-1 .cs-checkbox-1 label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 44px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  border: 1px solid var(--ds-line-strong) !important;
  background: #ffffff !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  text-align: center !important;
  white-space: normal !important;
  overflow: visible !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

html body .cs-signal-cont-1 .item-list-1 .cs-checkbox-1 label i {
  color: #0f9e96 !important;
  font-size: 15px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

html body .cs-signal-cont-1 .item-list-1 .cs-checkbox-1 label span {
  min-width: 0 !important;
}

html body .cs-signal-cont-1 .item-list-1 .cs-checkbox-1 input:checked + label {
  background: var(--ds-brand-soft) !important;
  border-color: var(--ds-brand) !important;
  color: var(--ds-brand-text) !important;
  -webkit-text-fill-color: var(--ds-brand-text) !important;
  box-shadow: inset 0 0 0 1px rgba(15, 158, 150, 0.25) !important;
}

html body .cs-signal-cont-1 .item-list-1 .cs-checkbox-1 input:checked + label i {
  color: #0b827b !important;
}

/* Alt butonlar */
html body .cs-signal-cont-1 .form-bottom-content-1 {
  max-width: none !important;
  width: 100% !important;
  padding: 16px 10px 8px !important;
  margin: 0 !important;
}

html body .cs-signal-cont-1 .form-bottom-content-1 .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin: 0 !important;
}

html body .cs-signal-cont-1 .form-bottom-content-1 .form-group,
html body .cs-signal-cont-1 .form-bottom-content-1 [class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

html body .cs-signal-cont-1 .cs-secondary-btn-2 {
  width: 100% !important;
  min-height: 48px !important;
  border-radius: 14px !important;
  background: var(--ds-brand) !important;
  border: 0 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 18px rgba(15, 158, 150, 0.28) !important;
}

html body .cs-signal-cont-1 .cs-white-btn-1 {
  width: 100% !important;
  min-height: 48px !important;
  border-radius: 14px !important;
  background: #fff !important;
  border: 1px solid var(--ds-line-strong) !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-weight: 650 !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

@media (max-width: 575.98px) {
  html body .cs-signal-cont-1 .cssc1-d-1 .cssc1d1-inn-1 {
    right: 50% !important;
    transform: translateX(50%) !important;
    top: 72px !important;
    width: calc(100vw - 16px) !important;
  }

  html body .cs-signal-cont-1 .item-list-1 > li {
    flex: 1 1 100% !important;
  }

  html body .cs-signal-cont-1 .form-bottom-content-1 .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* =====================================================================
   AUTH + intl-tel-input � dropdown / +90 �st �ste binme YOK
   ===================================================================== */

html body .cs-login-main-row-1 {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 24px auto !important;
  min-height: min(720px, calc(100dvh - 120px)) !important;
  background: #fff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: var(--ds-shadow) !important;
}

html body .cs-login-main-row-1 > [class*="cslmr1-col-"],
html body .cs-login-main-row-1 > .cslmr1-col-1,
html body .cs-login-main-row-1 > .cslmr1-col-2 {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body .cs-login-form-c-1,
html body .cs-register-form-c-1 {
  background: #fff !important;
  color: var(--ds-text) !important;
  padding: clamp(24px, 4vw, 48px) !important;
  max-width: 520px !important;
  margin: 0 auto !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body .cs-login-form-c-1 .cs-wbg-head-3,
html body .cs-login-form-c-1 .cs-wbg-head-3 span,
html body .cs-register-form-c-1 .cs-wbg-head-3,
html body .cs-register-form-c-1 .cs-wbg-head-3 span {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  background: transparent !important;
}

html body .cs-login-form-c-1 .cs-global-desc-2,
html body .cs-login-form-c-1 .info-text-1,
html body .cs-register-form-c-1 .info-text-1 {
  color: var(--ds-muted) !important;
  -webkit-text-fill-color: var(--ds-muted) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  opacity: 1 !important;
}

html body .cs-login-form-c-1 .info-text-1 a,
html body .cs-register-form-c-1 .info-text-1 a {
  color: var(--ds-brand-text) !important;
  font-weight: 700 !important;
}

/* intlTelInput shell — tek kutu */
html body .iti,
html body .cs-form-1 .iti,
html body .form-group .iti {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid var(--ds-line-strong) !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

html body .iti__flag-container {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  height: 100% !important;
  z-index: 3 !important;
}

html body .iti__selected-flag,
html body .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
html body .iti--separate-dial-code .iti__selected-flag {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  height: 100% !important;
  min-height: 48px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  background-color: #f7f9fc !important;
  background-image: none !important; /* only solid fill — do not kill child .iti__flag sprite */
  border: 0 !important;
  border-right: 1px solid var(--ds-line-strong) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  outline: none !important;
}

/* Bayrak sprite — vendor bundle path fix + görünürlük garantisi */
html body .iti__flag {
  display: inline-block !important;
  width: 20px !important;
  background-image: url("../img/other/flags.png") !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  flex-shrink: 0 !important;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  html body .iti__flag {
    background-image: url("../img/other/flags@2x.png") !important;
    background-size: 5652px 15px !important;
  }
}

html body .iti__selected-dial-code,
html body .iti--separate-dial-code .iti__selected-dial-code {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

html body .iti__arrow {
  border: 0 !important;
  width: 10px !important;
  height: 10px !important;
  margin-left: 4px !important;
  opacity: 0.7 !important;
}

/* Input: dial code i�in sol bo�luk � placeholder +90 alt�na G�RMEZ */
html body .iti input.form-control,
html body .iti input[type="text"],
html body .iti input[type="tel"],
html body .iti__tel-input,
html body .iti--separate-dial-code input.form-control,
html body .iti--separate-dial-code input[type="text"],
html body .iti--separate-dial-code input,
html body .jsGlobalCountry1.form-control,
html body input.jsGlobalCountry1 {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 48px !important;
  height: 48px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 14px !important;
  padding-left: 108px !important; /* flag + +XXX + ok */
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.04em !important;
  caret-color: var(--ds-brand, #0f9e96) !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  outline: none !important;
}

html body .p-phone-field input.jsGlobalCountry1,
html body .p-phone-field .iti input.form-control,
html body .p-phone-field .iti input {
  padding-right: 44px !important;
}

html body .iti--separate-dial-code.iti--sdc-3 input,
html body .iti--separate-dial-code.iti--sdc-3 input.form-control {
  padding-left: 118px !important;
}

html body .iti--separate-dial-code.iti--sdc-4 input,
html body .iti--separate-dial-code.iti--sdc-4 input.form-control {
  padding-left: 128px !important;
}

html body .iti__country-list {
  z-index: 50 !important;
  max-width: min(340px, calc(100vw - 24px)) !important;
  max-height: 260px !important;
  overflow-y: auto !important;
  background: #ffffff !important;
  color: var(--ds-text) !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 14px !important;
  box-shadow: var(--ds-shadow) !important;
}

html body .iti__country {
  color: var(--ds-text) !important;
  padding: 10px 12px !important;
}

html body .iti__country.iti__highlight,
html body .iti__country:hover {
  background: var(--ds-brand-soft) !important;
  color: var(--ds-brand-text) !important;
}

html body .iti__dial-code {
  color: var(--ds-muted) !important;
}

/* Auth submit */
html body .cs-login-form-c-1 .cs-primary-btn-3,
html body .cs-register-form-c-1 .cs-primary-btn-3 {
  width: 100% !important;
  min-height: 48px !important;
  border-radius: 14px !important;
  background: var(--ds-brand) !important;
  border: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 18px rgba(15, 158, 150, 0.28) !important;
}

@media (max-width: 991.98px) {
  html body .cs-login-main-row-1 {
    grid-template-columns: 1fr !important;
    margin: 12px auto !important;
    min-height: 0 !important;
    max-width: calc(100% - 24px) !important;
  }

  html body .cs-login-main-row-1 .cslmr1-col-1,
  html body .cs-login-img-c-1,
  html body .cs-login-bg-div-1 {
    display: none !important;
  }

  html body .cs-login-form-c-1,
  html body .cs-register-form-c-1 {
    max-width: 100% !important;
    padding: 22px 18px !important;
  }
}

@media (max-width: 479.98px) {
  html body .iti--separate-dial-code input,
  html body .iti--separate-dial-code input.form-control,
  html body input.jsGlobalCountry1 {
    padding-left: 96px !important;
    font-size: 14px !important;
  }

  html body .iti__selected-flag {
    padding: 0 8px !important;
  }
}

/* =====================================================================
   FAQ PAGE — soft light, tek panel, sekme = accordion genişliği
   ===================================================================== */

html body.page-faq,
html body .cs-faq-sec-1 {
  background: transparent !important;
}

html body .cs-faq-sec-1 {
  padding: clamp(24px, 3.5vw, 48px) 0 clamp(40px, 5vw, 72px) !important;
}

html body .cs-faq-sec-1 .content-area-1,
html body .cs-faq-sec-1 .p-faq-panel {
  max-width: 880px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: clamp(16px, 2vw, 22px) !important;
  background: #ffffff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 22px !important;
  box-shadow: var(--ds-shadow-sm) !important;
  box-sizing: border-box !important;
}

/* Tabs — segmented tray, accordion ile aynı genişlik */
html body .cs-faq-sec-1 .cs-navTabs-1.nav-tabs,
html body .cs-faq-sec-1 .p-faq-panel__tabs {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 6px !important;
  border: 0 !important;
  margin: 0 0 18px !important;
  padding: 6px !important;
  background: #f3f6fb !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  width: 100% !important;
}

html body .cs-faq-sec-1 .cs-navTabs-1 .nav-item {
  margin: 0 !important;
  float: none !important;
  width: 100% !important;
}

html body .cs-faq-sec-1 .cs-navTabs-1 .nav-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 44px !important;
  padding: 10px 12px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  color: var(--ds-muted) !important;
  font-weight: 650 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

html body .cs-faq-sec-1 .cs-navTabs-1 .nav-link.active {
  background: #ffffff !important;
  color: var(--ds-brand-text) !important;
  -webkit-text-fill-color: var(--ds-brand-text) !important;
  box-shadow: 0 4px 14px rgba(26, 31, 54, 0.08) !important;
}

html body .cs-faq-sec-1 .cs-navTabs-content-1,
html body .cs-faq-sec-1 .p-faq-panel__body {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Category accordion — 680px legacy öldü */
html body .cs-faq-sec-1 .cs-accordion-1 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

html body .cs-faq-sec-1 .cs-accordion-1 > .card {
  background: #ffffff !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ds-line) !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

html body .cs-faq-sec-1 .cs-accordion-1 > .card:last-child {
  border-bottom: 0 !important;
}

html body .cs-faq-sec-1 .cs-accordion-1 > .card > .card-header {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

html body .cs-faq-sec-1 .cs-accordion-1 > .card > .card-header .btn-link {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 56px !important;
  padding: 16px 52px 16px 18px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: 16px !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  text-decoration: none !important;
  white-space: normal !important;
  box-shadow: none !important;
}

html body .cs-faq-sec-1 .cs-accordion-1 > .card > .card-header .btn-link:not(.collapsed),
html body .cs-faq-sec-1 .cs-accordion-1 > .card.is-open > .card-header .btn-link {
  color: var(--ds-brand-text) !important;
  -webkit-text-fill-color: var(--ds-brand-text) !important;
  background: rgba(15, 158, 150, 0.06) !important;
}

html body .cs-faq-sec-1 .cs-accordion-1 > .card > .card-header .btn-link::after {
  content: "" !important;
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  width: 10px !important;
  height: 10px !important;
  margin-top: -6px !important;
  border-right: 2px solid var(--ds-brand) !important;
  border-bottom: 2px solid var(--ds-brand) !important;
  transform: rotate(45deg) !important;
  transition: transform 0.2s ease !important;
  opacity: 1 !important;
  background: none !important;
  font-size: 0 !important;
}

html body .cs-faq-sec-1 .cs-accordion-1 > .card > .card-header .btn-link:not(.collapsed)::after {
  transform: rotate(-135deg) !important;
  margin-top: -2px !important;
}

html body .cs-faq-sec-1 .cs-accordion-1 > .card > .collapse > .card-body,
html body .cs-faq-sec-1 .cs-accordion-1 > .card > .collapsing > .card-body {
  background: #f8fafc !important;
  border-top: 0 !important;
  padding: 0 14px 16px !important;
  color: var(--ds-muted) !important;
}

/* Nested questions */
html body .cs-faq-sec-1 .cs-accordion-2 {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
}

html body .cs-faq-sec-1 .cs-accordion-2 > .card {
  background: #ffffff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  width: 100% !important;
}

html body .cs-faq-sec-1 .cs-accordion-2 > .card > .card-header {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

html body .cs-faq-sec-1 .cs-accordion-2 > .card > .card-header .btn-link {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 48px !important;
  padding: 14px 48px 14px 16px !important;
  margin: 0 !important;
  border: 0 !important;
  background: #ffffff !important;
  color: var(--ds-text-soft) !important;
  -webkit-text-fill-color: var(--ds-text-soft) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  text-decoration: none !important;
  white-space: normal !important;
}

html body .cs-faq-sec-1 .cs-accordion-2 > .card > .card-header .btn-link:not(.collapsed) {
  color: var(--ds-brand-text) !important;
  -webkit-text-fill-color: var(--ds-brand-text) !important;
  background: #f0faf7 !important;
}

html body .cs-faq-sec-1 .cs-accordion-2 > .card > .card-header .btn-link::after {
  content: "" !important;
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  width: 8px !important;
  height: 8px !important;
  margin-top: -5px !important;
  border-right: 2px solid var(--ds-brand) !important;
  border-bottom: 2px solid var(--ds-brand) !important;
  transform: rotate(45deg) !important;
  background: none !important;
  font-size: 0 !important;
}

html body .cs-faq-sec-1 .cs-accordion-2 > .card > .card-header .btn-link:not(.collapsed)::after {
  transform: rotate(-135deg) !important;
  margin-top: -1px !important;
}

html body .cs-faq-sec-1 .cs-accordion-2 > .card > .collapse > .card-body,
html body .cs-faq-sec-1 .cs-accordion-2 .card-body {
  background: #ffffff !important;
  border-top: 1px solid var(--ds-line) !important;
  padding: 14px 16px 16px !important;
  color: var(--ds-muted) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

html body .cs-faq-sec-1 .cs-accordion-2 .card-body *,
html body .cs-faq-sec-1 .cs-accordion-2 .card-body p {
  color: var(--ds-muted) !important;
  -webkit-text-fill-color: var(--ds-muted) !important;
  overflow: visible !important;
  max-height: none !important;
}

/* Banner search — soft bar */
html body .cs-banner-sec-1 .cs-search-box,
html body .cs-banner-sec-1--soft .cs-search-box,
html body.page-faq .cs-banner-sec-1 .cs-search-box {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: stretch !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 560px !important;
  height: auto !important;
  min-height: 52px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: 1px solid var(--ds-line-strong) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 28px rgba(26, 31, 54, 0.08) !important;
  justify-content: stretch !important;
}

html body .cs-banner-sec-1 .cs-search-box input,
html body .cs-banner-sec-1--soft .cs-search-box input,
html body.page-faq .cs-banner-sec-1 .cs-search-box input {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  min-width: 0 !important;
  min-height: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 52px !important;
  box-shadow: none !important;
  outline: none !important;
}

html body .cs-banner-sec-1 .cs-search-box input::placeholder {
  color: var(--ds-faint) !important;
  opacity: 1 !important;
}

html body .cs-banner-sec-1 .cs-search-box .cs-search-btn,
html body .cs-banner-sec-1 #searchFaq,
html body .cs-banner-sec-1--soft .cs-search-btn,
html body.page-faq .cs-banner-sec-1 .cs-search-btn {
  grid-column: 2 !important;
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex: none !important;
  width: auto !important;
  min-width: 112px !important;
  max-width: none !important;
  min-height: 52px !important;
  height: 52px !important;
  max-height: 52px !important;
  padding: 0 18px !important;
  margin: 0 !important;
  border: 0 !important;
  border-left: 1px solid var(--ds-line) !important;
  border-radius: 0 !important;
  background: var(--ds-brand) !important;
  background-image: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  box-shadow: none !important;
  aspect-ratio: auto !important;
  transform: none !important;
  filter: none !important;
  text-decoration: none !important;
}

html body .cs-banner-sec-1 .cs-search-btn i,
html body .cs-banner-sec-1 #searchFaq i {
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1 !important;
  margin: 0 !important;
}

html body .cs-banner-sec-1 .cs-title-1 {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  text-shadow: none !important;
}

@media (max-width: 575.98px) {
  html body .cs-faq-sec-1 .cs-navTabs-1.nav-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  html body .cs-banner-sec-1 .cs-search-box,
  html body .cs-banner-sec-1--soft .cs-search-box {
    grid-template-columns: 1fr !important;
    border-radius: 14px !important;
  }

  html body .cs-banner-sec-1 .cs-search-box .cs-search-btn,
  html body .cs-banner-sec-1 #searchFaq {
    width: 100% !important;
    min-width: 100% !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(15, 158, 150, 0.25) !important;
  }
}
/* =====================================================================
   SHARE YOUR CAR � premium soft hero + hizali form
   ===================================================================== */

html body .cs-shareyourcar-main,
html body .cs-syc-sec1,
html body .cs-syc-sec-2,
html body .cs-syc-sec-3,
html body .cs-syc-sec-4 {
  background: transparent !important;
  color: var(--ds-text-soft) !important;
}

html body .cs-syc-sec1 {
  padding: clamp(20px, 3vw, 40px) 0 8px !important;
}

html body .cs-syc-sec1 .cs-syc-1-main {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr) !important;
  gap: clamp(20px, 3vw, 40px) !important;
  align-items: center !important;
  max-width: 1180px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: clamp(20px, 3vw, 36px) !important;
  background: #ffffff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 24px !important;
  box-shadow: var(--ds-shadow) !important;
  overflow: hidden !important;
}

html body .cs-syc-sec1 .cs-syc-1-formbox,
html body .cs-syc-sec1 .cs-syc-1-imgbox {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}

html body .cs-syc-sec1 .cs-syc-sec-1-title {
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.35rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 22px !important;
  max-width: 18ch !important;
}

/* Form grid � esit satirlar, kayma yok */
html body .cs-syc-sec1 .cs-form-1 {
  width: 100% !important;
  margin: 0 !important;
}

html body .cs-syc-sec1 .cs-form-1 > .row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px 16px !important;
  margin: 0 !important;
  width: 100% !important;
  align-items: end !important;
}

html body .cs-syc-sec1 .cs-form-1 > .row > [class*="col-"] {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
}

html body .cs-syc-sec1 .form-group,
html body .cs-syc-sec1 .form-input-1 {
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
}

html body .cs-syc-sec1 .cs-global-select2-container-1,
html body .cs-syc-sec1 .cs-global-select2-container-2 {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

html body .cs-syc-sec1 label,
html body .cs-syc-sec1 .cs-start-btn__label {
  display: block !important;
  margin: 0 !important;
  min-height: 18px !important;
  color: var(--ds-muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

html body .cs-syc-sec1 .select2-container {
  width: 100% !important;
  display: block !important;
}

/* Native select fallback (select2 öncesi / yoksa) */
html body .cs-syc-sec1 select.cs-global-select2-1,
html body .cs-syc-sec1 select.cs-global-select2-2,
html body .cs-syc-sec1 select.form-control {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  min-height: 52px !important;
  height: 52px !important;
  padding: 0 42px 0 16px !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238b93a7' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 14px 14px !important;
  border: 1.5px solid rgba(26, 31, 54, 0.14) !important;
  border-radius: 14px !important;
  color: #152033 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  box-shadow: 0 1px 2px rgba(21, 32, 51, 0.04) !important;
  cursor: pointer !important;
}

html body .cs-syc-sec1 .select2-container--default .select2-selection--single,
html body .cs-syc-sec1 .cs-global-select2-container-1 .select2-selection--single,
html body .cs-syc-sec1 .cs-global-select2-container-2 .select2-selection--single {
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
  width: 100% !important;
  min-height: 52px !important;
  height: 52px !important;
  padding: 0 40px 0 16px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1.5px solid rgba(26, 31, 54, 0.14) !important;
  border-radius: 14px !important;
  box-shadow: 0 1px 2px rgba(21, 32, 51, 0.04) !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
  outline: none !important;
}

html body .cs-syc-sec1 .select2-container--default .select2-selection--single:hover {
  border-color: rgba(15, 158, 150, 0.45) !important;
  box-shadow: 0 2px 8px rgba(15, 158, 150, 0.1) !important;
}

html body .cs-syc-sec1 .select2-selection__rendered {
  color: #152033 !important;
  line-height: 50px !important;
  padding: 0 !important;
  padding-left: 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

html body .cs-syc-sec1 .select2-selection__placeholder {
  color: #8b93a7 !important;
  font-weight: 500 !important;
  opacity: 1 !important;
}

html body .cs-syc-sec1 .select2-selection__arrow {
  height: 50px !important;
  width: 36px !important;
  top: 1px !important;
  right: 4px !important;
}

html body .cs-syc-sec1 .select2-selection__arrow b {
  border: none !important;
  width: 14px !important;
  height: 14px !important;
  margin-left: -7px !important;
  margin-top: -7px !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238b93a7' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") center / 14px 14px no-repeat !important;
}

html body .cs-syc-sec1 .select2-container--open .select2-selection--single .select2-selection__arrow b {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230b827b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

html body .cs-syc-sec1 .select2-container--open .select2-selection--single,
html body .cs-syc-sec1 .select2-container--focus .select2-selection--single {
  border-color: #0f9e96 !important;
  box-shadow: 0 0 0 4px rgba(15, 158, 150, 0.16) !important;
}

/* CTA — select ile ayni yukseklik / genislik */
html body .cs-syc-sec1 .cs-start-btn .dropdown {
  width: 100% !important;
}

html body .cs-syc-sec1 .cs-start-dropdown,
html body .cs-syc-sec1 .cs-primary-btn-1.cs-start-dropdown {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-sizing: border-box !important;
  width: 100% !important;
  min-height: 52px !important;
  height: 52px !important;
  max-height: 52px !important;
  padding: 0 18px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: #0f9e96 !important;
  background-image: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 22px rgba(15, 158, 150, 0.28) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

html body .cs-syc-sec1 .cs-start-dropdown::after {
  display: none !important;
}

html body .cs-syc-sec1 .cs-start-dropdown i {
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1 !important;
  margin: 0 !important;
}

html body .cs-syc-sec1 .dropdown-menu {
  width: 100% !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: var(--ds-shadow) !important;
  padding: 8px !important;
  margin-top: 6px !important;
}

html body .cs-syc-sec1 .dropdown-item {
  border-radius: 10px !important;
  color: var(--ds-text) !important;
  font-weight: 600 !important;
  padding: 10px 12px !important;
}

html body .cs-syc-sec1 .dropdown-item:hover {
  background: var(--ds-brand-soft) !important;
  color: var(--ds-brand-text) !important;
}

/* Estimate card */
html body .cs-syc-sec1 .cs-syc-infobox {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 18px 0 0 !important;
  padding: 18px 20px !important;
  background: linear-gradient(135deg, #f0faf7 0%, #f7f5ff 100%) !important;
  border: 1px solid rgba(15, 158, 150, 0.18) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  float: none !important;
}

html body .cs-syc-sec1 .cs-syc-infobox__value {
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  margin: 0 !important;
}

html body .cs-syc-sec1 .cs-syc-infobox__value #earningCalculation,
html body .cs-syc-sec1 .cs-syc-infobox__value p {
  margin: 0 !important;
  color: var(--ds-text) !important;
  -webkit-text-fill-color: var(--ds-text) !important;
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.4rem) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

html body .cs-syc-sec1 .cs-syc-infobox__currency {
  color: var(--ds-muted) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

html body .cs-syc-sec1 .cs-syc-infobox__meta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: var(--ds-brand-text) !important;
}

html body .cs-syc-sec1 .cs-syc-infobox .cs-title-2 {
  color: var(--ds-brand-text) !important;
  -webkit-text-fill-color: var(--ds-brand-text) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

html body .cs-syc-sec1 .cs-info-direction {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  background: rgba(15, 158, 150, 0.12) !important;
  color: var(--ds-brand-text) !important;
  cursor: help !important;
}

html body .cs-syc-sec1 .cs-info-direction i {
  color: var(--ds-brand-text) !important;
  font-size: 14px !important;
}

html body .cs-syc-sec1 .cs-info-message {
  position: absolute !important;
  right: 0 !important;
  bottom: calc(100% + 8px) !important;
  width: min(260px, 70vw) !important;
  padding: 10px 12px !important;
  background: #fff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 12px !important;
  box-shadow: var(--ds-shadow) !important;
  color: var(--ds-muted) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: 5 !important;
}

html body .cs-syc-sec1 .cs-info-direction:hover .cs-info-message,
html body .cs-syc-sec1 .cs-info-direction:focus .cs-info-message,
html body .cs-syc-sec1 .cs-info-direction:focus-within .cs-info-message {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Image side � overlap / floating card kirp */
html body .cs-syc-sec1 .cs-syc-1-imgbox {
  position: relative !important;
  min-height: 360px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: linear-gradient(160deg, #e8f7f4 0%, #ebe4ff 55%, #eef2f8 100%) !important;
}

html body .cs-syc-sec1 .cs-syc-1-imgbox .cs-main-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.35 !important;
  filter: saturate(0.85) !important;
}

html body .cs-syc-sec1 .cs-syc-1-imgbox .cs-right-car-img {
  position: absolute !important;
  left: 50% !important;
  bottom: 4% !important;
  transform: translateX(-50%) !important;
  width: min(92%, 420px) !important;
  height: auto !important;
  max-height: 92% !important;
  object-fit: contain !important;
  z-index: 2 !important;
  filter: drop-shadow(0 18px 28px rgba(26, 31, 54, 0.22)) !important;
}

/* Stats */
html body .cs-syc-sec-2 {
  padding: 28px 0 8px !important;
}

html body .cs-syc-sec-2 .cs-syc-2-banner {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body .cs-syc-sec-2 .cs-syc-2-banner-content {
  background: linear-gradient(180deg, #ffffff 0%, #f7fffd 100%) !important;
  border: 1px solid rgba(15, 158, 150, 0.14) !important;
  border-radius: 18px !important;
  padding: 20px 16px !important;
  text-align: center !important;
  box-shadow: 0 12px 28px rgba(15, 158, 150, 0.08) !important;
  min-height: 110px !important;
}

html body .cs-syc-sec-2 .cs-title-banner-1 {
  color: var(--ds-brand-text, #0b827b) !important;
  -webkit-text-fill-color: var(--ds-brand-text, #0b827b) !important;
  font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.4rem) !important;
  font-weight: 800 !important;
  margin: 0 0 6px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}

html body .cs-syc-sec-2 .cs-desc-banner-1 {
  color: var(--ds-muted) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

/* Feature cards */
html body .cs-syc-sec-3 {
  padding: 28px 0 40px !important;
}

html body .cs-syc-sec-3 .cs-syc-3-box-main {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

html body .cs-syc-sec-3 .cs-syc-3-box-content {
  background: #ffffff !important;
  border: 1px solid var(--ds-line) !important;
  border-radius: 18px !important;
  padding: 22px 18px !important;
  height: auto !important;
  min-height: 0 !important;
  box-shadow: var(--ds-shadow-sm) !important;
  text-align: left !important;
}

html body .cs-syc-sec-3 .cs-syc-3-box-content img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
  margin-bottom: 14px !important;
}

html body .cs-syc-sec-3 .cs-syc-sec3-title {
  color: var(--ds-text) !important;
  font-size: 16px !important;
  font-weight: 750 !important;
  margin: 0 0 8px !important;
}

html body .cs-syc-sec-3 .cs-syc-sec3-desc {
  color: var(--ds-muted) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

html body .cs-syc-sec-3 .cs-button-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: center !important;
  margin-top: 22px !important;
}

html body .cs-syc-sec-3 .cs-button-group .cs-primary-btn-1,
html body .cs-syc-sec-3 .cs-button-group .cs-primary-outline-btn-1 {
  min-height: 48px !important;
  border-radius: 12px !important;
  padding: 0 22px !important;
}

@media (max-width: 1023.98px) {
  html body .cs-syc-sec1 .cs-syc-1-main {
    grid-template-columns: 1fr !important;
  }

  html body .cs-syc-sec1 .cs-syc-1-imgbox {
    min-height: 260px !important;
    order: -1 !important;
  }

  html body .cs-syc-sec-2 .cs-syc-2-banner,
  html body .cs-syc-sec-3 .cs-syc-3-box-main {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767.98px) {
  html body .cs-syc-sec1 .cs-form-1 > .row {
    grid-template-columns: 1fr !important;
  }

  html body .cs-syc-sec1 .cs-syc-infobox {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  html body .cs-syc-sec-2 .cs-syc-2-banner,
  html body .cs-syc-sec-3 .cs-syc-3-box-main {
    grid-template-columns: 1fr !important;
  }

  html body .cs-syc-sec-3 .cs-button-group {
    flex-direction: column !important;
  }

  html body .cs-syc-sec-3 .cs-button-group a {
    width: 100% !important;
  }
}
