/* ==========================================
   1. TEMEL SIFIRLAMA
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  background-color: #fdfdfc;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  touch-action: manipulation; /* Çift tıklama gecikmesini ve dokunmatik hover takılmasını kaldırır */
}

/* ==========================================
   2. HEADER (SOL LOGO - SAĞDA YAN YANA MENÜ)
   ========================================== */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 75px !important;
  z-index: 1000 !important;
  background: rgba(253, 253, 252, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
}

.header-container {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 36px !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important; /* Logoyu sola, menüyü sağa iter */
  align-items: center !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
}

.logo a {
  font-family: 'Jost', sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  letter-spacing: 7px !important;
  text-transform: uppercase !important;
  color: #111111 !important;
  display: inline-block !important;
}

/* LİNKLERİ YAN YANA DİZEN KISIM */
.nav-menu {
  display: flex !important;
  flex-direction: row !important; /* Kesinlikle yan yana */
  align-items: center !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-menu a {
  font-size: 11.5px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: #111111 !important;
  white-space: nowrap !important; /* Alt satıra kırılmayı engeller */
  display: inline-block !important;
  cursor: pointer !important;
  touch-action: manipulation;
  transition: opacity 0.2s ease;
}

.nav-menu a:hover {
  opacity: 0.6 !important;
}

.mobile-menu-btn {
  display: none !important;
}

/* ==========================================
   3. HERO SLIDER
   ========================================== */
.hero.swiper {
  position: relative;
  height: 85vh;
  min-height: 550px;
  width: 100%;
  margin-top: 75px;
  overflow: hidden;
  z-index: 1;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 540px;
  margin-left: 8%;
  padding: 0 20px;
}

.hero-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Jost', sans-serif !important;
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #ffffff;
}

.btn-primary {
  background-color: #ffffff;
  color: #111111 !important;
  border: 1px solid #ffffff;
}

.btn-primary:hover {
  background-color: #d3d3d3;
  color: #111111 !important;
  border-color: #d3d3d3;
}

.swiper-button-next, 
.swiper-button-prev {
  color: #ffffff !important;
  z-index: 99 !important;
  width: 50px !important;
  height: 50px !important;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
  opacity: 1;
  transform: scale(1.15);
}

.swiper-button-prev {
  left: 24px !important;
}

.swiper-button-next {
  right: 24px !important;
}

.swiper-pagination-bullet-active {
  background: #ffffff !important;
}

/* ==========================================
   4. HAKKIMIZDA BÖLÜMÜ
   ========================================== */
.about-intro-section {
  padding: 80px 24px;
  background-color: #fdfdfc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f0ede6;
}

.about-intro-container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  padding: 10px 48px;
  margin-bottom: 24px;
  background-color: #ffffff;
}

.about-logo-badge h2 {
  font-family: 'Jost', sans-serif !important;
  font-size: 20px;
  letter-spacing: 8px;
  font-weight: 500;
  color: #111111 !important;
  margin: 0;
  padding-left: 8px;
  text-transform: uppercase;
}

.about-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: #444444;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin: 0 0 32px 0;
  max-width: 680px;
}

.about-text strong {
  font-weight: 600;
  color: #111111 !important;
}

.about-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 44px;
  padding: 0 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.25s ease;
  box-sizing: border-box;
  touch-action: manipulation;
}

.about-btn-outline {
  border: 1px solid #111111;
  color: #111111;
  background-color: transparent;
}

.about-btn-outline:hover {
  background-color: #d3d3d3;
  border-color: #d3d3d3;
  color: #111111;
}

.about-btn-solid {
  border: 1px solid #d3d3d3;
  background-color: #d3d3d3;
  color: #111111;
}

.about-btn-solid:hover {
  background-color: #111111;
  border-color: #111111;
  color: #ffffff;
}

/* ==========================================
   5. FOOTER (GRİ ZEMİN & SİYAH METİN)
   ========================================== */
