/* ======================= */
/*   GENEL RESET          */
/* ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ======================= */
/*   KAPSAYICI             */
/* ======================= */
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ======================= */
/*   HEADER                */
/* ======================= */
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06); /* açık mod için hafif gri çizgi */
  margin-top: 0;
  margin-bottom: 1rem;
}

/* 🌙 Dark moda özel daha yumuşak çizgi */
body.dark .header-divider {
  background: rgba(255, 255, 255, 0.08);
}


.logo {
  height: 65px;
}

/* search butonu */

.search-container {
  position: relative;
  width: 100%;       /* kapsayıcının genişlii tam olsun */
  max-width: 600px;  /* stediğin maksimum genişliğe gre ayarla */
}

.search-container input {
  width: 100%;        /* kapsayıcıyı tamamen doldursun */
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
  box-sizing: border-box; /* padding ve border genişliğe dahil edilir */
}


.btn-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline, .btn-filled {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid #fff;
  transition: all 0.2s ease;
}

.btn-outline {
  background-color: #ff66c4;
  color: #292929;
}



.btn-outline:hover {
  background-color: #ff66c4;
  color: #fff;
}

.btn-filled {
  background-color: #ff66c4;
  color: #fff;
  border: none;
}

.btn-filled:hover {
  background-color: #292929;
}

/*dark modunda */
body.dark .btn-outline, .btn-filled {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid #ff66c4;
  transition: all 0.2s ease;
}

body.dark .btn-outline {
   background-color: #ff66c4;
   color: #fff;
}

body.dark .btn-outline:hover {
  background-color: #ff66c4;
  color: #292929;
}

body.dark .btn-filled {
  background-color: #fb9908;
  color: #fff;
  border: none;
}

body.dark .btn-filled:hover {
  background-color: #fb9908;
  color: #292929;
}

.theme-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}


/* alt menü Dark Mode'da Mobil Alt Men Yazı Rengi */
body.dark .mobile-bottom-menu .menu-item {
  color: #fb9908;
}

/* alt menü Dark Mode'da Mobil Alt Menü Hover Yazı Rengi */
body.dark .mobile-bottom-menu .menu-item:hover {
  color: #e38300; /* Daha koyu sarı ton */
}


/* Dark mode iin modal düzeni */
body.dark .modal-content {
  background: #1e1e1e; /* koyu arka plan */
  color: #ffffff; /* açık yazı rengi */
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1); /* daha hafif beyaz gölge */
}

/* Eer içeriinde form veya buton varsa onların da görünmesi için */
body.dark .modal-content input,
body.dark .modal-content textarea {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
}

body.dark .modal-content button {
  background-color: #3a3a3a;
  color: #fff;
  border: 1px solid #555;
}

body.dark .modal-content button:hover {
  background-color: #555;
}


.old-price {
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
  opacity: 0.8;
  display: block;
}

.new-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffa500;
  display: block;
}

.product-price-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.new-price-inline {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffa500;
}

.old-price-inline {
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
  opacity: 0.9;
}


/* story alan */

.blog-stories {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 15px;
  background: var(--card);
  margin-bottom: 10px;
  scrollbar-width: none;
}
.blog-stories::-webkit-scrollbar {
  display: none;
}
.story-item {
  flex: none;
  width: 60px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
}
.story-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff66c4;
}
.story-item span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

/* 🌙 Dark mode aktifse yazyı beyaz yap */

body.dark .story-item span {
  color: #fff;
}

.blog-story-title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* satır sınırı (1 yaparsan tek satır olur) */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.4em;
  line-height: 1.2em;
  color: #1e1e1e; /* varsayılan koyu metin */
}




/* sepet renk kodları */

.btn-purple-filled {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #fb9908;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-purple-filled:hover {
  background-color: #e38300;
}

/* sepet sayısı mobil */

.cart-menu {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 16px;
  background-color: red;
  color: white;
  font-size: 0.65rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  line-height: 1;
  min-width: 18px;
  text-align: center;
  z-index: 2;
}


