:root {
  --c-bg: #fcfdfd;
  --c-text: #15192b;
  --c-brand: #4376e3;
  --c-brand-2: #203657;
  --c-accent: #bae9cd;
  --c-muted: #828289;
  --c-white: #ffffff;
  /* GÜNCELLENDİ: Marka kırmızısı daha canlı bir tonla değiştirildi */
  --c-brand-red: #ff0000;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === HEADER === */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0;
  transition: all 0.3s ease-in-out;
  height: 90px;
}

#main-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-wrapper {
  flex-shrink: 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#main-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-brand-2);
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.logo-image {
  height: 80px;
  width: auto;
  display: block;
}

#main-header .nav {
  height: auto;
  display: flex;
  align-items: center;
}

/* DÜZELTME BURADA: Bu kural çok güçlüydü, mobilde display: none'ı eziyordu. */
#main-header .nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

#main-header .header-link {
  color: var(--c-white);
  font-family: 'Lilita One', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}

#main-header .header-link:hover {
  opacity: 0.9;
  color: var(--c-brand);
}

#main-header.header-scrolled {
  background: var(--c-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

#main-header.header-scrolled .header-link {
  color: var(--c-text);
  text-shadow: none;
}

#main-header.header-scrolled .header-link:hover {
  color: var(--c-brand);
}

#main-header.header-scrolled .logo {
  color: var(--c-brand-2);
  text-shadow: none;
}

/* === MOBİL MENÜ TOGGLE & RESPONSIVE AYARLAR === */
/* Masaüstünde gizli */
.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--c-white);
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

#main-header.header-scrolled .mobile-toggle {
  color: var(--c-text);
}

/* Tablet ve Mobil için Ayarlar (1024px altı) */
@media(max-width: 1024px) {

  /* Logoyu biraz küçült, taşmasın */
  .logo-image {
    height: 60px;
  }

  /* Toggle butonunu göster */
  .mobile-toggle {
    display: block;
  }

  /* DÜZELTME BURADA: Seçiciyi güçlendirdik (#main-header ekleyerek) */
  /* Navigasyon linklerini varsayılan olarak GİZLE */
  #main-header .nav-links {
    display: none;
    position: absolute;
    top: 90px;
    /* Header yüksekliği kadar aşağı */
    left: 0;
    right: 0;
    background: var(--c-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    gap: 0;
    /* Boşluğu sıfırla, padding ile ver */
  }

  /* JS ile .active sınıfı eklenince göster */
  #main-header .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  /* Linklerin mobil stili */
  #main-header .header-link {
    color: var(--c-text);
    /* Mobilde beyaz değil koyu renk */
    text-shadow: none;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
    width: 100%;
  }

  #main-header .header-link:hover {
    color: var(--c-brand);
    padding-left: 10px;
    /* Hover efekti */
  }

  /* Dil menüsünü gizle veya ayrı ayarla (opsiyonel, şimdilik kalsın) */
  .lang-dropdown {
    margin-right: 10px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === DİL MENÜSÜ & DROPDOWN === */
.lang-dropdown {
  position: relative;
  z-index: 50;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-flag-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  border: none;
}

.lang-dropdown-toggle .lang-flag-icon {
  margin-right: 0;
}

.lang-arrow-down {
  font-size: 0.9rem;
  color: white;
  transform: translateY(1px);
  margin-left: 8px;
}

.lang-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--c-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 8px;
  width: 220px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-dropdown.active .lang-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--c-text);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.lang-dropdown-item:hover {
  background: #f5f5f5;
}

.lang-dropdown-item .lang-flag-icon {
  margin-right: 12px;
}

.lang-dropdown-item.active {
  background: #f5f5f5;
  font-weight: 600;
  color: var(--c-brand);
}

#main-header.header-scrolled .lang-dropdown-toggle {
  background: rgba(0, 0, 0, 0.05);
}

#main-header.header-scrolled .lang-arrow-down {
  color: var(--c-text);
}

#main-header.header-scrolled .lang-dropdown-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Dropdown & Mega Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: var(--c-white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 50;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: var(--c-text);
  font-weight: 500;
}

.dropdown-content a:hover {
  background: #f5f5f5;
  color: var(--c-brand);
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
  display: block;
}

