/** Shopify CDN: Minification failed

Line 148:8 Expected identifier but found whitespace
Line 148:10 Unexpected "{"
Line 148:19 Expected ":"
Line 151:8 Expected identifier but found whitespace
Line 151:10 Unexpected "{"
Line 151:19 Expected ":"
Line 154:8 Expected identifier but found whitespace
Line 154:10 Unexpected "{"
Line 154:19 Expected ":"
Line 157:8 Expected identifier but found whitespace
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ==== Sosyal Medya İkonları (Geliştirilmiş) ==== */
.footer-social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social-icons .social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-icons .social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  transition: all 0.3s ease;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.footer-social-icons .social-icons li a:hover {
  color: #000;
  transform: scale(1.1);
  background-color: transparent;
}


/* ==== Mobil Görünüm İçin Uyum ==== */
@media (max-width: 767px) {
  .footer-social-icons {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-social-icons .social-icons {
    justify-content: center;
    gap: 10px 15px;
  }
}


/* ==== Logo ve Açıklama ==== */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  max-height: 48px;
  margin-right: 10px;
}

.footer-logo-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 5px;
}

/* ==== Footer Başlıklar ==== */
.block-title,
.footer-address-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

/* ==== Liste Linkleri ==== */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 6px;
}

.footer-list li a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list li a:hover {
  color: #000;
}

/* ==== Sütun Düzeni (Ortak) ==== */
.footer-middle .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.footer-middle .col-md-3 {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1;
}



.footer-middle .address-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* ==== Dinamik Renkli İkonlar (Kullanıcıya göre) ==== */
.footer-address-content .icon-phone {
  color: {{ section.settings.icon_phone_color }};
}
.footer-address-content .icon-email {
  color: {{ section.settings.icon_email_color }};
}
.footer-address-content .icon-fax {
  color: {{ section.settings.icon_fax_color }};
}
.footer-address-content .icon-location {
  color: {{ section.settings.icon_location_color }};
}