footer {
  background-color: #000;
  color: #fff;
  font-size: 14px;
}
footer a {
  color: #ccc;
}
footer a:hover {
  color: #fff;
}
footer .footer-container {
  padding: 30px 0;
}
footer .footer-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .box-footer {
  flex: 1 1 25%;
  padding: 15px;
  box-sizing: border-box;
}

footer .footer-logo {
  display: flex;
  justify-content: center; /* Yatay ortalama */
  align-items: center;     /* Dikey ortalama (gerekirse) */
  flex-direction: column;
}


footer .footer-logo img {
  max-width: 190px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  transition: filter 0.3s ease;
}

footer .footer-telif {
  font-size: 13px;
  margin-top: 10px;
  color: #aaa;
  display: grid;
  justify-content: center;
}
footer .newsletter {
  margin-top: 15px;
}
footer .newsletter input[type="email"] {
  padding: 8px;
  width: 70%;
  border: none;
  color: black;
}
footer .newsletter button {
  padding: 9px 15px;
  background-color: #ea3a3c;
  border: none;
  color: white;
  cursor: pointer;
}
footer .newsletter button:hover {
  background-color: #c62828;
}
footer .module h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: bold;
}
footer ul.menu,
footer ul.contact-address,
footer ul.payment-method {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul.menu li,
footer ul.contact-address li,
footer ul.payment-method li {
  margin-bottom: 8px;
}
footer ul.payment-method {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 15px;
}
footer ul.payment-method li {
  margin-left: 10px;
}
footer ul.payment-method img {
  width: 40px;
  height: auto;
}
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #999;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

footer .social_block ul.social-block {
  display: flex;
  gap: 10px; /* ikonlar arası boşluk */
  justify-content: flex-start; /* sola hizalı */
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .social_block ul.social-block li {
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.social-block {
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
	margin-bottom: 10px;
    align-items: center;
    align-content: center;
    flex-direction: row;
}

ul.social-block li {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Yuvarlak görünüm */
  background-color: rgba(255, 255, 255, 0.1); /* Hafif parlak arka plan */
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1); /* Hafif parlama efekti */
  transition: background-color 0.3s, box-shadow 0.3s;
}

ul.social-block li:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Hover'da daha parlak */
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3); /* Hover'da daha belirgin parlama */
}

ul.social-block li a {
  color: #fff; /* İkonlar beyaz renkli */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px; /* İkon boyutu */
}

@media (max-width: 991px) {
	
	ul.social-block li {
  width: 38px;
  height: 38px;
}
	ul.social-block {
    gap: 5px;

}
}