/* Çerçeveli versiyon - Hemen Al */
.btn-purple-outlined {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  color: #fb9908;
  border: 2px solid #fb9908;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-purple-outlined:hover {
  background-color: #292929;
  color: #fff;
}

        .quantity-decrease,
        .quantity-increase {
          width: 40px;
          height: 40px;
          background-color: #fb9908;
          border: none;
          border-radius: 50%;
          cursor: pointer;
          color: #292929;
          font-size: 18px;
        }

        .quantity-display {
          font-size: 18px;
          font-weight: bold;
          width: 40px;
          text-align: center;
        }



/* ======================= */
/*   MENU CONTAINER        */
/* ======================= */
.menu-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--card);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  z-index: 100;
}

/* ======================= */
/*   CATEGORY MENU         */
/* ======================= */
.category-menu {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: var(--card);
}

.category-menu ul {
  display: flex;
  overflow-x: auto;
}

.category-menu li {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
  color: var(--text);
}

.category-menu li.active {
  border-bottom: 2px solid #000;
  color: #ff66c4;
}

/* dark modda katagori yazılarını renk deiimi */

body.dark .category-menu li {
color: #ff66c4; 
}

body.dark .category-menu li.active {
  border-bottom: 2px solid #ff66c4;
  color: #ffffff;
}





/* ======================= */
/*   ÜRÜN KARTLARI         */
/* ======================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .product-grid {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.product-card {
  background-color: #fff;
  border-radius: 16px; /* daha yuvarlak köeler */
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  transform: scale(0.88); /* kartı inceltiyoruz */
}

.product-card:hover {
  transform: scale(0.9);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.2 / 1.2; /* Genişliği artırdık */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}


.product-info {
  padding: 0.6rem 0.8rem;
}

.product-info h3 {
  font-size: 1 rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1e1e1e;
  margin-bottom: 0.3rem;
  height: auto;         /* Artık yükseklik sınrı yok */
  overflow: visible;    /* Taşan metin gösterilsin */
}


.product-info p {
  font-size: 0.80rem;
  color: #777;
  margin-bottom: 0.2rem;
}

.product-price {
  font-weight: bold;
  font-size: 1.2rem;
  color: #fb9908;
}

/* yanıp sönen info efekti */

.auto-delivery {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background-color: #d4edda; /* Light mode arka plan */
  color: #000; /* Light mode yazı */
}



body.dark .auto-delivery {
  background-color: #1e3b2f;  /* koyu yeil arka plan */
  color: #7CFC00; /* lime green - parlak ama gz almayan */
  border: 1px solid #2ecc71;  /* yumuşak yeşil erçeve */
}

/* location auto delivery */

.auto-delivery-location {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background-color: #d4edda; /* Light mode arka plan */
  color: #000; /* Light mode yazı */
}



body.dark .auto-delivery-location {
  background-color: #2a2a2a;  /* koyu gri arka plan */
  color: #dcdcdc;             /* aık gri yazı rengi */
  border: 1px solid #555;     /* orta ton gri çerçeve */
}



/* escort_type auto delivery */

.auto-delivery-type {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background-color: #d4edda; /* Light mode arka plan */
  color: #000; /* Light mode yazı */
}



body.dark .auto-delivery-type {
  background-color: #3a0d0d;   /* koyu bordo / koyu krmızı arka plan */
  color: #ff4d4d;              /* yumuşak kırmız yazı rengi */
  border: 1px solid #ff6666;   /* açık kırmzı çerçeve */
}




/* product kısmında ürn resmi düzenleme */

@media (min-width: 1024px) {
  .main-image {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transform-origin: center;
  }

  .main-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }
}





/*  Önerilen rünler Gridi - Sadece Ürün Detay Sayfası */
.related-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1rem 2rem;
  justify-items: center;
}

/* Kartları biraz küçültüp hizala */
.related-grid .product-card {
  transform: scale(0.88);
}



