/* ==========================================================================
   GENEL / GLOBAL STİLLER (Tüm Sayfalarda Ortak)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-pure-black: #000000;
  --bg-dark-gray: #1a1c1e;
  --accent-red: #ef233c;
  --text-gray: #a0a0a0;
  --bg-soft: #fdfcfb;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-pure-black);
  color: #ffffff;
  margin: 0;
}

/* Navbar / Header */
.header-main {
  background-color: var(--bg-pure-black);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  color: #ffffff !important;
}

.nav-link {
  color: #ffffff !important;
  margin: 0 12px;
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: 0.3s ease;
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-red) !important;
}

/* Mobil Menü (Offcanvas) */
.offcanvas {
  width: 100% !important;
  background-color: var(--bg-pure-black) !important;
  transition: transform 0.5s cubic-bezier(0.85, 0, 0.15, 1);
}

.offcanvas .nav-link {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0;
  opacity: 1;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 1;
  font-size: 1.2rem;
}

/* Genel Yardımcı Sınıflar */
.fw-800 {
  font-weight: 800;
}

/* Footer Section */
.footer-main {
  background-color: #000000;
  padding: 100px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -1px;
  color: #ffffff;
  text-decoration: none;
}

.footer-about-text {
  color: #888;
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-links li,
.footer-info li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-info a {
  color: #888;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-info a:hover {
  color: var(--accent-red);
  padding-left: 5px;
}

.footer-info li {
  color: #888;
  font-size: 0.95rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal a {
  color: #555;
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: 20px;
  transition: 0.3s;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer-main {
    padding: 60px 0 30px 0;
  }
  .footer-title {
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

/* ==========================================================================
   ANASAYFA CSS LERİ
   ========================================================================== */

/* Hero Section */
.hero-section {
  padding: 80px 0 120px 0;
  background: linear-gradient(
    180deg,
    var(--bg-pure-black) 0%,
    var(--bg-dark-gray) 100%
  );
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.search-container {
  background: #ffffff;
  border-radius: 14px;
  padding: 6px;
  display: flex;
  align-items: center;
  max-width: 520px;
  margin-bottom: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-container input {
  border: none;
  padding: 10px 15px;
  width: 100%;
  outline: none;
  font-size: 0.95rem;
  color: #333;
}

.search-container i {
  color: #ccc;
  margin-left: 15px;
}

.btn-search {
  background-color: var(--accent-red);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-search:hover {
  background-color: #d90429;
  transform: scale(1.02);
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0;
}

.stat-item p {
  color: var(--text-gray);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

.stat-plus {
  color: #ff8c00;
}

.hero-image-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-image-wrapper {
    margin-top: 60px;
  }
}

/* Brands Marquee */
.brands-section {
  padding: 60px 0;
  background-color: var(--bg-dark-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.brands-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brands-wrapper::before,
.brands-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.brands-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark-gray), transparent);
}

.brands-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark-gray), transparent);
}

.brands-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll 40s linear infinite;
}

.brand-item {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

.brand-item img {
  height: 45px;
  width: auto;
  filter: grayscale(1) brightness(0.8) opacity(0.6);
  transition: 0.4s ease;
}

.brand-item img:hover {
  filter: grayscale(0) brightness(1) opacity(1);
  transform: scale(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

@media (max-width: 768px) {
  .brand-item img { height: 35px; }
  .brand-item { width: 180px; }
  .brands-track { width: calc(180px * 14); }
  @keyframes scroll {
    100% { transform: translateX(calc(-180px * 7)); }
  }
}

/* Products Swiper */
.products-section {
  padding: 100px 0;
}

.product-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 15px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  height: 100%;
}

.product-card:hover {
  background: #ffffff;
  border-color: #eee;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
}

.product-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 220px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.badge-stock {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #27ae60;
  color: white;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 5;
}

.product-details {
  padding: 20px 5px 10px 5px;
}

.category {
  font-size: 0.75rem;
  color: var(--accent-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1c1e;
  margin: 10px 0;
  line-height: 1.4;
  height: 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oem-no {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0;
}

.price {
  font-weight: 700;
  color: #1a1c1e;
}

.btn-detail {
  width: 40px;
  height: 40px;
  background: #1a1c1e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-detail:hover {
  background: var(--accent-red);
  color: white;
}

.product-nav-wrapper {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 50px;
  height: 50px;
  border: 2px solid #eee;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  color: #1a1c1e;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: #1a1c1e;
  color: white;
  border-color: #1a1c1e;
}

/* Partners Dark Marquee */
.dark-partners {
  background-color: #0b0c0e;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.dark-partners .partners-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.dark-partners .partners-track {
  display: flex;
  width: calc(280px * 12);
  animation: scrollPartnersDark 35s linear infinite;
}

.dark-partners .partner-item {
  width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}

.dark-partners .partner-item img {
  height: 45px;
  width: auto;
  max-width: 100%;
  filter: grayscale(1) brightness(0.7) opacity(0.5);
  transition: all 0.4s ease;
}

.dark-partners .partner-item img:hover {
  filter: grayscale(0) brightness(1) opacity(1);
  transform: scale(1.1);
}

@keyframes scrollPartnersDark {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-280px * 6)); }
}

.dark-partners .partners-wrapper::before,
.dark-partners .partners-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
}

.dark-partners .partners-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0b0c0e, transparent);
}

