/* Dil değiştirici – modern chip görünümü */
.main-menu .navigation li.language-dropdown {
  margin-left: 8px;
  position: relative;
}
.main-header .nav-outer {
  overflow: visible;
}
/* Hover'da alttaki kırmızı çizgiyi kaldır */
.main-menu .navigation li.language-dropdown::before {
  display: none !important;
}
.main-menu .navigation li.language-dropdown > a.lang-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: rgba(15, 23, 42, 0.15);
  border-radius: 999px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none !important;
}
.main-menu .navigation li.language-dropdown > a.lang-toggle:hover {
  background: rgba(15, 23, 42, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.main-menu .navigation li.language-dropdown .lang-flag {
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}
.main-menu .navigation li.language-dropdown .lang-chevron {
  font-size: 10px;
  opacity: 0.9;
  transition: transform 0.25s ease;
}
.main-menu .navigation li.language-dropdown.show .lang-chevron {
  transform: rotate(180deg);
}
/* Tema hover kuralını dil dropdown için devre dışı – hover ile açılmasın */
.main-menu .navigation li.language-dropdown:hover > .dropdown-menu:not(.show) {
  opacity: 0 !important;
  filter: brightness(0.6) !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.main-menu .navigation li.language-dropdown > .dropdown-menu {
  display: block !important;
  opacity: 0;
  filter: brightness(0.75);
  pointer-events: none;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
/* .show varken görünsün – tema hover ile KAPANMASIN (visibility/opacity !important) */
.main-menu .navigation li.language-dropdown > .dropdown-menu.show {
  visibility: visible !important;
  opacity: 1 !important;
  filter: brightness(1) !important;
  pointer-events: auto !important;
}
.main-menu .navigation li.language-dropdown .lang-dropdown-menu {
  min-width: 160px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-top: 6px;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  top: 100% !important;
  transform: none !important;
  inset: auto !important;
  overflow: hidden;
}
.main-menu .navigation li.language-dropdown .lang-dropdown-menu li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
[dir="rtl"] .main-menu .navigation li.language-dropdown .lang-dropdown-menu {
  right: auto !important;
  left: 0 !important;
}
.main-menu .navigation li.language-dropdown .lang-option {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  margin: 0 !important;
  border-radius: 8px;
  color: #1f2937 !important;
  font-size: 14px;
  transition: background 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}
.main-menu .navigation li.language-dropdown .lang-option:hover {
  background: #f5f6f8 !important;
  color: var(--theme-color1) !important;
}
.main-menu .navigation li.language-dropdown .lang-option .lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
}
.main-menu .navigation li.language-dropdown .dropdown-toggle::after {
  display: none !important; /* Kendi chevron kullanıyoruz */
}

/* Tema buton stil & hover geliştirme */

/* Ana buton (dolu) – sade parlama (theme-color2) */
.theme-btn.btn-style-one,
.btn-style-one {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: var(--bg-theme-color2);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: 0 6px 14px rgba(220, 53, 69, 0.25);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.theme-btn.btn-style-one:hover,
.btn-style-one:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(220, 53, 69, 0.35);
  filter: brightness(1.05);
}

/* İkinci buton – sade parlama (theme-color1, tam dolu) */
.btn-style-two {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: var(--theme-color1);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.btn-style-two:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  filter: brightness(1.05);
}

/* Üçüncü buton (ikincil dolu) – sade hover */
.btn-style-three {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: var(--bg-theme-color2) !important;
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.btn-style-three:before {
  background: var(--bg-theme-color2) !important;
}

.btn-style-three:hover {
  background: var(--bg-theme-color2) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}
.mobile-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    display: none;
}

.mobile-contact-button {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 0;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-top: none;
    height: 55px;
    position: relative;
    overflow: hidden;
}

.mobile-contact-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.mobile-contact-button:hover:before,
.mobile-contact-button:active:before {
    transform: translateY(0);
}

.mobile-contact-button:hover,
.mobile-contact-button:active {
    color: white;
    transform: translateY(-3px);
}

.call-button {
    background-color: #007C91;
    background-image: linear-gradient(135deg, #005a6b, #007C91);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-button {
    background-color: #25D366;
    background-image: linear-gradient(135deg, #128C7E, #25D366);
}

.mobile-contact-button i {
    font-size: 18px;
    margin-right: 6px;
    margin-bottom: 0;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.mobile-contact-button span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-contact-buttons {
        display: flex;
    }

    body {
        padding-bottom: 55px;
    }
}


@media (min-width: 769px) {
    .mobile-contact-buttons {
        display: none !important;
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader__content {
    text-align: center;
    width: 90%;
    max-width: 400px;
    padding: 20px;
}

.preloader__logo {
    margin-bottom: 20px;
    width: 333px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.preloader__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.preloader__title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    word-wrap: break-word;
}

.preloader__spinner {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.spinner-grow {
    width: 1.5rem;
    height: 1.5rem;
    animation-delay: calc(var(--bs-spinner-animation-speed) * 0.15);
}

.spinner-grow:nth-child(2) {
    animation-delay: calc(var(--bs-spinner-animation-speed) * 0.3);
}

.spinner-grow:nth-child(3) {
    animation-delay: calc(var(--bs-spinner-animation-speed) * 0.45);
}

@media (max-width: 768px) {
    .preloader__content {
        padding: 15px;
        max-width: 267px;
    }

    .preloader__logo {
        width: 133px;
        height: 80px;
        margin-bottom: 15px;
    }

    .preloader__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .spinner-grow {
        width: 1.2rem;
        height: 1.2rem;
    }
}

@media (max-width: 320px) {
    .preloader__content {
        padding: 10px;
        max-width: 187px;
    }

    .preloader__logo {
        width: 100px;
        height: 60px;
        margin-bottom: 10px;
    }

    .preloader__title {
        font-size: 16px;
    }

    .spinner-grow {
        width: 1rem;
        height: 1rem;
    }
}

@media (max-width: 768px) {
  .page-title .title {
    font-size: 58px;
    color: #ffffff;
    margin-bottom: 17px;
  }
}

/* Sayfa başlığı (breadcrumb) h1 genel boyut ayarı */
.page-title .title {
  font-size: 50px;
}

.page-title .page-breadcrumb li a {
  color: var(--brand-color1, var(--theme-color2, #ea1725));
}

.page-title .page-breadcrumb li a:hover {
  color: var(--brand-color2, var(--theme-color1, #173857));
}

/* Marka sayfalarında breadcrumb linki marka renginden çeksin */
body.brand-theme .page-title .page-breadcrumb li a {
  color: var(--brand-color1, var(--theme-color2, #ea1725)) !important;
}

body.brand-theme .page-title .page-breadcrumb li a:hover {
  color: var(--brand-color2, var(--theme-color1, #173857)) !important;
}

/* İç sayfa page-title için slider ile aynı oranda alt kavis */
.page-title {
  position: relative;
  overflow: visible; /* alttaki kavis görünsün */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Marka header kullanılırken ana header arka planını şeffaf yap - page-title görseli header'ın arkasında devam etsin */
body.brand-theme .main-header.header-style-two {
  background-color: transparent !important;
  background: transparent !important;
}

body.brand-theme .main-header.header-style-two::before {
  background: linear-gradient(to bottom, var(--brand-color1, var(--bg-theme-color1)), transparent) !important;
  min-height: 300px !important;
  display: block !important;
}

/* Brand page header'ın da şeffaf olmasını sağla */
body.brand-theme .brand-page__header {
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Marka sayfası için page-title görseli tüm header'ı kaplar - normal sayfalardaki gibi */
body.brand-theme .page-title--brand {
  margin-top: -150px !important;
  padding-top: 150px !important;
  padding-bottom: 65px !important;
  min-height: auto !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
  z-index: 1;
}

body.brand-theme .main-header.header-style-two {
  position: relative;
  z-index: 2;
}

/* Marka header alanı için üstten gölgeli overlay */
.page-title--brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(23, 56, 87, 0.75), transparent);
  z-index: 1;
  pointer-events: none;
}

.page-title--brand .brand-page__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: transparent !important;
  padding: 16px 0;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

.page-title--brand .brand-page__header::before,
.page-title--brand .brand-page__header::after {
  display: none;
}

.page-title--brand .title-outer {
  position: relative;
  z-index: 5;
  padding-top: 120px;
  padding-bottom: 65px;
}

.page-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -160px;              /* slider ile aynı offset / yükseklik oranı */
  transform: translateX(-50%);
  width: 140%;                 /* slider ile aynı genişlik oranı */
  height: 190px;               /* slider ile aynı yükseklik */
  background-color: #ffffff;   /* altındaki içerik zemin rengi (genel beyaz alan) */
  border-radius: 70% 70% 0 0;  /* sliderdaki ile aynı kavis */
  z-index: 1;
  pointer-events: none;
  box-shadow: 0px -20px 20px 0px #252e3f
}

/* Slider alt kısmı için alttan basık / oval efekt */
.banner-section-two {
  position: relative;
  overflow: visible; /* alttaki kavis görünsün */
}

.banner-section-two::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -150px;
  transform: translateX(-50%);
  width: 140%;                /* daha geniş kavis */
  height: 190px;              /* daha yüksek kavis */
  background-color: #ffffff;  /* sliderın altındaki section rengiyle aynı olmalı */
  border-radius: 70% 70% 0 0; /* daha yuvarlak üst kenar */
  z-index: 1;
  pointer-events: none;
  box-shadow: 0px -20px 20px 0px #252e3f;
}

.brand-section-home {
  position: relative;
  padding: 12px 0 35px;
}
.brand-section-home .sec-title {
  margin-bottom: 40px;
}
.brand-card-home {
  margin-bottom: 32px;
}
.brand-card-home__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.brand-card-home__inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}
.brand-card-home__logo {
  width: 260px;
  height: 160px;
  border-radius: 12px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
}
.brand-card-home__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-card-home__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #4b5563;
  font-size: 20px;
}
.brand-card-home__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--theme-color1, #173857);
  margin: 2px 0 0;
}
.brand-card-home__desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 6px 0 0;
}

.brand-page {
  --brand-color1: var(--theme-color1, #173857);
  --brand-color2: var(--theme-color2, #ea1725);
}
.brand-page__header {
  position: relative;
  z-index: 2;
  background: transparent !important;
  padding: 16px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.brand-page__header::before {
  display: none;
}
.brand-page__header::after {
  display: none;
}
.brand-header {
  background: transparent !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
}
.brand-header__logo {
  height: 80px;
  max-width: 260px;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease, max-width 0.3s ease, opacity 0.3s ease;
}
.brand-header__logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--title-font, "Roboto", sans-serif);
  transition: font-size 0.3s ease, color 0.3s ease;
}
.brand-header__menu {
  gap: 24px;
  transition: gap 0.3s ease;
}
.brand-header__menu-link,
.brand-header__menu-link:visited,
.brand-header__menu-link:active,
.brand-header__menu-link:focus {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  font-size: 0.98rem;
  font-family: var(--text-font, "Roboto", sans-serif);
  transition: color 0.25s ease, opacity 0.25s ease;
  outline: none;
}
.brand-header__menu-link:hover {
  color: #ffffff;
  opacity: 1;
}
.brand-header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand-color2, var(--theme-color2, #ea1725));
  transition: width 0.3s ease, background 0.3s ease;
}
.brand-header__menu-link:hover::after {
  width: 100%;
}
/* Brand header dil seçici - normal header ile aynı stil */
.brand-header__language-dropdown {
  position: relative;
}
.brand-header__lang-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: rgba(15, 23, 42, 0.15);
  border-radius: 999px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--text-font, "Roboto", sans-serif);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none !important;
  cursor: pointer;
}
.brand-header__lang-toggle:hover {
  background: rgba(15, 23, 42, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.brand-header__lang-toggle .lang-flag {
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-header__lang-toggle .lang-chevron {
  font-size: 10px;
  opacity: 0.9;
  transition: transform 0.25s ease;
}
.brand-header__language-dropdown.show .lang-chevron {
  transform: rotate(180deg);
}
.brand-header__lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  min-width: 160px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  z-index: 1000;
}
.brand-header__language-dropdown.show .brand-header__lang-menu {
  display: block;
}
.brand-header__lang-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.brand-header__lang-option {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  margin: 0 !important;
  border-radius: 8px;
  color: #1f2937 !important;
  font-size: 14px;
  font-family: var(--text-font, "Roboto", sans-serif);
  transition: background 0.15s ease;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}
.brand-header__lang-option:hover {
  background: #f5f6f8 !important;
  color: var(--theme-color1) !important;
  text-decoration: none;
}
.brand-header__lang-option .lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
}
.brand-page__body {
  position: relative;
  z-index: 1;
  padding: 20px 0 40px;
}
.brand-page__intro {
  max-width: 720px;
  margin-bottom: 30px;
}
.brand-page__intro p {
  margin: 0;
  font-size: 1rem;
  color: #4b5563;
}
.brand-page__placeholder {
  padding: 24px 20px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px dashed var(--brand-color2, #d1d5db);
  max-width: 780px;
}
.brand-page__placeholder-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-color1, var(--theme-color1, #173857));
}
.brand-page__placeholder-text {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
}

/* Hakkımızda (about-section-three) içeriği kavisin üstünde görünsün */
.about-section-three {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

/* Ürün detay (services-details) – kavislerin üzerinde düzgün görünsün */
.services-details {
  position: relative;
  z-index: 2;
  padding-top: 40px;   /* page-title kavisinin altından boşluk */
  padding-bottom: 120px; /* before-footer-wave kavisinin üstünden boşluk */
}

.services-details .container {
  overflow: visible;
}

/* Blog detay – tüm içerik (görsel dahil) z-index 1, footer öncesi boşluk */
.blog-details {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}
.blog-details__left,
.blog-details__left .blog-details__img,
.blog-details__left .blog-details__content,
.blog-details__left .blog-details__text-2,
.blog-details__left .blog-details__text-2 img {
  position: relative;
  z-index: 1;
}

/* Sidebar iletişim butonu taşmasın, satır içinde kalabilsin */
.service-sidebar .service-sidebar-single-btn .theme-btn {
  word-break: break-word;
  white-space: normal;
  text-align: center;
}

/* =============================
   Ürün detay sayfası – güzelleştirme
   ============================= */

.product-detail-page .product-sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid rgba(23,56,87,.06);
}

.product-detail-page .product-sidebar-title {
  color: var(--theme-color1);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--theme-color2);
}

/* Ürün detay sidebar – iletişim numarası normal okunaklı boyut */
.product-detail-page .product-sidebar-contact-btn .btn-title {
  font-size: 1rem;
  font-weight: 500;
}

.product-detail-page .product-sidebar-share h6 {
  color: var(--theme-color1);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-detail-page .product-sidebar-share .blog-details__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-detail-page .product-sidebar-share .blog-details__social-list li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.product-detail-page .product-sidebar-share .blog-details__social-list li a:hover {
  transform: translateY(-3px);
  opacity: .9;
}

.product-detail-page .product-sidebar-share .blog-details__social-list li.facebook a { background: #1877f2; }
.product-detail-page .product-sidebar-share .blog-details__social-list li.twitter a { background: #1da1f2; }
.product-detail-page .product-sidebar-share .blog-details__social-list li.linkedin a { background: #0a66c2; }
.product-detail-page .product-sidebar-share .blog-details__social-list li.whatsapp a { background: #25d366; }

.product-detail-content {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid rgba(23,56,87,.06);
}

.product-detail-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f4 100%);
  overflow: hidden;
}

.product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--theme-color3);
  font-size: 4rem;
  gap: 12px;
}

.product-detail-image-placeholder span {
  font-size: 1rem;
  color: var(--theme-color1);
  font-weight: 500;
  max-width: 80%;
  text-align: center;
}

.product-detail-body {
  padding: 28px 32px 32px;
}

.product-detail-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-category-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(234,23,37,.1);
  color: var(--theme-color2);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 20px;
}

.product-detail-title {
  color: var(--theme-color1);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-detail-lead {
  color: #5d7186;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-detail-description {
  color: #424e5a;
  font-size: 1rem;
  line-height: 1.75;
}

.product-detail-description p {
  margin-bottom: 1rem;
}

.product-detail-description p:last-child {
  margin-bottom: 0;
}

.product-detail-description h1,
.product-detail-description h2,
.product-detail-description h3 {
  color: var(--theme-color1);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-detail-description ul,
.product-detail-description ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Ürün detay tablosu – modern kart görünümü, theme color 2 başlık */
.product-detail-description .product-spec-table {
  font-size: 1.1rem !important;
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.product-detail-description .product-spec-table td {
  padding: 0.9rem 1.15rem;
  vertical-align: middle;
  font-size: 1.1rem !important;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.product-detail-description .product-spec-table tr:last-child td {
  border-bottom: none;
}
.product-detail-description .product-spec-table td:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.14);
  font-weight: 500;
  color: #374151;
}
.product-detail-description .product-spec-table tr:first-child td:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.product-detail-description .product-spec-table td:last-child {
  color: #1f2937;
}
.product-detail-description .product-spec-table tbody tr:nth-child(even) td {
  background: #fafafa;
}
.product-detail-description .product-spec-table tbody tr:nth-child(odd) td {
  background: #fff;
}
.product-detail-description .product-spec-table tr:first-child td {
  background: var(--theme-color2, #ea1725) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 1.05rem !important;
  padding: 1rem 1.15rem;
  border-bottom: none;
  border-left: none;
  border-top: none;
}
@media (max-width: 767px) {
  .product-detail-description .product-spec-table td {
    padding: 0.75rem 0.9rem;
    font-size: 1rem !important;
  }
  .product-detail-description .product-spec-table tr:first-child td {
    padding: 0.85rem 0.9rem;
  }
}

@media (max-width: 991px) {
  .product-detail-body {
    padding: 20px 20px 24px;
  }
  .product-detail-title {
    font-size: 1.5rem;
  }
}

/* =============================
   Ürünler sayfası – filtre + kategoriye göre listeleme
   ============================= */

.products-page {
  padding: 56px 0 120px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 50%, #fff 100%);
}
.products-page--brand {
  padding-top: 20px;
}

.products-page-container {
  max-width: 1400px;
}

/* Sticky sidebar – 2 kritik nokta:
   1) body overflow-x:hidden → scroll containment → sticky bozulur. clip kullan.
   2) col-lg-4 row yüksekliğine uzanmalı (align-items:stretch). */
body.page-products,
body.brand-theme {
  overflow-x: clip !important;
}
body.page-products .page-wrapper,
body.brand-theme .page-wrapper {
  overflow: visible !important;
}
@media (min-width: 992px) {
  .products-page .row,
  .products-page--brand .row {
    align-items: stretch;
  }
}

/* Sticky filtre sidebar - masaüstünde (header fixed ~100px) */
@media (min-width: 992px) {
  .products-page .products-filter-sidebar,
  .products-page aside.products-filter-sidebar,
  .products-page--brand .products-filter-sidebar,
  .products-page--brand aside.products-filter-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(23,56,87,.08);
    border: 1px solid rgba(23,56,87,.12);
  }
}

/* Mobilde sticky yok */
@media (max-width: 991px) {
  .products-page .products-filter-sidebar,
  .products-page aside.products-filter-sidebar,
  .products-page--brand .products-filter-sidebar,
  .products-page--brand aside.products-filter-sidebar {
    position: static;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(23,56,87,.08);
    border: 1px solid rgba(23,56,87,.12);
  }
}

.products-filter-title {
  color: var(--theme-color1);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0 0 20px 0;
  padding-bottom: 0;
  border-bottom: none;
}

.products-filter-search {
  position: relative;
  margin-bottom: 24px;
}

.products-filter-search .form-control {
  padding: 12px 44px 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(23,56,87,.15);
  font-size: 1rem;
  background: #fff;
  color: var(--theme-color1);
  transition: border-color .2s, box-shadow .2s;
}

.products-filter-search .form-control::placeholder {
  color: var(--theme-color2);
  opacity: 0.85;
}

.products-filter-search .form-control:focus {
  border-color: var(--theme-color2);
  box-shadow: 0 0 0 2px rgba(234,23,37,.12);
  background: #fff;
  outline: none;
}

.products-filter-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--theme-color1);
  pointer-events: none;
  font-size: 1rem;
  opacity: .85;
}

.products-filter-categories {
  max-height: 380px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.products-filter-categories .form-check {
  padding: 14px 0;
  border-bottom: 1px solid rgba(23,56,87,.08);
  margin: 0;
  min-height: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.products-filter-categories .form-check:last-child {
  border-bottom: none;
}

.products-filter-categories .form-check-label {
  color: var(--theme-color1);
  font-size: 1.15rem;
  cursor: pointer;
  flex: 1;
  font-weight: 400;
}

.products-filter-categories .form-check-input {
  width: 1.5em;
  height: 1.5em;
  margin: 0;
  border: 2px solid rgba(23,56,87,.2);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.products-filter-categories .form-check-input:checked {
  background-color: var(--theme-color2);
  border-color: var(--theme-color2);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.products-filter-categories .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(234,23,37,.15);
}

.products-filter-categories .form-check-input:checked + .form-check-label {
  font-weight: 600;
  color: var(--theme-color2);
}

.products-page #products-filter-clear {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-color1);
  background: #fff;
  border: 1px solid rgba(23,56,87,.15);
  border-radius: 10px;
  text-align: center;
  transition: background .2s, border-color .2s, color .2s;
}

.products-page #products-filter-clear:hover {
  background: rgba(23,56,87,.06);
  border-color: var(--theme-color2);
  color: var(--theme-color2);
}

.products-category-section {
  margin-bottom: 48px;
}

.products-category-section:last-child {
  margin-bottom: 0;
}

.products-category-heading {
  color: var(--theme-color1);
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 28px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(234,23,37,.2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.products-category-heading::before {
  content: "";
  width: 5px;
  height: 1.2em;
  background: var(--theme-color2);
  border-radius: 2px;
}

.products-category-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1200px) {
  .products-category-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .products-category-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .products-category-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.products-list-content {
  min-height: 120px;
  transition: opacity .2s ease;
  padding: 16px 0;
}

.products-list-content .text-muted {
  padding: 64px 32px;
  text-align: center;
  background: rgba(255,255,255,.8);
  border-radius: 18px;
  border: 1px dashed rgba(23,56,87,.15);
  font-size: 1.15rem;
}

.products-list-content.products-loading {
  opacity: .6;
  pointer-events: none;
}

.product-list-item {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(23,56,87,.08), 0 1px 4px rgba(0,0,0,.04);
  border: 1px solid rgba(23,56,87,.06);
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  overflow: hidden;
}

.product-list-item:hover {
  box-shadow: 0 16px 40px rgba(23,56,87,.12), 0 6px 16px rgba(234,23,37,.08);
  transform: translateY(-8px);
  border-color: rgba(234,23,37,.2);
}

.product-list-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: color .2s ease;
}

.product-list-item-link:hover {
  color: var(--theme-color2);
}

.product-list-item-image {
  width: 100%;
  max-width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background: #fafafa;
  padding: 0;
  margin-bottom: 16px;
  display: block;
}

.product-list-item-placeholder {
  width: 100%;
  max-width: 160px;
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f0f4f8, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 2.4rem;
}

.product-list-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--theme-color1);
  max-width: 100%;
  line-height: 1.4;
  margin: 0 0 16px 0;
}

.product-list-item-link:hover .product-list-item-title {
  color: var(--theme-color2);
}

/* Brand detail: filter/list colors use brand palette */
body.brand-theme .products-page--brand .products-filter-title {
  color: var(--brand-color1, var(--theme-color1));
}

body.brand-theme .products-page--brand .products-filter-search .form-control {
  border-color: var(--brand-color1, var(--theme-color1));
  color: var(--brand-color1, var(--theme-color1));
}

body.brand-theme .products-page--brand .products-filter-search .form-control::placeholder {
  color: var(--brand-color2, var(--theme-color2));
}

body.brand-theme .products-page--brand .products-filter-search .form-control:focus {
  border-color: var(--brand-color2, var(--theme-color2));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-color2, var(--theme-color2)) 22%, transparent);
}

body.brand-theme .products-page--brand .products-filter-search-icon {
  color: var(--brand-color1, var(--theme-color1));
}

body.brand-theme .products-page--brand .products-filter-categories .form-check-label {
  color: var(--brand-color1, var(--theme-color1));
}

body.brand-theme .products-page--brand .products-filter-categories .form-check-input {
  border-color: var(--brand-color1, var(--theme-color1));
}

body.brand-theme .products-page--brand .products-filter-categories .form-check-input:checked {
  background-color: var(--brand-color2, var(--theme-color2));
  border-color: var(--brand-color2, var(--theme-color2));
}

body.brand-theme .products-page--brand .products-filter-categories .form-check-input:focus {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-color2, var(--theme-color2)) 25%, transparent);
}

body.brand-theme .products-page--brand .products-filter-categories .form-check-input:checked + .form-check-label {
  color: var(--brand-color2, var(--theme-color2));
}

body.brand-theme .products-page--brand #products-filter-clear {
  color: var(--brand-color1, var(--theme-color1));
  border-color: var(--brand-color1, var(--theme-color1));
}

body.brand-theme .products-page--brand #products-filter-clear:hover {
  background: var(--brand-color1, var(--theme-color1));
  border-color: var(--brand-color1, var(--theme-color1));
  color: #fff;
}

body.brand-theme .products-page--brand .products-category-heading {
  color: var(--brand-color1, var(--theme-color1));
  border-bottom-color: color-mix(in srgb, var(--brand-color2, var(--theme-color2)) 30%, transparent);
}

body.brand-theme .products-page--brand .products-category-heading::before {
  background: var(--brand-color2, var(--theme-color2));
}

body.brand-theme .products-page--brand .product-list-item:hover {
  border-color: var(--brand-color2, var(--theme-color2));
  box-shadow: 0 16px 40px color-mix(in srgb, var(--brand-color1, var(--theme-color1)) 18%, transparent),
              0 6px 16px color-mix(in srgb, var(--brand-color2, var(--theme-color2)) 20%, transparent);
}

body.brand-theme .products-page--brand .product-list-item-title {
  color: var(--brand-color2, var(--theme-color2));
}

body.brand-theme .products-page--brand .product-list-item-link:hover,
body.brand-theme .products-page--brand .product-list-item-link:hover .product-list-item-title {
  color: var(--brand-color2, var(--theme-color2));
}



/* =============================
   Banner slider - sayılı dikey noktalar
   ============================= */

.banner-section-two .owl-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0;
}

/* İnce dikey çizgi (arka plan track) */
.banner-section-two .owl-dots .owl-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-section-two .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0;
  display: block;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.banner-section-two .owl-dots .owl-dot.active {
  border-color: #ffffff;
}

.banner-section-two .owl-dots .owl-dot.active span {
  background: #ffffff;
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.banner-section-two .owl-dots .owl-dot:hover span {
  background: #ffffff;
}

/* Masaüstü dışı görünmesin (isteğe göre açılabilir) */
@media (max-width: 767.98px) {
  .banner-section-two .owl-dots {
    display: none;
  }
}

/* Banner slider metinlerini ortala */
.banner-section-two .content-box {
  text-align: center !important;
}

.banner-section-two .content-box .inner {
  text-align: center !important;
}

.banner-section-two .content-box .sub-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.18);
  text-align: center !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* =============================
   Footer'dan hemen önce global kavis (tüm sayfalarda)
   ============================= */

.before-footer-wave {
  position: relative;
  overflow: visible;
  z-index: 1; /* products-page (z-index:5) üzerinde görünsün */
}

.before-footer-wave::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -80px;              /* slider ile benzer offset */
  transform: translateX(-50%);
  width: 140%;
  height: 140px;              /* kavis yüksekliği */
  background-color: #ecf0f4;  /* footer üstü açık arka plan rengi */
  border-radius: 50% 50% 0 0;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0px 0px 50px 5px gray;
}

.main-footer {
  z-index: 1;
}

/* Footer iletişim kolonunun altında sosyal ikonları hizalama */
.footer-widget.about-widget .footer-contact-social {
  margin-top: 18px;
  justify-content: flex-start;
}

/* =============================
   İletişim sayfası – profesyonel görünüm
   ============================= */

.contact-hero {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 56px 0 32px;
}

.contact-hero .contact-box {
  border: 1px solid #cccccc;
  border-radius: 16px;
  padding: 32px 24px;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-hero .contact-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--theme-color2);
}

.contact-hero .contact-box .icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--theme-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.contact-hero .contact-box:hover .icon-box {
  transform: scale(1.05);
}

.contact-hero .contact-box h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--theme-color1);
}

