html, body {
  background-color: #FDFBF7;
  color: #1C1917;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Menü */
.glass-nav {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Randevu Form Elemanları */
.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(28, 25, 23, 0.15);
  border-radius: 1rem;
  font-size: 0.875rem;
  color: #1c1917;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.form-input:focus {
  border-color: #8E6847;
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.25);
}

/* Hata Durumu Efektleri */
.form-input.input-error {
  border-color: #ef4444 !important;
  background-color: #fffaf0;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.field-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Takvim Butonları */
.btn-calendar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Slider Scrollbar Gizleme */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Showroom Peek & Blur Animasyonları */
.showroom-slide {
  transform: scale(0.92);
  opacity: 0.45;
  filter: blur(2.5px);
  will-change: transform, filter, opacity;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              filter 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.showroom-slide.active-slide {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
}

/* Lighthouse Erişilebilirlik: Dokunma Alanı (Touch Target) Düzeltmesi (Görünüm Değişmez) */
.slider-dot {
  position: relative;
}
.slider-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 48px;
  min-height: 48px;
}

#prevSlide, #nextSlide, #mobileMenuBtn, #navCallBtn, #directWhatsAppBtn {
  position: relative;
}
#prevSlide::after, #nextSlide::after, #mobileMenuBtn::after, #navCallBtn::after, #directWhatsAppBtn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 48px;
  min-height: 48px;
}

/* Erişilebilirlik: Arka Plan ile Yazı Kontrastı Garantisi (Görsel Tasarımı Bozmaz) */
.text-brand-dark\/70,
.text-brand-dark\/75 {
  color: rgba(28, 25, 23, 0.85) !important;
}
.text-brand-dark\/50,
.text-brand-dark\/60 {
  color: rgba(28, 25, 23, 0.72) !important;
}
.text-white\/30 {
  color: rgba(255, 255, 255, 0.60) !important;
}