/* =========================================================
   💎 MENESA DRESS - FOOTER TASARIMI (REVİZE FINAL)
   ========================================================= */

/* === TEMEL YAPI === */
.menesa-footer {
  background-color: #fff;
  border-top: 1px solid #eee;
  color: #2b2b2b;
  font-family: 'Poppins', sans-serif;
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-title {
  color: var(--gold, #d6a04c);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.6px;
}

/* =========================================================
   1️⃣ LOGO ve TANITIM
   ========================================================= */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-brand .brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b2b2b;
}

.footer-brand img {
  max-width: 220px;
  height: auto;
  object-fit: contain;
  margin: 8px 0;
  transition: transform 0.3s ease;
}

.footer-brand img:hover {
  transform: scale(1.05);
}

.footer-brand .brand-desc {
  font-size: 0.95rem;
  color: #555;
  text-align: justify;
  max-width: 280px;
  line-height: 1.6;
}

/* =========================================================
   2️⃣ LİNKLER
   ========================================================= */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text, #2b2b2b);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold, #d6a04c);
}

/* =========================================================
   3️⃣ SOSYAL MEDYA ve İLETİŞİM
   ========================================================= */
.social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 12px;
}

.social-icon {
  font-size: 1.4rem;
  color: var(--gold, #d6a04c);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #b78935;
}

.social-icon.whatsapp {
  color: #25D366;
}

.social-icon.whatsapp:hover {
  color: #1ebe5d;
}

.social-icon.facebook {
  color: #4267B2;
}

.social-icon.youtube {
  color: #FF0000;
}

.social-icon.tiktok {
  color: #111;
}

.contact-info p {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-info a {
  color: #2b2b2b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--gold);
}

/* =========================================================
   4️⃣ HARİTA
   ========================================================= */
.footer-map iframe {
  width: 100%;
  height: 230px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* =========================================================
   5️⃣ ALT ÇİZGİ & COPYRIGHT
   ========================================================= */
.menesa-footer hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 40px 0 20px;
}

.menesa-footer .copyright {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* =========================================================
   💬 FLOATING BUTONLAR (SABİT KONUM - HER ZAMAN ÜSTTE)
   ========================================================= */
.floating-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 99999;
  pointer-events: none;
  /* Performans için */
}

.float-btn {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
  opacity: 0.92;
  backdrop-filter: blur(10px);
  transform: translateZ(0);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  opacity: 1;
}

/* Renk stilleri */
.float-btn.whatsapp {
  background-color: #25d366;
}

.float-btn.instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.menu-btn.align-fix {
  background: linear-gradient(135deg, var(--gold), #c48f3f);
  border: none;
}

/* =========================================================
   📋 AÇILIR FLOATING MENÜ (POPUP)
   ========================================================= */
.floating-popup {
  position: fixed;
  bottom: 90px;
  right: 18px;
  width: 240px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  display: none;
  overflow: hidden;
  z-index: 99998;
  animation: fadeUp 0.25s ease;
  pointer-events: auto;
}

.floating-popup.show {
  display: block;
}

.floating-popup ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.floating-popup li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.92rem;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.floating-popup li a i {
  font-size: 1.1rem;
  color: var(--gold);
  width: 18px;
  text-align: center;
}

.floating-popup li a:hover {
  background: rgba(214, 160, 76, 0.1);
  color: var(--gold);
  padding-left: 20px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   📱 RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .footer-brand img {
    max-width: 180px;
  }

  .footer-map iframe {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .menesa-footer {
    text-align: center;
  }

  .footer-brand img {
    max-width: 150px;
  }

  .footer-brand .brand-title {
    font-size: 1.2rem;
  }

  .footer-links {
    margin-top: 15px;
  }

  .social {
    justify-content: center;
  }

  .footer-map iframe {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .floating-social {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .floating-popup {
    width: 220px;
    bottom: 78px;
    right: 12px;
  }

  .floating-popup li a {
    font-size: 0.9rem;
    padding: 9px 14px;
  }

  .floating-popup li a i {
    font-size: 1rem;
  }
}

@media (min-width: 1440px) {
  .footer-map iframe {
    height: 260px;
  }
}


/* =========================================================
   POP-UP'LAR (FİLTRE, GALERİ VEYA MODAL) AÇIKKEN BUTONLARI GİZLE
   (GÜNCELLENMİŞ BLOK)
   ========================================================= */

body.filter-open .floating-social,
body.lg-on .floating-social,
body.modal-open .floating-social {
  /* <-- YENİ EKLENEN SATIR BURASI */
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: -1;
  pointer-events: none;
  /* Tıklanmasını da engelle */
}