.contact-hero .contact-box p,
.contact-hero .contact-box a {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.contact-hero .contact-box a:hover {
  color: var(--theme-color2);
}

/* İletişim sayfası sosyal medya – kutular ile harita arasında */
.contact-hero-social-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.contact-hero-social-bottom .footer-contact-social {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-hero-social-bottom .footer-contact-social li {
  margin: 0 !important;
}


.contact-hero-social-bottom .footer-contact-social li a,
.contact-hero .footer-contact-social li a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--theme-color1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.25s ease;
}

.contact-hero .footer-contact-social li a:hover {
  transform: translateY(-3px);
  background: var(--theme-color2);
  color: #fff;
}

/* Bayi kartları bölümü (haritanın altında, iletişim sayfası) */
.contact-locations-section {
  padding: 56px 0 160px;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 100%);
}

.contact-locations-section .container {
  max-width: 1140px;
}

/* Bayi kartları (başlık, adres, telefon, telefon2) */
.contact-locations-section .col-12.text-center {
  text-align: center;
}
.contact-locations-title {
  color: var(--theme-color1);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  text-align: center;
}

.contact-locations-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--theme-color2);
  border-radius: 2px;
}

.contact-location-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid rgba(23, 56, 87, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.contact-location-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--theme-color1), var(--theme-color2));
  border-radius: 4px 0 0 4px;
  opacity: 0.9;
}

