.footer-wrapper{
  width: 100%;
  margin-top: auto;
}


.footer {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 30px;
}

.footer-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 100%;
  max-width: 1200px;
  gap: 0.8rem;
  text-align: center;
}

.footer-categories a {
  text-decoration: none;
  color: #ddd;
  font-size: 0.9rem;
  font-weight: 900;
  transition: color 0.3s ease;
  font-family: 'Playwrite';
}

.footer-socialMedia {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-socialMedia a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-socialMedia a:hover {
  transform: scale(1.15);
}

.footer-socialMedia svg {
  width: 100%;
  height: 100%;
  fill: #d08823;
  transition: fill 0.3s ease;
}

.footer-socialMedia a:hover svg {
  fill: #ff9e9e;
}

/* Responsive destek */
@media (max-width: 700px) {
  .footer-categories {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .footer-categories a {
    font-size: 0.85rem;
  }

  .footer-socialMedia a {
    width: 30px;
    height: 30px;
  }
}