.mega-menu {
  width: 700px;
  max-width: 90vw;
  padding: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
}

.mega-menu a {
  padding: 0;
  display: block;
}

.mega-menu a:hover {
  background: none;
}

.mega-menu-header {
  text-align: left;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.mega-menu-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu-title .icon-star {
  font-size: 1rem;
  color: var(--c-brand);
}

.mega-menu-subtitle {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin: 0;
}

.category-grid-dropdown {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.category-card-dropdown {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  background: transparent;
}

.category-card-dropdown:hover {
  background: #F9FAFB;
  transform: translateY(-2px);
}

.category-icon-dropdown {
  width: 100%;
  max-width: 80px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.category-card-dropdown:hover .category-icon-dropdown {
  opacity: 1;
}

.category-card-dropdown h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-brand);
  margin: 0;
}

/* === HERO & SECTIONS === */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background-color: #000;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.section {
  padding: 80px 0;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.two {
  grid-template-columns: 1fr;
}

@media(min-width: 880px) {
  .grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.section-featured {
  background-color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section-title-featured {
  font-size: 3rem;
  font-weight: 800;
  /* GÜNCELLENDİ: İstediğin Mavi Tema Rengi */
  color: var(--c-brand);
  text-align: center;
  margin-top: 0;
  margin-bottom: 5px;
}

.section-subtitle-featured {
  font-size: 16px;
  color: var(--c-muted);
  text-align: center;
  margin-bottom: 40px;
}

.product-grid-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media(min-width: 768px) {
  .product-grid-featured {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card-featured {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #F3F4F6;
}

.product-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-image-wrapper {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 15px;
}

.product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-featured h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.product-card-featured h3 a {
  color: var(--c-brand);
  transition: color 0.2s;
}

.product-card-featured h3 a:hover {
  color: var(--c-brand-2);
}

.product-card-featured .product-code {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin: 0;
}

/* =============================================== */
/* YENİ PROMO TASARIMI (Canlı ve Şık) */
/* =============================================== */
.section-promo {
  padding: 0;
  margin: 0;
  background: var(--c-white);
}

.promo-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 100%;
  margin: 0 auto;
}

@media(min-width: 960px) {
  .promo-grid-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Genel Kart Stili */
.promo-card {
  /* GÜNCELLENDİ: Daha ferah olması için padding artırıldı */
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  /* GÜNCELLENDİ: Yükseklik artırıldı (Yaklaşık 2 kat) */
  min-height: 850px;
  color: #fff;
}

/* 1. BROX ENERGY KARTI (Mavi Degrade) */
.promo-brox {
  background: linear-gradient(135deg, #004a99 0%, #007acc 50%, #4db8ff 100%);
}

/* 2. EMOTION KEK KARTI (Kahve-Bej Neon Geçiş) */
/* GÜNCELLENDİ: İstediğin Bej-Kahve Neon Efekti */
.promo-emotion {
  /* Koyu Kahve -> Altın Kahve -> Parlak Krem/Bej */
  background: linear-gradient(135deg, #3e2723 0%, #8d6e63 50%, #fff59d 100%);
}

/* İçerik Düzeni */
.promo-content-inner {
  position: relative;
  z-index: 10;
  max-width: 500px;
}

.promo-title {
  font-size: 4.5rem;
  /* GÜNCELLENDİ: Daha büyük başlık */
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-desc {
  font-size: 1.2rem;
  /* GÜNCELLENDİ: Okunaklılık için büyütüldü */
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 400;
}

/* Yeni Buton Tasarımı */
.btn-promo-new {
  background-color: #d90000;
  color: #fff;
  padding: 16px 36px;
  /* Buton büyütüldü */
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(217, 0, 0, 0.4);
  border: 2px solid transparent;
}

.btn-promo-new:hover {
  background-color: #fff;
  color: #d90000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Yüzen Ürün Görselleri */
.promo-floating-image {
  position: absolute;
  right: -120px;
  /* GÜNCELLENDİ: Daha da dışarı taştı */
  bottom: -120px;
  /* GÜNCELLENDİ: Daha da aşağı */
  width: 90%;
  /* GÜNCELLENDİ: Resimler daha da büyük (70% -> 90%) */
  max-width: 900px;
  /* Max genişlik artırıldı */
  height: auto;
  object-fit: contain;
  z-index: 1;
  transition: transform 0.5s ease;
}

.promo-card:hover .promo-floating-image {
  transform: scale(1.05) rotate(-2deg);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .promo-card {
    padding: 80px 30px;
    min-height: 600px;
    /* Mobilde de biraz daha uzun */
    align-items: center;
    text-align: center;
  }

  .promo-content-inner {
    align-items: center;
    z-index: 20;
  }

  .promo-title {
    font-size: 3rem;
  }

  .promo-floating-image {
    width: 100%;
    /* Mobilde tam genişlik */
    right: 50%;
    transform: translateX(50%);
    bottom: -60px;
    /* Biraz daha aşağı */
    opacity: 0.9;
    z-index: 1;
  }

  .promo-card:hover .promo-floating-image {
    transform: translateX(50%) scale(1.05);
  }
}

/* === FOOTER & DİĞERLERİ === */
.site-footer {
  background: var(--c-white);
  color: var(--c-muted);
  padding: 60px 0 0;
  text-align: left;
  font-size: 0.9rem;
  border-top: 1px solid #e5e7eb;
}

.footer-grid-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media(min-width: 768px) {
  .footer-grid-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1024px) {
  .footer-grid-main {
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  }
}

.footer-col-logo .footer-logo-image {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 15px;
}

.footer-slogan {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-muted);
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--c-text);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  background: var(--c-brand);
  color: var(--c-white);
}

.footer-col h4 {
  color: var(--c-text);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--c-brand);
  border-radius: 2px;
}

.footer-quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-quick-links li a,
.footer-contact-list li a {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 2px 4px;
  margin: -2px -4px;
  border-radius: 5px;
  color: var(--c-muted);
}

.footer-quick-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-quick-links li a i {
  color: var(--c-brand);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  width: 15px;
  text-align: center;
}

.footer-quick-links li a::before,
.footer-contact-list li a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 110%;
  background: var(--c-brand);
  border-radius: 5px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: -1;
}

.footer-quick-links li a:hover,
.footer-contact-list li a:hover {
  color: var(--c-brand);
  text-decoration: none;
}

.footer-quick-links li a:hover i {
  opacity: 1;
}

.footer-quick-links li a:hover::before,
.footer-contact-list li a:hover::before {
  opacity: 0.1;
  transform: translate(-50%, -50%) scale(1.1);
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--c-muted);
}

.footer-contact-list li i {
  font-size: 1rem;
  color: var(--c-brand);
  opacity: 0.6;
  margin-top: 3px;
  width: 15px;
  text-align: center;
}

.footer-legal {
  background: #f9fafb;
  padding: 20px 0;
  margin-top: 30px;
  font-size: 0.8rem;
  color: var(--c-muted);
}

.footer-legal .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: center;
}

@media(min-width: 768px) {
  .footer-legal .container {
    flex-wrap: nowrap;
  }
}

.footer-legal-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  min-width: 250px;
}

@media(min-width: 768px) {
  .footer-legal-left {
    justify-content: flex-start;
    text-align: left;
    min-width: auto;
  }
}

.footer-legal-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
  order: 0;
}

@media(min-width: 768px) {
  .footer-legal-center {
    order: 0;
  }
}

.footer-legal-right {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  justify-content: center;
  flex: 1;
  min-width: 250px;
}

@media(min-width: 768px) {
  .footer-legal-right {
    justify-content: flex-end;
    text-align: right;
    min-width: auto;
  }
}

.footer-ahs-logo {
  height: 25px;
  width: auto;
  display: block;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-legal-center a:hover .footer-ahs-logo {
  opacity: 1;
}

.footer-legal-right a {
  color: var(--c-muted);
  text-decoration: none;
}

.footer-legal-right a:hover {
  color: var(--c-brand);
  text-decoration: underline;
}

.footer-legal-right span {
  color: var(--c-muted);
}

.footer-legal-right span a {
  color: var(--c-text);
  font-weight: 500;
  text-decoration: underline;
}

.footer-legal-right span a:hover {
  color: var(--c-brand);
}

#chat-bubble {
  position: fixed;
  bottom: 40px;
  /* GÜNCELLENDİ: Masaüstünde de biraz yukarıda olsun */
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--c-brand);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transition: transform 0.2s;
}