.contact-location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(23, 56, 87, 0.1), 0 0 0 1px rgba(234, 23, 37, 0.08);
  border-color: rgba(234, 23, 37, 0.15);
}

.contact-location-card__title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--theme-color1);
  margin-bottom: 16px;
  padding-bottom: 14px;
  padding-left: 4px;
  border-bottom: 1px solid rgba(23, 56, 87, 0.1);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.contact-location-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.55;
  margin-bottom: 12px;
  padding-left: 2px;
}

.contact-location-card__row:last-child {
  margin-bottom: 0;
}

.contact-location-card__row a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-location-card__row a:hover {
  color: var(--theme-color2);
}

.contact-location-card__icon {
  color: #fff !important;
  font-size: 13px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--theme-color2), #c4121f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(234, 23, 37, 0.25);
}

.contact-location-card__row .contact-location-card__icon {
  margin-top: 0;
}

@media (max-width: 768px) {
  .contact-locations-section {
    padding: 40px 0 120px;
  }
  .contact-locations-title {
    font-size: 1.45rem;
  }
  .contact-location-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .contact-location-card__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    font-size: 12px;
  }
}

/* Harita bölümü – üst/alt boşluksuz, arka plana tam oturur */
.contact-map-section {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  width: 100%;
}

.contact-map-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  line-height: 0;
  font-size: 0;
}

