/* Dil değiştirici – stabilize, profesyonel görünüm */
.main-menu .navigation li.language-dropdown {
  margin-left: 14px;
  position: relative;
}
.main-header .nav-outer {
  overflow: visible;
}
.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;
  height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 23, 42, 0.16);
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.main-menu .navigation li.language-dropdown > a.lang-toggle:hover,
.main-menu .navigation li.language-dropdown.show > a.lang-toggle {
  background: rgba(15, 23, 42, 0.28);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.main-menu .navigation li.language-dropdown .lang-flag {
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}
.main-menu .navigation li.language-dropdown .lang-chevron {
  font-size: 10px;
  opacity: .9;
  transition: transform .2s ease;
}
.main-menu .navigation li.language-dropdown.show .lang-chevron {
  transform: rotate(180deg);
}
.main-menu .navigation li.language-dropdown:hover .lang-chevron {
  transform: rotate(180deg);
}
.main-menu .navigation li.language-dropdown > .dropdown-menu {
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.main-menu .navigation li.language-dropdown > .dropdown-menu.show {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: auto !important;
}
/* Desktop'ta tıklamadan, hover ile de açılsın */
.main-menu .navigation li.language-dropdown:hover > .dropdown-menu {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: auto !important;
}
.main-menu .navigation li.language-dropdown .lang-dropdown-menu {
  min-width: 178px;
  padding: 8px;
  margin-top: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.16);
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  top: 100% !important;
  inset: auto !important;
  overflow: hidden;
  z-index: 1001;
}
.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: 9px 12px !important;
  margin: 0 !important;
  border-radius: 9px;
  color: #1f2937 !important;
  font-size: 13px;
  font-weight: 500;
  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 */
}
@media (max-width: 1199px) {
  .main-menu .navigation li.language-dropdown {
    margin-left: 10px;
  }
}

/* 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(139, 30, 63, 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(139, 30, 63, 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 #aaaaaa;
}

/* 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 #555965;
}

@media (max-width: 767.98px) {
  .banner-section-two::after {
    bottom: -130px; /* mobilde ovali biraz yukarı al */
  }
}

.brand-section-home {
  position: relative;
  padding: 24px 0 40px;
}
.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.1rem;
  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;
}

/* Anasayfa ürün kategorileri - kaydırmalı yapı */
.home-product-categories-section {
  padding: 6px 0 58px;
}

.home-category-grid-wrap {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 58px;
  position: relative;
}

.home-category-slider-controls {
  position: absolute;
  inset: 50% 0 auto 0;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}

.home-category-slider-btn {
  position: absolute;
  top: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(15, 42, 67, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--theme-color1, #0f2a43);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  pointer-events: auto;
}
.home-category-slider-btn.prev { left: 0; }
.home-category-slider-btn.next { right: 0; }

.home-category-slider-btn:hover {
  background: var(--theme-color1, #0f2a43);
  border-color: var(--theme-color1, #0f2a43);
  color: #fff;
}

.home-category-grid {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, calc((100% - 91.2px) / 4.8));
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: none;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  -ms-overflow-style: none;
  padding-bottom: 0;
  cursor: grab;
}
.home-category-grid,
.home-category-grid * {
  -webkit-user-drag: none;
}

.home-category-grid::-webkit-scrollbar {
  display: none;
}

.home-category-grid-card {
  min-width: 0;
  width: 100%;
}

.home-category-grid.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.home-product-categories-section .home-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
  border-radius: 18px;
  border: 1px solid rgba(15, 42, 67, 0.12);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-product-categories-section .home-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
  border-color: rgba(139, 30, 63, 0.28);
}

.home-product-categories-section .home-category-card__icon {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 0;
  background: #e9eff5;
  padding: 0;
  overflow: hidden;
}

.home-product-categories-section .home-category-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  transition: transform 0.45s ease;
}

.home-product-categories-section .home-category-card:hover .home-category-card__icon img {
  transform: scale(1.06);
}

.home-product-categories-section .home-category-card__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(15, 42, 67, 0.44), transparent);
  pointer-events: none;
}

.home-product-categories-section .home-category-card__badge {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(139, 30, 63, 0.92);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(139, 30, 63, 0.28);
}