#chat-bubble:hover {
  transform: scale(1.1);
}

.parallax {
  padding: 200px 20px 300px;
  position: relative;
  background-image: url('../images/parallax.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: var(--c-white);
  z-index: 1;
}

.parallax::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--c-bg);
  z-index: 1;
  clip-path: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M 0,100 L 100,100 L 100,20 Q 50,0 0,20 Z' /%E3%C/svg%3E");
  -webkit-clip-path: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M 0,100 L 100,100 L 100,20 Q 50,0 0,20 Z' /%E3%C/svg%3E");
}

.parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 25, 43, 0.6);
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.parallax-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

.parallax-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.section-about {
  padding: 80px 0;
  background: var(--c-white);
  position: relative;
  z-index: 5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media(min-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  max-width: 500px;
}

.about-subtitle {
  color: var(--c-brand);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.about-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.about-text p {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* GÜNCELLENDİ: Parallax butonu için daha belirgin stil */
.btn-primary {
  background: var(--c-brand-red);
  color: var(--c-white);
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(217, 0, 0, 0.4);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background-color: var(--c-white);
  color: var(--c-brand-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-red {
  background: var(--c-brand);
  color: var(--c-white);
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.2s ease;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(67, 118, 227, 0.2);
}

.btn-red:hover {
  background: var(--c-brand);
  filter: brightness(0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(67, 118, 227, 0.3);
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

/* =============================================== */
/* YENİ EKLENDİ: ÜRÜN DETAY SAYFASI (product_detail.php) */
/* =============================================== */

/* 1. Üst Banner Alanı */
.product-detail-banner {
  padding-top: 150px;
  /* 90px header + 60px boşluk */
  padding-bottom: 60px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--c-white);
  text-align: center;
}

.product-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.product-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.product-breadcrumb {
  font-size: 0.9rem;
  font-weight: 500;
}

.product-breadcrumb a {
  color: var(--c-white);
  opacity: 0.8;
  transition: all 0.2s ease;
}

/* GÜNCELLENDİ: Glow Efekti (Anasayfa ve Kategori için) */
.product-breadcrumb a:hover {
  opacity: 1;
  color: var(--c-white);
  text-decoration: none;
  /* Parlama Efekti */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(67, 118, 227, 0.6);
}

.product-breadcrumb span {
  opacity: 0.8;
  color: var(--c-white);
}

/* 2. Ana İçerik (Beyaz Kutu) */
.product-detail-main {
  background-color: #f4f7f6;
  padding: 60px 20px;
  position: relative;
  z-index: 5;
}

.product-detail-container {
  max-width: 1200px;
  margin: -120px auto 0 auto;
  background: var(--c-white);
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .product-detail-main {
    padding: 40px 15px;
  }

  .product-detail-container {
    padding: 25px;
    margin-top: -60px;
  }
}

/* 3. İçerik Grid (2 Sütun) */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 960px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* 4. Sol Sütun (Bilgiler) */
/* .product-detail-info { } */
.product-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-brand);
  margin: 0 0 10px 0;
}

/* GÜNCELLENDİ: Yıldızlar gizlendi */
.product-info-stars {
  display: none;
}

/* GÜNCELLENDİ: Meta bilgileri (Kategori, Etiket) */
.product-info-meta {
  margin-bottom: 20px;
  padding-bottom: 15px;
  font-size: 0.9rem;
  color: var(--c-muted);
  /* İstediğin Mavi Çizgi */
  border-bottom: 2px solid var(--c-brand);
}

.product-info-meta .meta-item {
  display: block;
  margin-bottom: 5px;
}

.product-info-meta .meta-item strong {
  color: var(--c-text);
}

/* GÜNCELLENDİ: Link stilleri */
.product-info-meta .meta-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.product-info-meta .meta-link:hover {
  color: var(--c-brand);
  text-decoration: underline;
}

.product-info-summary {
  font-size: 1rem;
  color: var(--c-muted);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* Bilgi Tablosu */
.product-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.product-info-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.product-info-table tr:last-child {
  border-bottom: none;
}

.product-info-table td {
  padding: 12px 15px;
  font-size: 0.9rem;
}

.product-info-table td:first-child {
  background-color: #f8f9fa;
  font-weight: 500;
  color: var(--c-text);
  width: 30%;
}

.product-info-table td:last-child {
  color: var(--c-muted);
}

/* Açıklama */
.product-description h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 10px;
}

.product-description p {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* 5. Sağ Sütun (Resim) */
.product-detail-gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-main {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background-color: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.product-image-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s;
}

.zoom-icon:hover {
  transform: scale(1.1);
  color: var(--c-brand);
}

/* 6. YENİ: BENZER ÜRÜNLER (Related Products) */
.related-products-section {
  margin-top: 60px;
  padding-bottom: 40px;
}

.related-products-header {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.related-products-header .icon-heart {
  width: 28px;
  height: 28px;
  /* SVG rengini HTML içinde stroke özelliğiyle verdim ama burada da garanti olsun */
  stroke: var(--c-brand);
}

.related-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-brand);
  margin: 0;
}


/* =============================================== */
/* KATEGORİ LİSTELEME (category.php) */
/* =============================================== */

.category-banner {
  padding-top: 150px;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--c-white);
  text-align: center;
}

/* Kategori sayfası ana içeriği */
.category-main {
  padding: 60px 0;
  background: #fcfdfd;
}

/* Arama Çubuğu */
.product-search-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.product-search-input {
  width: 100%;
  padding: 18px 25px;
  padding-left: 55px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: var(--c-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.product-search-input:focus {
  outline: none;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(67, 118, 227, 0.2);
}

.product-search-icon {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  color: var(--c-muted);
}

/* YENİ EKLENDİ: Footer ve Chat Butonu için Mobil Düzenlemeler */
@media (max-width: 768px) {

  /* 1. Footer Logo ve Slogan Ortalama */
  .footer-col-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-image {
    margin: 0 auto 15px auto;
    /* Resmi ortala */
  }

  .footer-slogan {
    margin: 0 auto 20px auto;
    /* Sloganı ortala */
    text-align: center;
  }

  /* 2. Copyright Alanı (Footer Legal) Ortalama */
  .footer-legal .container {
    flex-direction: column;
    /* Alt alta diz */
    justify-content: center;
    gap: 15px;
    /* Elemanlar arası boşluk */
  }

  .footer-legal-left,
  .footer-legal-center,
  .footer-legal-right {
    justify-content: center;
    /* Kendi içlerinde ortala */
    text-align: center;
    width: 100%;
    /* Tam genişlik ver ki ortalansın */
  }

  /* 3. Yukarı Çık Butonunu Mobilde Daha Yukarı Taşı */
  #chat-bubble {
    bottom: 80px;
    /* 40px'ten 80px'e çıkardık */
  }
}

/* =============================================== */
/* YENİ EKLENDİ: İLETİŞİM SAYFASI (contact.php) */
/* =============================================== */

/* 1. Banner Alanı */
.contact-banner {
  padding-top: 75px;
  /* %50 küçültüldü (150px -> 75px) */
  padding-bottom: 30px;
  /* %50 küçültüldü (60px -> 30px) */
  background-color: var(--c-brand-2);
  /* Arka plan rengi */
  background-image: url('../images/hero_banner.jpg');
  /* Yeni görsel */
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--c-white);
  text-align: center;
}

.products-page-hero {
  padding: 120px 0 50px;
  /* Match contact-banner */
  background-color: var(--c-brand);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero_banner.jpg');
  /* Match contact-banner overlay */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--c-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(32, 54, 87, 0.7);
  /* Dark overlay */
  z-index: 1;
  /* Ensure overlay is above background but below text */
}

.contact-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(32, 54, 87, 0.8);
  /* Koyu mavi overlay */
  z-index: 1;
}

.contact-banner-content {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* 2. Ana İçerik Grid */
.contact-section {
  padding: 80px 0;
  background: #fcfdfd;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media(min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    /* Bilgi paneli daha dar, form daha geniş */
  }
}

/* 3. İletişim Bilgileri Kutusu */
.contact-info-box {
  background: var(--c-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-brand-2);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--c-brand);
  border-radius: 2px;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(67, 118, 227, 0.1);
  color: var(--c-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon-wrapper {
  background: var(--c-brand);
  color: var(--c-white);
  transform: rotateY(180deg);
}

.contact-text h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: var(--c-text);
  font-weight: 600;
}

.contact-text p,
.contact-text a {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-text a:hover {
  color: var(--c-brand);
}

/* 4. İletişim Formu */
.contact-form-wrapper {
  background: var(--c-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--c-text);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fcfdfd;
}

.form-control:focus {
  outline: none;
  border-color: var(--c-brand);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(67, 118, 227, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  background: var(--c-brand);
  /* Kırmızıdan maviye çevrildi */
  color: var(--c-white);
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(67, 118, 227, 0.3);
  /* Gölge rengi de maviye uyarlandı */
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 118, 227, 0.4);
  background: var(--c-brand-2);
  /* Hover'da koyu mavi */
}

/* 5. Harita Bölümü */
.map-section {
  height: 450px;
  width: 100%;
  filter: grayscale(0%);
  /* Renkli harita */
  border-top: 1px solid #e5e7eb;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === BUTONLAR === */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--c-brand);
  color: var(--c-white);
  box-shadow: 0 4px 15px rgba(67, 118, 227, 0.3);
}

.btn-primary:hover {
  background-color: var(--c-brand-2);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 118, 227, 0.4);
}

/* === CONTACT & ABOUT BANNER === */
.contact-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero_banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 50px;
  /* Reduced to ~80px visual space + header clearance */
  text-align: center;
  color: var(--c-white);
}

.contact-banner-content {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* === ABOUT PAGE CONTENT === */
.about-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-wrapper img {
  width: 100%;
  max-width: 400px;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.about-text-content h2 {
  font-size: 2.5rem;
  color: var(--c-brand-2);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  color: var(--c-brand);
  font-size: 1.1rem;
}

.feature-item strong {
  font-weight: 600;
  color: var(--c-text);
}

/* Mission & Vision */
.about-mission-vision-section {
  background-color: #f9fafb;
}

.mission-box,
.vision-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-5px);
}

/* Icon Animation */
@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.mission-box:hover .icon-wrapper,
.vision-box:hover .icon-wrapper {
  animation: floatIcon 2s ease-in-out infinite;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-icon-wrapper {
  background: var(--c-brand);
}

.vision-icon-wrapper {
  background: var(--c-brand-2);
}

.icon-wrapper i {
  color: #fff;
  font-size: 1.5rem;
}

.mission-box h3,
.vision-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--c-brand-2);
  font-weight: 700;
}