.contact-map-wrapper iframe {
  width: 100% !important;
  height: 450px;
  border: 0;
  display: block;
  vertical-align: top;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 0 24px;
  }
  .contact-hero-social-bottom {
    margin-top: 24px;
  }
  .contact-map-wrapper iframe {
    height: 320px;
  }
  .contact-locations-section {
    padding-bottom: 120px;
  }
}

/* RTL (Arapça) – Hakkımızda bölümü düzeltmeleri */
[dir="rtl"] .about-section-three .content-column .inner-column {
  padding-left: 0;
  padding-right: 70px;
}
[dir="rtl"] .about-section-three .content-column .content-box {
  padding-right: 0;
  padding-left: 0;
}
[dir="rtl"] .about-section-three .content-column .sec-title,
[dir="rtl"] .about-section-three .content-column .sec-title .text {
  text-align: right;
}
[dir="rtl"] .about-section-three .content-column .sec-title .sub-title {
  text-align: right;
  display: block;
}
[dir="rtl"] .about-section-three .content-column .sec-title h2 {
  text-align: right;
}
[dir="rtl"] .about-section-three .image-column .inner-column {
  margin-right: 0;
  margin-left: -30px;
}
[dir="rtl"] .about-section-three .image-column .image-1:before {
  left: auto;
  right: -60px;
}
[dir="rtl"] .about-section-three .image-column .image-2 {
  right: auto;
  left: 0;
}
[dir="rtl"] .about-section-three .image-column .icon-dots {
  right: auto;
  left: 0;
}
[dir="rtl"] .about-section-three .anim-icons .icon-object-1 {
  right: auto;
  left: -320px;
}
[dir="rtl"] .about-section-three .anim-icons .icon-object-4 {
  left: auto;
  right: -600px;
}
[dir="rtl"] .about-section-three .content-column .content-box .theme-btn {
  margin-left: 0;
  margin-right: 0;
}

