/** Shopify CDN: Minification failed

Line 210:29 Expected "}" to go with "{"

**/

/* --- Footer En Alt Kısım (Bottom Bar) Yükseklik / Boşluk Küçültme --- */

.m-footer--bottom {
  padding-top: 12px !important; /* Üst boşluğu kısaltır */
  padding-bottom: 12px !important; /* Alt boşluğu kısaltır */
}

.m-footer--bottom .m-footer--bottom-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: unset !important; /* Temadan gelen minimum yüksekliği iptal eder */
}

/* Dil seçici gibi bileşenlerin etrafındaki görünmez dış boşlukları sıfırlama */
.m-footer--bottom .m-switcher-dropdown {
  margin: 0 !important;
  padding: 0 !important;
}

/* --- Footer En Alt Kısım (Bottom Bar) Kesin Hizalama Çözümü --- */

/* Kapsayıcıyı dikey eksende tam merkeze kilitler */
.m-footer--bottom .m-footer--bottom-inner {
  align-items: center !important;
}

/* Temadan gelen m:flex-col (alt alta diz) komutunu ezip yan yana dizer */
.m-footer--bottom .m-footer--bottom-left,
.m-footer--bottom .m-footer--bottom-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 24px !important; /* İkon, dil ve search arasındaki boşluk */
}

/* Kapsayıcıların etrafındaki varsayılan boşlukları sıfırlar */
.m-footer--bottom .social-media-links,
.m-footer--bottom .m-footer--currency-language,
.m-footer--bottom .m-footer--bottom-menu {
  margin: 0 !important;
  padding: 0 !important;
}

/* Search yazısının dil seçici dropdown ile aynı hizada kalmasını sağlar */
.m-footer--bottom .m-footer--bottom-menu-item {
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.m-footer--bottom .m-footer--bottom-menu-item a {
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* --- Mobil & Tablet Optimizasyonu --- */
@media (max-width: 1023px) {
  .m-footer--bottom .m-footer--bottom-inner {
    flex-direction: column !important;
    justify-content: center !important;
    gap: 20px !important;
  }
  .m-footer--bottom .m-footer--bottom-left,
  .m-footer--bottom .m-footer--bottom-right {
    justify-content: center !important;
    width: 100% !important;
  }
}














/* =========================================
   STYLE 6 CUSTOM PRODUCT CARD (REVERT TO ORIGINAL)
   ========================================= */

/* Temanın varsayılan product-card yapılarını ezerek tasarımı sıfırlıyoruz */
.m-product-card.m-product-card-style-6 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.m-product-card-style-6 .product-media-wrapper {
  position: relative;
  overflow: hidden;
  background: #f9f9f9; 
}

.m-product-card-style-6 .media-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1; 
}

/* 1. ve 2. Görsel Geçiş Ayarları */
.m-product-card-style-6 .main-image,
.m-product-card-style-6 .hover-image {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
}

.m-product-card-style-6 .main-image img,
.m-product-card-style-6 .hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.m-product-card-style-6 .hover-image {
  opacity: 0;
  transition: opacity 0.4s ease;
}

@media (min-width: 992px) {
  .m-product-card-style-6:hover .hover-image {
    opacity: 1; /* Üzerine gelince 2. resme yavaşça geçer */
  }
}

/* İlk Tasarımdaki Etiketler */
.m-product-card-style-6 .product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.m-product-card-style-6 .badge {
  font-size: 11px;
  padding: 4px 8px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.m-product-card-style-6 .badge.new { background-color: #e5e5e5; color: #000; }
.m-product-card-style-6 .badge.sold-out { background-color: #000; color: #fff; }

/* İlk Tasarımdaki Wishlist (Kalp) */
.m-product-card-style-6 .wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  padding: 4px;
}
.m-product-card-style-6 .wishlist-icon:hover {
  opacity: 0.7;
}

/* Hover Add To Cart Aksiyonu */
.m-product-card-style-6 .hover-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 992px) {
  .m-product-card-style-6:hover .hover-actions {
    opacity: 1;
  }
}

/* Temanın kendi quick add butonunu BİZİM buton tasarımımıza dönüştürüyoruz */
.m-product-card-style-6 .hover-actions button,
.m-product-card-style-6 .hover-actions .m-button {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #eaeaea !important;
  padding: 8px 16px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  cursor: pointer !important;