.mission-box p,
.vision-box p {
  color: var(--c-muted);
  line-height: 1.6;
}

/* CTA Section */
.about-cta-section {
  text-align: center;
  padding: 80px 0;
}

.about-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--c-brand-2);
}

.about-cta-section p {
  font-size: 1.2rem;
  color: var(--c-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  /* Match contact-title */
  font-weight: 700;
  /* Match contact-title */
  margin-bottom: 10px;
  /* Match contact-title */
  text-shadow: none;
  /* Remove shadow to match */
  letter-spacing: normal;
  /* Remove spacing to match */
  color: #ffffff !important;
  /* Force white color */
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 400;
  color: #ffffff !important;
  /* Force white color */
}

/* 2. Categories Grid */
.section-categories {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.category-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.category-card-page {
  background: var(--c-white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.category-card-page:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(67, 118, 227, 0.15);
  border-color: rgba(67, 118, 227, 0.1);
}

.card-icon-wrapper {
  width: 100px;
  height: 100px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.category-card-page:hover .card-icon-wrapper {
  background: var(--c-brand);
  transform: scale(1.1) rotate(5deg);
}

.category-icon-page {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(28%) sepia(96%) saturate(1828%) hue-rotate(203deg) brightness(96%) contrast(96%);
  /* Blue color filter */
}

.category-card-page:hover .category-icon-page {
  filter: brightness(0) invert(1);
  /* White color on hover */
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.category-card-page:hover .card-content h3 {
  color: var(--c-brand);
}

.explore-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.category-card-page:hover .explore-link {
  opacity: 1;
  transform: translateY(0);
}

.explore-link i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.category-card-page:hover .explore-link i {
  transform: translateX(5px);
}