/* RTL – Footer ikonlar ve küçük düzenlemeler */
[dir="rtl"] .main-footer .about-widget .contact-info li {
  padding-left: 0;
  padding-right: 50px;
}
[dir="rtl"] .main-footer .about-widget .contact-info li i {
  left: auto;
  right: 0;
}
[dir="rtl"] .main-footer .widget-title {
  padding-left: 0;
  padding-right: 13px;
}
[dir="rtl"] .main-footer .widget-title:after {
  left: auto;
  right: 0;
}
[dir="rtl"] .main-footer .about-widget .footer-contact-social,
[dir="rtl"] .main-footer .footer-widget .social-icon-two {
  flex-direction: row;
}
[dir="rtl"] .main-footer .footer-widget .social-icon-two li {
  margin-left: 0;
  margin-right: 10px;
}
[dir="rtl"] .main-footer .footer-widget .social-icon-two li:first-child {
  margin-right: 0;
}
[dir="rtl"] .main-footer .subscribe-form {
  padding-left: 0;
  padding-right: 40px;
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
}
[dir="rtl"] .main-footer .about-widget .text {
  text-align: right;
}
[dir="rtl"] .main-footer .links-widget .user-links {
  text-align: right;
}
[dir="rtl"] .main-footer .links-widget .user-links li a:before {
  left: auto;
  right: 0;
}