.footer {
  background-color: #d3d3d3 !important;
  color: #111111 !important;
  padding: 70px 32px 30px;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: 'Jost', sans-serif !important;
  font-size: 26px;
  letter-spacing: 6px;
  font-weight: 500;
  color: #111111 !important;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.brand-col p {
  font-size: 13.5px;
  color: #222222 !important;
  line-height: 1.8;
  max-width: 320px;
  margin: 0;
  font-weight: 400;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111 !important;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #222222 !important;
  transition: opacity 0.2s ease;
  font-weight: 400;
  touch-action: manipulation;
}

.footer-col ul li a:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #222222;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #222222 !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-bottom-links a:hover {
  opacity: 0.6;
  text-decoration: underline;
}

/* ==========================================
   6. MOBİL ÇEKMECE MENÜ
   ========================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  left: auto;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2000;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-logo {
  font-family: 'Jost', sans-serif !important;
  font-size: 22px;
  letter-spacing: 5px;
  font-weight: 500;
  color: #111111;
  text-transform: uppercase;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #111111;
  cursor: pointer;
}

.mobile-drawer-content {
  padding: 24px 20px;
  overflow-y: auto;
}

.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-links li {
  margin-bottom: 20px;
}

.drawer-link {
  font-size: 15px;
  color: #111111;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
}

.drawer-link:hover {
  opacity: 0.6;
}

/* Şeffaf katmanın tıklamaları engellemesini önleyen kesin ayar */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important; /* Kapalıyken kesinlikle tıklama almaz */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important; /* Sadece menü açıldığında tıklanır */
}

/* ==========================================
   7. MOBİL MEDYA SORGULARI (<= 768px)
   ========================================== */