.home-product-categories-section .home-category-card__content {
  padding: 16px 18px 18px;
  text-align: center;
}

.home-product-categories-section .brand-card-home__name {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--theme-color1, #0f2a43);
  margin: 0 0 5px 0;
  line-height: 1.35;
  min-height: 2.65em;
}

.home-product-categories-section .home-category-card__meta {
  font-size: 0.84rem;
  color: #617284;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .home-category-grid {
    grid-auto-columns: minmax(250px, calc((100% - 48px) / 3));
  }
}

@media (max-width: 767.98px) {
  .home-category-grid-wrap {
    padding: 0 40px;
  }
  .home-category-grid { gap: 16px; }
  .home-category-grid {
    grid-auto-columns: minmax(240px, calc(100% - 28px));
  }
  .home-category-grid-card { min-width: 240px; }
  .home-product-categories-section .home-category-card__icon {
    height: 190px;
  }
  .home-category-slider-controls {
    inset: 44% 0 auto 0;
  }
}

@media (max-width: 575px) {
  .home-category-grid {
    grid-auto-columns: minmax(220px, calc(100% - 20px));
  }
  .home-category-grid-card { min-width: 220px; }
}

.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: #f6f7f9;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  border: 1px solid color-mix(in srgb, var(--theme-color1, #173857) 22%, #ffffff);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.product-detail-image-wrap:active {
  cursor: grabbing;
}

.product-detail-image {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-detail-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.product-detail-slides {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.product-detail-slide {
  margin: 0;
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transition: transform 0.3s ease;
  z-index: auto;
}
.product-detail-slide picture,
.product-detail-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.product-detail-image-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-detail-image-layer.is-changing {
  opacity: 0.38;
  transform: translateX(8px);
}
.product-detail-slider.is-enhanced .product-detail-slide.is-active {
  opacity: 1;
  z-index: auto;
}
.product-detail-slider.is-enhanced .product-detail-slide picture,
.product-detail-slider.is-enhanced .product-detail-slide > img {
  opacity: 0 !important;
  visibility: hidden !important;
}
.product-detail-main-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: all 0.2s ease;
}
.product-detail-main-nav.prev { left: 12px; }
.product-detail-main-nav.next { right: 12px; }
.product-detail-main-nav:hover {
  background: var(--theme-color2, #ea1725);
  border-color: var(--theme-color2, #ea1725);
}
.product-detail-fullscreen-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(15, 23, 42, 0.5);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: all 0.2s ease;
}
.product-detail-fullscreen-btn:hover {
  background: var(--theme-color2, #ea1725);
  border-color: var(--theme-color2, #ea1725);
}

.product-detail-media-layout {
  --product-thumb-size: clamp(72px, 6vw, 96px);
  --product-thumb-col: clamp(98px, 8.4vw, 132px);
  --product-features-col: clamp(220px, 24vw, 290px);
  --product-main-height: clamp(280px, 30vw, 360px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--product-features-col);
  gap: 12px;
  align-items: start;
}
.product-detail-media-layout.has-thumbs {
  grid-template-columns: var(--product-thumb-col) minmax(0, 1fr) var(--product-features-col);
}
.product-detail-media-layout .product-detail-image-wrap {
  aspect-ratio: auto;
  height: var(--product-main-height);
  max-height: var(--product-main-height);
}
.product-detail-thumb-slider {
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: calc((var(--product-main-height) - 16px) / 3);
  gap: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  height: var(--product-main-height);
  max-height: var(--product-main-height);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior: contain;
}
.product-detail-thumb-slider::-webkit-scrollbar {
  display: none;
}
.product-detail-thumb-slider.is-dragging {
  cursor: grabbing;
}

.product-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.product-gallery-modal.is-open {
  display: block;
}
.product-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 30, 0.82);
}
.product-gallery-modal__dialog {
  position: relative;
  width: min(1180px, calc(100vw - 32px));
  margin: 26px auto;
  border-radius: 14px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 14px;
}
.product-gallery-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  z-index: 2;
}
.product-gallery-modal__image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #0b1221;
  aspect-ratio: 16 / 9;
}
.product-gallery-modal__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-gallery-modal__nav.prev { left: 12px; }
.product-gallery-modal__nav.next { right: 12px; }
.product-gallery-modal__thumbs {
  margin-top: 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 120px;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}