/* Header üst bar – boşluk düzenlemeleri */
.header-style-two .header-top .inner-container {
  gap: 24px;
}
.header-style-two .header-top .list-style-one li {
  margin-right: 28px;
}
.header-style-two .header-top .list-style-one li:last-child {
  margin-right: 0;
}
.header-style-two .header-top .list-style-one li i {
  margin-right: 8px;
}
/* RTL (Arapça) – header iletişim öğeleri arası boşluk */
[dir="rtl"] .header-style-two .header-top .list-style-one li {
  margin-right: 0;
  margin-left: 28px;
}
[dir="rtl"] .header-style-two .header-top .list-style-one li:last-child {
  margin-left: 0;
}
[dir="rtl"] .header-style-two .header-top .list-style-one li i {
  margin-right: 0;
  margin-left: 8px;
}
.header-style-two .header-top .top-right .social-icon-one {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-style-two .header-top .top-right .social-icon-one li {
  margin-left: 0 !important;
}

/* Anasayfa – hizmetler ile iletişim arası boşluk */
.services-list-section {
  padding-bottom: 34px !important;
}
.services-list-section + .contact-details {
  margin-top: 40px;
}

/* Anasayfa ürün kartları – sabit boyut, görsel alanı doldur */
.services-list-section .services-list-product-card .inner-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.services-list-section .services-list-product-card .image-box {
  flex-shrink: 0;
  height: 220px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.services-list-section .services-list-product-card .image-box .icon-box {
  position: relative;
  z-index: 3;
}
.services-list-section .services-list-product-card .image-box .image {
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.services-list-section .services-list-product-card .image-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-list-section .services-list-product-card .content-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Anasayfa ürün carousel – tam genişlik, modern, border-radius, ilk 5 görünür (max 9) */
.home-products-carousel-section {
  padding: 48px 0 40px;
}
.home-products-carousel-section .home-products-carousel-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 8px;
  padding-left: 48px;
  padding-right: 48px;
  box-sizing: border-box;
}
.home-products-carousel-section .home-products-carousel-outer {
  position: relative;
  overflow: hidden;
  padding: 12px 56px 20px;
  max-width: 1500px;
  margin: 0 auto;
}
.home-products-carousel-section .home-products-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.home-products-carousel-section .home-products-carousel:active {
  cursor: grabbing;
}
.home-products-carousel-section .home-products-carousel::-webkit-scrollbar {
  display: none;
}
/* Kart yapısı: 2. referans görsel – üstte ikon+başlık, ortada gri kutuda görsel, altta tek CTA */
.home-products-carousel-section .home-products-carousel-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 260px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  max-width: none;
  align-self: stretch;
}
.home-products-carousel-section .home-products-carousel-card .home-products-card-inner {
  height: 100%;
  min-height: 340px;
  max-height: 340px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.home-products-carousel-section .home-products-carousel-card:hover .home-products-card-inner {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}
.home-products-carousel-section .home-products-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  min-height: 48px;
}
.home-products-carousel-section .home-products-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0d3a5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.home-products-carousel-section .home-products-card-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1e293b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-products-carousel-section .home-products-card-image-wrap {
  flex: 0 0 160px;
  height: 160px;
  min-height: 160px;
  border-radius: 12px;
  background: #f1f5f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 14px;
}
.home-products-carousel-section .home-products-card-image-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
.home-products-carousel-section .home-products-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  draggable: false;
}
.home-products-carousel-section .home-products-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-theme-color1, var(--theme-color1, #173857));
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  text-decoration: none;
}
.home-products-carousel-section .home-products-card-cta:hover {
  color: #fff !important;
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.home-products-carousel-section .home-products-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #0d3a5c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-size: 1rem;
}
.home-products-carousel-section .home-products-carousel-btn:hover {
  background: #0d3a5c;
  color: #fff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 24px rgba(13, 58, 92, 0.25);
}
.home-products-carousel-section .home-products-carousel-prev {
  left: 12px;
}
.home-products-carousel-section .home-products-carousel-next {
  right: 12px;
}
.home-products-carousel-section .home-products-carousel-cta-wrap {
  padding-left: 15px;
  padding-right: 15px;
}
.home-products-carousel-section .home-products-cta-btn {
  border-radius: 12px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
}
@media (max-width: 1200px) {
  .home-products-carousel-section .home-products-carousel-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 240px;
  }
}
@media (max-width: 768px) {
  .home-products-carousel-section .home-products-carousel-outer {
    padding-left: 44px;
    padding-right: 44px;
  }
  .home-products-carousel-section .home-products-carousel-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 220px;
  }
  .home-products-carousel-section .home-products-card-image-wrap {
    flex: 0 0 120px;
    height: 120px;
    min-height: 120px;
  }
  .home-products-carousel-section .home-products-card-inner {
    min-height: 300px;
    max-height: 300px;
  }
  .home-products-carousel-section .home-products-carousel-btn {
    width: 40px;
    height: 40px;
    left: 8px;
    right: 8px;
  }
  .home-products-carousel-section .home-products-carousel-next {
    right: 8px;
  }
}