/* rün kartları dark mode */

body.dark .product-card {
  background-color: #1e1e1e;
  box-shadow: 0 1px 5px rgba(255, 255, 255, 0.05);
}

body.dark .product-info h3,
body.dark .product-info p {
  color: #f1f1f1;
}

body.dark .product-price {
  color: #fbbc04;
}

body.dark .product-card {
  border: 1px solid #333;
}


/* begenecin urunler mobil scrool */

/*  Beenebileceğiniz Ürünler - Mobil scroll görünüm */
@media (max-width: 768px) {
  .related-products {
    scroll-padding-left: 1rem; /* ilk öğe tam grünür olsun diye */
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
    .related-products h3 {
    margin-top: 2rem; /* balık da tam oturur */
  }
}

  .related-products .product-grid {
    display: inline-flex;
    gap: 0.75rem;
    padding-left: 1rem;
  }

  .related-products .product-card {
    min-width: 160px;
    max-width: 180px;
    flex: 0 0 auto;
    border-radius: 12px;
    scroll-snap-align: start;
  }
}

/* 🌑 Dark Mode Uyumlu */
body.dark .related-products .product-card {
  background-color: #1e1e1e;
  color: #f1f1f1;
  border: 1px solid #333;
}

body.dark .related-products .product-info h3,
body.dark .related-products .product-info p {
  color: #f1f1f1;
}

body.dark .related-products .product-price {
  color: #fbbc04;
}