.product-gallery-modal__thumb {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: #0b1221;
}
.product-gallery-modal__thumb.is-active {
  border-color: var(--theme-color2, #ea1725);
  box-shadow: 0 0 0 2px rgba(234, 23, 37, 0.35);
}
.product-gallery-modal__thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}
.product-detail-thumb {
  border: 1px solid rgba(23, 56, 87, 0.2);
  background: #fff;
  border-radius: 8px;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.product-detail-thumb:hover {
  border-color: var(--theme-color2, #ea1725);
}
.product-detail-thumb.is-active {
  border-color: var(--theme-color2, #ea1725);
  box-shadow: 0 0 0 2px rgba(234, 23, 37, 0.15);
}
.product-detail-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
}
.product-detail-highlight-item {
  min-height: 80px;
  border: 1px solid color-mix(in srgb, var(--theme-color1, #173857) 24%, #ffffff);
  border-radius: 14px;
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--theme-color1, #173857) 6%, #ffffff) 0%,
    color-mix(in srgb, var(--theme-color2, #ea1725) 4%, #ffffff) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  text-align: center;
}
.product-detail-highlight-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    var(--theme-color1, #173857) 0%,
    var(--theme-color2, #ea1725) 100%
  );
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--theme-color1, #173857) 34%, transparent);
}
.product-detail-highlight-text {
  color: var(--theme-color1, #173857);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  display: block;
}

.product-related-section {
  margin-top: 30px;
  padding: 14px 0 2px;
  border-top: 1px solid rgba(23, 56, 87, 0.1);
}
.product-related-section.home-products-carousel-section {
  padding: 14px 0 2px;
}
.product-detail-page .product-related-section.home-products-carousel-section .home-products-grid-wrap {
  padding-left: 0;
  padding-right: 0;
}
.product-detail-page .product-related-section.home-products-carousel-section .home-products-grid {
  gap: 16px;
}
.product-related-section .home-products-grid-wrap {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.product-related-title {
  color: var(--theme-color1, #173857);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-related-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 5);
  gap: 14px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: 8px;
  padding-bottom: 16px;
}
.product-related-grid::-webkit-scrollbar {
  display: none;
}
.product-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 238px;
  background: #fff;
  border: 1px solid rgba(23, 56, 87, 0.12);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-related-card:hover {
  border-color: var(--theme-color2, #ea1725);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
  transform: translateY(-2px);
}
.product-related-card__img,
.product-related-card__placeholder {
  width: 100%;
  height: 176px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #8a97a8;
  font-size: 1.8rem;
}
.product-related-card__name {
  padding: 11px 12px 12px;
  border-top: 1px solid rgba(23, 56, 87, 0.12);
  color: var(--theme-color1, #173857);
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.35;
  min-height: 60px;
}

.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 sekmeleri - renkleri tema değişkenlerinden al */
.product-detail-description .product-detail-tabs {
  border-bottom: 1px solid rgba(23, 56, 87, 0.18);
  gap: 8px;
}
.product-detail-description .product-detail-tabs .nav-link {
  color: var(--theme-color1, #173857);
  border: 1px solid rgba(23, 56, 87, 0.22);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background: #f4f7fa;
  font-weight: 600;
  padding: 0.62rem 1.1rem;
  opacity: 0.86;
  transition: all 0.2s ease;
}
.product-detail-description .product-detail-tabs .nav-link:hover,
.product-detail-description .product-detail-tabs .nav-link:focus {
  color: var(--theme-color2, #ea1725);
  border-color: var(--theme-color2, #ea1725);
  background: rgba(234, 23, 37, 0.06);
  opacity: 1;
}
.product-detail-description .product-detail-tabs .nav-link.active {
  color: #fff;
  background: var(--theme-color2, #ea1725);
  border-color: var(--theme-color2, #ea1725);
  opacity: 1;
  box-shadow: 0 6px 14px rgba(234, 23, 37, 0.22);
  position: relative;
  z-index: 2;
}

/* Ü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;
  }
  .product-detail-media-layout,
  .product-detail-media-layout.has-thumbs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .product-detail-media-layout .product-detail-image-wrap {
    aspect-ratio: auto;
    height: clamp(240px, 54vw, 320px);
    max-height: clamp(240px, 54vw, 320px);
  }
  .product-detail-thumb-slider {
    grid-auto-flow: column;
    grid-auto-rows: unset;
    grid-auto-columns: calc((100% - 20px) / 3);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    height: auto;
    max-height: none;
    min-height: 0;
    align-items: stretch;
  }
  .product-detail-thumb {
    height: 72px;
  }
  .product-detail-main-nav {
    width: 34px;
    height: 34px;
  }
  .product-detail-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-related-grid {
    grid-auto-columns: calc((100% - 24px) / 3);
  }
}

@media (max-width: 575px) {
  .product-detail-highlight-item {
    min-height: 76px;
    padding: 10px;
  }
  .product-detail-highlight-text {
    font-size: 0.86rem;
  }
  .product-detail-thumb-slider {
    grid-auto-columns: calc((100% - 16px) / 3);
    height: auto;
    max-height: none;
  }
  .product-related-grid {
    grid-auto-columns: calc((100% - 12px) / 2);
  }
}

/* =============================
   Ü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.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0 0 20px 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Kategori detay sayfası – alt makale alanı */
.products-category-article {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.products-category-article-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--theme-color1);
  margin-bottom: 16px;
}

.products-category-article-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

.products-category-article-body p {
  margin-bottom: 12px;
}

.products-category-article-body ul,
.products-category-article-body ol {
  padding-left: 1.2rem;
  margin-bottom: 12px;
}

.products-category-article-body h3,
.products-category-article-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--theme-color1);
}

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

.products-filter-search .form-control {
  padding: 10px 40px 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(23,56,87,.15);
  font-size: 0.92rem;
  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: 0.92rem;
  opacity: .85;
}

.products-filter-categories {
  max-height: 520px; /* kategori listesi için daha yüksek alan */
  overflow-y: auto;
  margin-bottom: 20px;
}

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

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

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

.products-filter-categories .form-check-input {
  width: 1.2em;
  height: 1.2em;
  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 {
  /* Tüm slider içerik bloğunu yatayda ortala */
  text-align: center !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: min(1120px, 90vw);
}

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

.banner-section-two .content-box .title {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: normal;
  overflow-wrap: normal;
  font-size: clamp(24px, 5.2vw, 88px);
  line-height: 1.1;
}

.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 0 120px 0; /* footer ile arasına boşluk */
  width: 100%;
}

/* Header: Ürünlerimiz dropdown (ürün kategorileri) – sade, profesyonel görünüm */
.main-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu {
  border-radius: 12px;
  padding: 8px 0;
  margin-top: -2px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.2);
  width: max-content;
  min-width: 280px;
  max-width: min(92vw, 680px);
}

.header-style-two .header-lower .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu {
  top: calc(100% - 26px);
  margin-top: 0;
}

.main-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li {
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.main-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li:last-child {
  border-bottom: none;
}

.main-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li > a {
  display: block;
  margin: 0;
  padding: 8px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--theme-color1);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 0;
}

.main-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li > a:hover {
  color: var(--theme-color1);
  background: rgba(148, 163, 184, 0.14);
}

.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;
  }
}

/* Yeni iletişim sol panel kartı (iletişim bilgileri + sosyal medya) */
.contact-info-panel {
  border: 0;
  border-radius: 16px;
  background: #fff;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--theme-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-info-text .label {
  display: block;
  font-size: 13px;
  color: #6b7280;
}
.contact-info-text .value,
.contact-info-text .value a {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-color1);
}

/* İletişim paneli içindeki sosyal ikonları yatay hizala */
.contact-info-panel .footer-contact-social {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-info-panel .footer-contact-social li {
  margin: 0 !important;
}
.contact-info-panel .footer-contact-social li a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--theme-color1);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

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

/* 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;
  font-size: 14px;
  line-height: 1.35;
}
.header-style-two .header-top .list-style-one li:last-child {
  margin-right: 0;
}
.header-style-two .header-top .list-style-one li a {
  font-size: 14px;
}
.header-style-two .header-top .list-style-one li i {
  margin-right: 8px;
  font-size: 13px;
}
/* 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;
}
.header-style-two .header-top .top-right .social-icon-one li a {
  font-size: 13px;
}

/* Footer son bloglar – özetleri tek satırda göster */
.footer-latest-posts .footer-post-excerpt {
  font-size: 13px;
  color: #aab3bb;
  margin-top: 2px;
  line-height: 1.5;
}

/* Footer: Hizmetlerimiz ve Son Gönderiler linkleri – varsayılan satır davranışı (kısıtlama yok) */
.main-footer .links-widget .user-links li a {
  display: inline-block;
}

/* 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;
}

/* Hizmet Kategorileri sayfasında kartları ekranın ortasında dar bir alanda tut */
.product-categories-page .product-categories-container {
  max-width: 1100px;
  margin: 0 auto;
}

.product-categories-page .product-categories-container .row.g-4 {
  justify-content: center;
}

/* Anasayfa ürünler - sabit grid (3 satır x 5 sütun) */
.home-products-carousel-section {
  padding: 0;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home-products-carousel-section .home-products-grid-wrap {
  max-width: 100vw !important;
  width: 100vw !important;
  min-height: 100vh;
  padding: 24px 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.home-products-carousel-section .home-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}
/* Metin düzenleme için: bu blokta yazılar her zaman seçilebilir olsun */
.home-products-carousel-section,
.home-products-carousel-section *:not(img):not(i) {
  -webkit-user-select: text !important;
  user-select: text !important;
}
.home-products-carousel-section img,
.home-products-carousel-section .home-products-card-image-placeholder {
  -webkit-user-select: none !important;
  user-select: none !important;
}
.home-products-carousel-section .home-products-grid-card {
  min-width: 0;
}
.home-products-carousel-section .home-products-grid-card .home-products-card-inner {
  height: 100%;
  min-height: 340px;
  max-height: 340px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  padding: 14px;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.home-products-carousel-section .home-products-grid-card:hover .home-products-card-inner {
  border-color: color-mix(in srgb, var(--theme-color2, #ea1725) 26%, #ffffff);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
  transform: translateY(-6px);
}
.home-products-carousel-section .home-products-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  min-height: 42px;
}
.home-products-carousel-section .home-products-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--theme-color1, #173857) 0%, #1c4a70 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 6px 14px rgba(23, 56, 87, 0.2);
}
.home-products-carousel-section .home-products-card-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.32;
  color: #0f2940;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  min-height: 2.4em;
}
.home-products-carousel-section .home-products-card-image-wrap {
  flex: 0 0 170px;
  height: 170px;
  min-height: 170px;
  border-radius: 14px;
  background: #f6f8fb;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  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;
  object-position: center;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  padding: 10px;
  transition: transform 0.28s ease;
}
.home-products-carousel-section .home-products-grid-card:hover .home-products-card-image-wrap img {
  transform: scale(1.04);
}

.home-products-carousel-section .home-products-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 40px;
}
.home-products-carousel-section .home-products-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--theme-color1, #173857) 0%, #1f4c72 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 11px;
  transition: filter 0.22s, transform 0.22s, box-shadow 0.22s;
  border: none;
  text-decoration: none;
  margin-top: auto;
  box-shadow: 0 8px 16px rgba(23, 56, 87, 0.18);
}
.home-products-carousel-section .home-products-card-cta:hover {
  color: #fff !important;
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(23, 56, 87, 0.25);
}
.home-products-carousel-section .home-products-carousel-cta-wrap {
  flex-shrink: 0;
  width: 100vw;
  max-width: 100vw !important;
  margin: 0 !important;
  padding-left: 32px;
  padding-right: 32px;
}
.home-products-carousel-section .home-products-cta-btn {
  border-radius: 12px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
}

@media (max-width: 1400px) {
  .home-products-carousel-section .home-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .home-products-carousel-section .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .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;
  }
}
@media (max-width: 575px) {
  .home-products-carousel-section .home-products-grid {
    grid-template-columns: 1fr;
  }
  .home-products-carousel-section .home-products-grid-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }
  .home-products-carousel-section .home-products-card-inner {
    min-height: 280px;
    max-height: none;
  }
}

/* Header mobil menü: Ürünlerimiz dropdown'ı – mobilde + ile aç/kapat */
@media (max-width: 991.98px) {
  /* Üst seviye ve alt seviye dropdown başlıklarına +/− ikonu */
  .mobile-menu .navigation li.products-dropdown .nav-cat-label {
    display: inline-block;
  }
  .mobile-menu .navigation li.products-dropdown .nav-cat-toggle {
    display: inline-block;
    margin-left: 6px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
  }
  .mobile-menu .navigation li.products-dropdown ul li.dropdown .nav-cat-toggle {
    margin-left: 6px;
  }
  .mobile-menu .navigation li.products-dropdown.open > a .nav-cat-toggle,
  .mobile-menu .navigation li.products-dropdown ul li.dropdown.open > a .nav-cat-toggle {
    content: '−';
  }

  /* Üst dropdown içeriği */
  .mobile-menu .navigation li.products-dropdown > ul {
    display: none;
    position: static !important;
    margin-top: 4px;
    padding-left: 18px;
  }
  .mobile-menu .navigation li.products-dropdown.open > ul {
    display: block;
  }

  /* Alt dropdown içeriği (alt kategoriler) */
  .mobile-menu .navigation li.products-dropdown ul li.dropdown > ul {
    display: none;
    margin-top: 2px;
    padding-left: 16px;
  }
  .mobile-menu .navigation li.products-dropdown ul li.dropdown.open > ul {
    display: block;
  }

  .mobile-menu .navigation li.products-dropdown > ul > li > a,
  .mobile-menu .navigation li.products-dropdown ul li.dropdown > ul > li > a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
  }
  /* Header içindeki ekstra iletişim linki sadece mobilde görünsün */
  .header-contact-link {
    display: block;
  }
}
@media (min-width: 992px) {
  /* Masaüstünde +/− ikonlarını gizle */
  .nav-cat-toggle {
    display: none;
  }
  .header-contact-link {
    display: none;
  }
}

/* Anasayfa – iletişim formu ile bloglar arası boşluk */
.contact-details--home {
  padding-bottom: 20px !important;
  position: relative;
  z-index: 3; /* üst kavislerin üzerinde kalsın */
}
.contact-details--home + .news-section-two {
  padding-top: 20px !important;
}

/* Anasayfa – mobilde blog bölümünün altına ekstra boşluk */
@media (max-width: 767.98px) {
  .news-section-two {
    padding-bottom: 40px !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.06rem !important;
  font-weight: 700 !important;
  color: #173857 !important;
  color: var(--theme-color1, #173857) !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.3;
}
/* 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;
}

.main-header .products-dropdown > a::after,
.sticky-header .products-dropdown > a::after {
  /* varsayılan oku kullan (gizlemeyi kaldırdık) */
}

/* Ürünlerimiz menüsü – açılan listede sağda ok çıkan üst kategoriler için hizalama */
.main-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li.dropdown > a,
.sticky-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li.dropdown > a {
  padding-right: 32px;
}

.main-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li.dropdown > a:after,
.sticky-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li.dropdown > a:after {
  right: 16px !important;
}

/* Ana açılır ürünler menüsü */
.main-header .products-dropdown-menu,
.sticky-header .products-dropdown-menu {
  border-radius: 14px !important;
}

/* Sağda açılan alt kategori menüsü */
.main-header .products-dropdown-menu > li > ul,
.sticky-header .products-dropdown-menu > li > ul {
  border-radius: 14px !important;
  width: max-content;
  min-width: 260px;
  max-width: min(92vw, 680px);
}

/* Ürünlerimiz menüsü – alt menü link stilleri (üst seviye ile aynı) */
.main-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li > ul > li > a,
.sticky-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li > ul > li > a {
  display: block;
  margin: 0;
  padding: 8px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--theme-color1);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 0;
}

.main-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li > ul > li > a:hover,
.sticky-header .main-menu .navigation > li.products-dropdown > ul.products-dropdown-menu > li > ul > li > a:hover {
  color: var(--theme-color1);
  background: rgba(148, 163, 184, 0.14);
}

/* Logo boyutları */
.main-header .logo img,
.sticky-header .logo img {
  width: 110px !important;
  height: auto !important;
}

.main-footer .upper-box .logo img {
  width: 265px !important;
  height: auto !important;
  max-width: 100%;
}