@media (max-width: 768px) {
  
  .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    min-height: 85px !important;
    display: flex !important;
    align-items: center !important;
    background: rgba(253, 253, 252, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .header-container {
    width: 100% !important;
    padding: 0 24px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .nav-menu {
    display: none !important;
  }

  .logo {
    display: block !important;
  }

  .logo a {
    font-size: 24px !important;
    font-weight: 500 !important;
    letter-spacing: 5px !important;
    color: #111111 !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    width: 28px !important;
    height: 18px !important;
    padding: 0 !important;
    margin-left: auto !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-btn span {
    display: block !important;
    width: 26px !important;
    height: 2px !important;
    background-color: #111111 !important;
    border-radius: 2px !important;
  }

  .mobile-menu-btn span:last-child {
    width: 18px !important;
  }

  .hero.swiper {
    margin-top: 85px !important;
    height: 75vh !important;
    min-height: 480px !important;
  }

  .swiper-slide {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 20px;
    width: 100%;
  }

  .hero-title {
    font-size: 28px !important;
    letter-spacing: 1.5px !important;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }

  .swiper-button-next, 
  .swiper-button-prev {
    display: none !important;
  }

  .about-logo-badge {
    padding: 10px 42px !important;
  }

  .about-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .about-btn {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .brand-col p {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
/* style.css EN ALTINA EKLE - TIKLAMA FIX */
.header {
  z-index: 99999 !important; /* Menüyü her şeyin üstüne çıkar */
  position: fixed;
  top: 0;
  width: 100%;
}

.hero.swiper {
  z-index: 1 !important; /* Slider'ı menünün arkasına hapset */
  margin-top: 75px; /* Menünün yüksekliği kadar boşluk bırak */
}

.hero-image-wrapper {
  pointer-events: none !important; /* Koca görsele tıklanmasını tamamen engelle */
}

.hero-content, .hero-buttons, .hero-buttons a {
  pointer-events: auto !important; /* Ama butonun tıklanmasını serbest bırak */
  z-index: 1000 !important;
}

.cat-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
/* ===================================================
   ÜRÜNLER & ALT SAYFALAR MOBİL UYUMLULUK (<= 768px)
   =================================================== */
@media (max-width: 768px) {
  /* Ürünler Ana Sayfa Kapsayıcısı */
  .products-container {
    margin: 100px auto 50px !important;
    padding: 0 16px !important;
  }

  /* 3'lü Vitrin Kartları Tek Sütuna Düşer */
  .categories-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .cat-card-link {
    padding: 16px !important;
  }

  .cat-card-link img {
    height: 250px !important; /* Mobilde görsel çok uzamasın */
    margin-bottom: 14px !important;
  }

  .cat-card-link h2 {
    font-size: 18px !important;
    letter-spacing: 1.5px !important;
  }

  /* Alt Sayfalar (kadin-giyim, yatak-odasi, banyo-detaylar) */
  .subpage-container {
    margin: 95px auto 50px !important;
    padding: 0 16px !important;
  }

  .breadcrumb-nav {
    font-size: 11px !important;
    margin-bottom: 16px !important;
  }

  .subpage-header {
    margin-bottom: 28px !important;
    padding-bottom: 16px !important;
    text-align: center;
  }

  .subpage-title {
    font-size: 24px !important;
    letter-spacing: 2px !important;
  }

  /* Alt Sayfa Kart Izgaraları Tek Sütun */
  .sub-grid,
  .sub-grid-three {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .sub-item-card {
    padding: 16px !important;
  }

  .sub-item-card img {
    height: 240px !important;
    margin-bottom: 14px !important;
  }

  .sub-item-card h3 {
    font-size: 17px !important;
    letter-spacing: 1.5px !important;
  }

  .sub-item-card p {
    font-size: 13px !important;
  }

  /* Otel Kartı Mobilde Normal Karta Döner */
  .hotel-card {
    grid-column: span 1 !important;
  }
}
/* DİL DEĞİŞTİRME BUTONU STİLİ */
.lang-switch-btn {
  background: transparent;
  border: 1px solid #111111;
  color: #111111;
  padding: 4px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s ease;
  margin-left: 15px;
}

.lang-switch-btn:hover {
  background-color: #111111;
  color: #ffffff;
}
/* MOBİL DİL BUTONU DÜZENLEMESİ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Çekmece içindeki dil butonu */
.mobile-lang-wrapper {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  text-align: left;
}

.mobile-lang-btn {
  background: transparent;
  border: 1px solid #111111;
  color: #111111;
  padding: 8px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 2px;
}
/* Mobil Buton Grubu */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobildeki dil butonu stili */
.mobile-only-lang {
  background: transparent;
  border: 1px solid #111111;
  color: #111111;
  padding: 4px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 2px;
}

/* Bilgisayar ekranında bu mobil butonunu gizle */
@media (min-width: 769px) {
  .mobile-only-lang {
    display: none !important;
  }
}
/* HEADER ELEMANLARINI SAĞA YASLAMA */
.header-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  box-sizing: border-box !important;
}

/* Logo solda kalsın */
.header-container .logo {
  margin-right: auto !important;
}

/* Menü ve butonlar tamamen sağa gitsin */
.nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  margin-left: auto !important;
}

/* Masaüstünde mobil aksiyon butonunun yer kaplamasını engelle */
@media (min-width: 769px) {
  .header-actions {
    display: none !important;
  }
}
/* Footer Başlığı Boyut ve Harf Düzenlemesi */
.footer-col h4 {
  text-transform: none !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  color: #111111 !important;
  margin-bottom: 16px !important;
}
/* HAKKIMIZDA SAYFASI - HARF VE BAŞLIK DÜZENLEMELERİ */

/* Üstteki minik etiket (Biz Kimiz? / Who We Are) */
.about-tagline {
  text-transform: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  font-weight: 600 !important;
}

/* Ana Büyük Başlık (25 Yılı Aşkın... / Over 25 Years...) */
.about-headline {
  text-transform: none !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  line-height: 1.3 !important;
}

/* Paragraf Aralarındaki Alt Başlıklar */
.about-subheading {
  text-transform: none !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
}
/* RESPONSIVE HEADER DÜZENLEMESİ */

/* 1024px ve altındaki ekranlarda (Tablet ve Telefonlar) */
@media (max-width: 1024px) {
  /* Masaüstü yatay menüsünü gizle */
  .nav-menu {
    display: none !important;
  }

  /* Hamburger butonunu ve yanındaki mobil dil butonunu göster */
  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 12px;
  }

  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #111111;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
}

/* 1025px ve üzeri geniş ekranlarda (Normal Masaüstü Bilgisayarlar) */
@media (min-width: 1025px) {
  .nav-menu {
    display: flex !important;
  }
  .header-actions,
  .mobile-menu-btn {
    display: none !important;
  }
}