/* Anasayfa – iletişim formu ile bloglar arası boşluk */
.contact-details--home {
  padding-bottom: 20px !important;
}
.contact-details--home + .news-section-two {
  padding-top: 20px !important;
}

/* Blog sayfası – bloglar 50px yukarı, ovalin üstünde */
.blog-page.news-section {
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

/* Blog kartları – modern yapı (2. görsel tarzı) */
.blog-card-modern__inner {
  background: #fafafa !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  padding: 24px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.blog-card-modern__inner:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-4px);
  border-color: #d1d5db !important;
}
.blog-card-modern__header {
  position: relative;
  padding-right: 100px;
  min-height: 50px;
}
.blog-card-modern__date {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #ea1725 !important;
  background: var(--bg-theme-color2, #ea1725) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
}
.blog-card-modern__date i {
  font-size: 12px;
  opacity: 0.9;
}
.blog-card-modern__title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #173857 !important;
  color: var(--theme-color1, #173857) !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.35;
}
/* Anasayfa blog kartı – başlık en fazla 2 satır */
.news-section-two .blog-card-modern__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section-two .blog-card-modern__title a {
  display: block;
}
/* Blog sayfası – başlık 2 satır, kısa açıklama 3 satır */
.blog-page .blog-card-modern__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-page .blog-card-modern__title a {
  display: block;
}
.blog-page .blog-card-modern__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-modern__title a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.blog-card-modern__title a:hover {
  color: #ea1725 !important;
  color: var(--theme-color2, #ea1725) !important;
}
.blog-card-modern__desc {
  font-size: 0.9rem !important;
  color: #6b7280 !important;
  line-height: 1.6;
  margin: 0 0 16px 0;
}
.blog-card-modern__image {
  margin: 0 0 16px 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid #e5e7eb;
}
.blog-card-modern__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.blog-card-modern__inner:hover .blog-card-modern__image img {
  transform: scale(1.03);
}
.blog-card-modern__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #173857 !important;
  color: var(--theme-color1, #173857) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  margin-top: auto;
  transition: color 0.2s ease, gap 0.2s ease;
}
.blog-card-modern__link:hover {
  color: #ea1725 !important;
  color: var(--theme-color2, #ea1725) !important;
  gap: 12px;
}
.blog-card-modern__link i {
  color: inherit;
}
.blog-card-modern {
  margin-bottom: 30px;
}

/* RTL – blog kartları: tarih her zaman en sağda (Arapça’da da ters dönmesin) */
[dir="rtl"] .blog-card-modern__header {
  padding-right: 0;
  padding-left: 100px;
}
[dir="rtl"] .blog-card-modern__date {
  right: auto !important;
  left: 0 !important;
}
[dir="rtl"] .blog-card-modern__title {
  text-align: right;
}
[dir="rtl"] .blog-card-modern__link i {
  transform: scaleX(-1);
}

/* RTL – Telefon numaraları soldan sağa görünsün (0212 594 93 96 gibi) */
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] .contact-info a[href^="tel:"],
[dir="rtl"] .contact-info-box a[href^="tel:"],
[dir="rtl"] p a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

/* Blog tarihi – sadece yazıyı sola çekme, sağdan boşluk (kutu sabit) */
.news-block-two .image-box .date {
  padding-left: 35px;
  padding-right: 15px;
}