.dark-partners .partners-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0b0c0e, transparent);
}

/* About Section */
.about-minimalist {
  padding: 120px 0;
  overflow: hidden;
}

.about-image-stack {
  position: relative;
  padding: 20px;
}

.main-img-wrapper {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.05);
}

.main-img {
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.about-image-stack:hover .main-img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background: #1a1c1e;
  color: white;
  padding: 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.exp-year {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-red);
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1c1e;
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px #1a1c1e;
}

.about-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  padding: 18px 35px;
  background: #1a1c1e;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-modern:hover {
  background: var(--accent-red);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(239, 35, 60, 0.3);
}

.about-shape {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(239, 35, 60, 0.05) 0%, transparent 70%);
  z-index: -1;
}

@media (max-width: 991px) {
  .about-minimalist { padding: 80px 0; }
  .about-title { font-size: 2.5rem; }
  .experience-badge { padding: 20px; bottom: -20px; right: 20px; }
  .exp-year { font-size: 2.5rem; }
}

/* CTA Contact Card */
.cta-card {
  background: linear-gradient(135deg, #0f1012 0%, #1a1c1e 100%);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.cta-text {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 450px;
  margin-bottom: 0;
}

.btn-call,
.btn-whatsapp {
  padding: 16px 35px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn-call {
  background-color: #ffffff;
  color: #000000 !important;
}

.btn-call:hover {
  background-color: #f0f0f0;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.cta-icon-bg {
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  transform: rotate(-15deg);
}

@media (max-width: 991px) {
  .cta-card { padding: 40px 30px; }
  .cta-title { font-size: 2rem; }
  .btn-call, .btn-whatsapp { width: 100%; }
}

/* ==========================================================================
   İLETİŞİM SAYFASI ÖZEL STİLLERİ
   ========================================================================== */

.contact-hero {
    padding: 100px 0 60px 0;
    background: linear-gradient(180deg, var(--bg-pure-black) 0%, var(--bg-dark-gray) 100%);
}

.contact-main {
    padding: 100px 0;
}

/* Bilgi Kutuları */
.icon-box {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--accent-red);
    font-size: 1.4rem;
}

.social-dot {
    width: 40px;
    height: 40px;
    background: #1a1c1e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-dot:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-3px);
}

/* Form Tasarımı */
.contact-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
}

.custom-input {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.custom-input:focus {
    background: #fff;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(239, 35, 60, 0.05);
    outline: none;
}

/* Harita Bölümü */
.map-section {
    padding: 0 0 100px 0;
}

.map-wrapper {
    border-radius: 40px; /* İstediğin rounded kenarlar */
    filter: grayscale(0.2); /* Daha minimalist bir görünüm için */
    transition: 0.5s;
}

.map-wrapper:hover {
    filter: grayscale(0);
}

@media (max-width: 991px) {
    .contact-form-card {
        padding: 30px;
        margin-top: 40px;
    }
}

/* ==========================================================================
   ACARKON STYLE - EDITORIAL DESIGN
   ========================================================================== */

.bg-soft { background-color: var(--bg-soft); }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }

/* Hero */
.acarkon-style-hero {
    padding: 120px 0;
    background-color: #fff;
}

.hero-image-frame {
    border-radius: 4px;
    overflow: hidden;
    height: 600px;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Narrative */
.about-intro {
    padding: 120px 0;
}

.narrative-heading {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.4;
    color: #1a1c1e;
}

/* Hakkımızda Gallery */
.hakkimizda-section {
    padding: 150px 0;
    background-color: #fff;
    overflow: hidden;
}

.section-title-elegant {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.overlap-gallery {
    position: relative;
    z-index: 2;
}

.img-1 {
    width: 80%;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.img-2 {
    width: 60%;
    border-radius: 8px;
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: 3;
    border: 10px solid #fff;
}

/* Organik Blob Şekli */
.blob-shape {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: #f7f3f0;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    opacity: 0.8;
}

/* Vision/Mission Table */
.mv-editorial {
    padding: 0;
}

/* Partners Dark */
.dark-partners {
    background-color: #141414;
    padding: 100px 0;
}

.dark-partners .partner-item img {
    filter: grayscale(1) invert(1) brightness(1.5) opacity(0.5);
    transition: 0.4s;
}

/* Responsive */
@media (max-width: 991px) {
    .narrative-heading { font-size: 1.8rem; }
    .hero-image-frame { height: 400px; }
    .img-1, .img-2 { width: 100%; position: static; margin-bottom: 20px; border: none; }
    .blob-shape { display: none; }
    .pt-100 { padding-top: 50px; }
    .pb-100 { padding-bottom: 50px; }
}

/* ==========================================================================
   ÜRÜN LİSTELEME / FİLTRELEME ÖZEL STİLLERİ
   ========================================================================== */

.filter-sidebar {
    padding-right: 20px;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1c1e;
    border-left: 3px solid var(--accent-red);
    padding-left: 15px;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: block;
    padding: 5px 0;
}

.filter-list a:hover,
.filter-list a.active {
    color: var(--accent-red);
    padding-left: 5px;
    font-weight: 600;
}

/* Checkbox Modernizasyonu */
.brand-check-list .form-check-input:checked {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}

.brand-check-list .form-check-label {
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
}

/* Pagination Modernizasyonu */
.page-link {
    padding: 12px 18px;
    font-weight: 600;
    transition: 0.3s;
}

.page-link:hover {
    background-color: #f8f9fa;
    color: var(--accent-red) !important;
}

/* Ürünler sayfası için Hero başlık ayarı */
.contact-hero {
    padding: 100px 0 60px 0;
    background: linear-gradient(180deg, var(--bg-pure-black) 0%, var(--bg-dark-gray) 100%);
}

@media (max-width: 991px) {
    .filter-sidebar {
        margin-bottom: 50px;
        padding-right: 0;
    }
}

/* ==========================================================================
   GİZLİLİK POLİTİKASI ÖZEL STİLLERİ
   ========================================================================== */

.policy-text h2 {
    border-left: 4px solid var(--accent-red);
    padding-left: 15px;
    margin-top: 40px;
}

.policy-text p {
    color: #4a4a4a;
    font-size: 1.05rem;
}

.policy-text .lead {
    font-size: 1.25rem;
    font-weight: 300;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .policy-text h2 {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   ÜRÜN DETAY SAYFASI ÖZEL STİLLERİ (BEYAZ TEMA & SLIDER)
   ========================================================================== */

/* --- ÜRÜN DETAY ANA KAPSAYICI (BEYAZ TEMA) --- */
.product-detail-main {
    background-color: #ffffff;
    color: #111111;
}

.product-title { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; color: #111; }
.product-sku { font-size: 0.95rem; color: #666; font-weight: 500; margin-bottom: 30px; }

.badge-brand {
    background-color: #f8f9fa;
    border: 1px solid #eaeaea;
    color: #111;
    padding: 6px 12px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.btn-red {
    background-color: var(--accent-red);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    border: 2px solid var(--accent-red);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-red:hover { background-color: transparent; color: var(--accent-red); }

.catalog-link { color: #111; font-weight: 600; text-decoration: none; transition: color 0.3s; }
.catalog-link:hover { color: var(--accent-red); }

/* --- SWIPER SLIDER AYARLARI --- */
.mainSwiper {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    background-color: #f8f9fa;
    margin-bottom: 15px;
}
.mainSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.thumbSwiper {
    width: 100%;
    height: 100px;
}
.thumbSwiper .swiper-slide {
    width: 25%; /* 4 Tane sığması için */
    height: 100%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s, border 0.3s;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
}
.thumbSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--accent-red);
}
.thumbSwiper .swiper-slide:hover { opacity: 1; }

/* --- İKONLU ÖZELLİKLER BARI --- */
.features-bar {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 40px 0;
    margin: 60px 0;
    background-color: #fcfcfc;
}
.feature-item { text-align: center; }
.feature-item i { font-size: 2.5rem; color: #111; margin-bottom: 15px; display: inline-block; transition: color 0.3s, transform 0.3s;}
.feature-item:hover i { color: var(--accent-red); transform: translateY(-5px); }
.feature-item h6 { font-weight: 700; font-size: 0.95rem; margin: 0; color: #444; }

/* --- TABS (Sekmeler) --- */
.custom-tabs { border-bottom: 1px solid #eaeaea; }
.custom-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    padding: 12px 20px;
    background: transparent;
    margin: 0 5px;
    border-bottom: 3px solid transparent;
}
.custom-tabs .nav-link:hover { color: #111; }
.custom-tabs .nav-link.active {
    color: #111;
    border-bottom: 3px solid var(--accent-red);
}

/* --- TEKNİK TABLO & AÇIKLAMA --- */
.tech-table-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 35px;
    margin-top: 30px;
    border: 1px solid #eaeaea;
}
.tech-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}
.tech-row:last-child { border-bottom: none; }
.tech-label { color: #666; font-weight: 500; font-size: 0.95rem; }
.tech-value { color: #111; font-weight: 700; font-size: 0.95rem; text-align: right; }
.desc-text { color: #555; line-height: 1.8; font-weight: 400; }

/* --- DÖKÜMANLAR --- */
.doc-box {
    border: 1px solid #eaeaea;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    text-decoration: none;
    color: #111;
}
.doc-box:hover { border-color: var(--accent-red); box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-3px); }
.doc-icon {
    background-color: #f8f9fa;
    color: #666;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.5rem;
    border: 1px solid #eaeaea;
    transition: all 0.3s;
}
.doc-box:hover .doc-icon { color: white; background-color: var(--accent-red); border-color: var(--accent-red); }

/* --- İLGİLİ ÜRÜNLER KARTI --- */
.related-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    display: block;
    transition: all 0.3s;
    height: 100%;
}

.related-card {
    border-color: #ccc;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.related-card:hover {
    border-color: #ccc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}
.related-img {
    height: 220px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}
.related-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.4s; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-info { padding: 20px; }
.related-brand { font-size: 0.75rem; color: #888; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; display: block;}
.related-title { font-size: 1rem; font-weight: 700; margin: 0; color: #111;}

/* --- BREADCRUMB (BEYAZ TEMA İÇİN) --- */
.product-detail-main .breadcrumb a { color: #666; font-weight: 500; }
.product-detail-main .breadcrumb a:hover { color: var(--accent-red); }
.product-detail-main .breadcrumb-item.active { color: #111; font-weight: 700; }
.product-detail-main .breadcrumb-item + .breadcrumb-item::before { color: #ccc; }

/* Language Dropdown */
.lang-dropdown .dropdown-toggle::after {
  display: none;
}

.lang-dropdown .nav-link {
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 10px;
  transition: 0.3s;
}

.lang-dropdown .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.lang-dropdown .dropdown-menu {
  background: #1a1c1e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 8px;
  min-width: 150px;
  margin-top: 10px;
}

.lang-dropdown .dropdown-item {
  color: #ccc;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 8px 12px;
  transition: 0.2s;
}

.lang-dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.lang-dropdown .dropdown-item:active {
  background: var(--accent-red);
  color: #fff;
}