/* ======================= */
/*   FOOTER - MODERN       */
/* ======================= */
.site-footer {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.footer-section p,
.footer-section span,
.footer-section a {
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-section a:hover {
  transform: translateX(3px);
}

.footer-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.footer-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.footer-icons a:hover img {
  transform: scale(1.2);
}

.footer-payments {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-payments img {
  height: 30px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-payments img:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
}

.footer-divider-top,
.footer-divider-bottom {
  width: 100%;
  height: 2px;
  display: none;
}

/* ======================= */
/*   MOD - DARK/LIGHT      */
/* ======================= */
body.dark .site-footer {
  background-color: #1e1e1e;
  color: #f1f1f1;
}

body.dark .site-footer a {
  color: #bbbbbb;
}

body.dark .site-footer a:hover {
  color: #ffffff;
}

body.dark .footer-divider-top,
body.dark .footer-divider-bottom {
  background-color: rgba(255, 255, 255, 0.15);
  display: block;
}

body:not(.dark) .site-footer {
  background-color: #fafafa;
  color: #222;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body:not(.dark) .site-footer a {
  color: #444;
}

body:not(.dark) .site-footer a:hover {
  color: #000;
}


/* ======================= */
/*   RESPONSIVE FOOTER FIX */
/* ======================= */
@media (max-width: 768px) {
  .site-footer {
    padding: 20px 15px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-section {
    flex: none;
    width: 100%;
    max-width: 350px;
    margin-bottom: 15px;
  }

  .footer-section h3 {
    margin-bottom: 8px;
    font-size: 15px;
    text-align: center;
  }

  .footer-section p,
  .footer-section span,
  .footer-section a {
    font-size: 13px;
    margin-bottom: 5px;
    text-align: center; /* Tüm yazılar ortalandı */
  }

  .footer-icons {
    justify-content: center;
  }

  .footer-icons img {
      width: 30px; /* Alt wp-insta kısm */
    height: auto;
  }
  
  .footer-payments img {
    width: 350px; /* Alt ödeme resimleri  */
    height: auto;
  }

  .footer-payments {
    gap: 12px;
    margin: 20px auto;
    justify-content: center;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 8px;
    margin-top: 10px;
    text-align: center;
  }
}

/* ======================= */
/*   MOBIL MENU */
/* ======================= */


.mobile-bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--card);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 8px 0;
  z-index: 100;
}

.mobile-bottom-menu .menu-item {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-bottom-menu .menu-item i {
  font-size: 18px;
}

.mobile-bottom-menu .menu-item:hover {
  color: #6f42c1;
}

/* Menü yalnızca mobilde görünecek */
@media (min-width: 769px) {
  .mobile-bottom-menu {
    display: none;
  }
}

/* Sayfa içeriği alttan menüye gre padding alsın */
@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}


/* ======================= */
/*   MODAL ve KAYIT GİRİŞ  */
/* ======================= */
.hidden { display: none !important; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-box {
  background: var(--card);
  padding: 2rem;
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

.modal-box h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--text);
}

.modal-box form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-box input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.full-width {
  width: 100%;
}

.modal-footer-text {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-prefix {
  padding: 0.5rem 0.75rem;
  background: #eee;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
}

.phone-field input {
  flex: 1;
}

.modal-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-tabs button {
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  padding: 0.5rem 1rem;
  border-bottom: 2px solid transparent;
}

.modal-tabs .active-tab {
  border-bottom: 2px solid #6f42c1;
}

.input-error {
  border: 1px solid #e74c3c !important;
}

.error-text {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.alert-success {
  padding: 15px;
  margin-top: 10px;
  border: 1px solid rgb(134, 211, 137);
  border-radius: 8px;
  background-color: #dff0d8;
  color: #3c763d;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.alert-success.visible {
  display: block;
}

.alert-error {
  padding: 15px;
  margin-top: 10px;
  border: 1px solid #e74c3c;
  border-radius: 8px;
  background-color: #f8d7da;
  color: #721c24;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.alert-error.visible {
  display: block;
}


/* BLOG ALAN */
.blog-page {
  padding: 2rem 1rem;
  background-color: var(--bg);
  color: var(--text);
  min-height: 70vh;
}

.blog-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

.blog-image-wrapper {
  width: 100%;
  max-width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}


.blog-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.blog-back-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.blog-back {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  transition: 0.3s;
}

.blog-back:hover {
  text-decoration: underline;
}


/* 404 SAYFA */

.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 2rem;
}

.error-container {
  text-align: center;
}

.error-title {
  font-size: 5rem;
  font-weight: 900;
  color: #fb9908;
}

.error-message {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: var(--text);
}

.error-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #fb9908;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.error-btn:hover {
  background-color: #e48805;
}

.product-badge {
  font-size: 12px;
  padding: 3px 6px;
  margin-bottom: 5px;
  display: inline-block;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
}

.product-badge.premium {
  background-color: #ffd700;
  color: #000;
}

.product-badge.classic {
  background-color: #999;
  color: #fff;
}


  .slider-name {
  font-size: 18px;
  margin-top: 5px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align:center
}


/* Swiper Slider Alanı */
.mySlider {
  margin: 10px 0 20px;
  padding: 5px 10px;
  background: linear-gradient(to right, #2c003e, #660066);
  border-radius: 10px;
  overflow-x: auto;
}

/* Her Slide */
.mySlider .swiper-slide {
  width: auto !important;
  margin-right: 12px;
  position: relative;
}

/* Resimler */
.mySlider .swiper-slide img {
  height: 180px;
  width: 110px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ff00c8;
  box-shadow: 0 0 10px rgba(255, 0, 200, 0.6);
  transition: transform 0.3s ease;
}

/* Hover Etkisi */
.mySlider .swiper-slide img:hover {
  transform: scale(1.05);
}

/* Slider Balıı */
@keyframes glowText {
  0% {
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
    color: #fff;
  }
  50% {
    text-shadow: 0 0 15px #ff00ff, 0 0 25px #ff00ff;
    color: #ffb3ff;
  }
  100% {
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
    color: #fff;
  }
}

.slider-title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  /* animasyon varsayılan olarak devre dışı */
  animation: none;
}



.section-title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  animation: glowText 1.6s infinite;
}




.full-width-button {
  display: block;
  width: 100%;
  margin: 20px 0;
  padding: 0;
  border: none;
}

.full-width-button img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

