/* Social Links Footer */
.social-section {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  margin-top: 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.social-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(107, 114, 128, 0.2);
}

.social-link:hover img {
  transform: scale(1.1);
}

.social-link:nth-child(1):hover {
  background: #1877F2;
}

.social-link:nth-child(2):hover {
  background: #E4405F;
}

.social-link:nth-child(3):hover {
  background: #25D366;
}

.social-link:nth-child(4):hover {
  background: #00C300;
}

/* Payment Methods Footer */
.payment-methods {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-icon {
  width: 48px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 6px;
  padding: 4px 8px;
  box-shadow: 0 2px 8px rgba(107, 114, 128, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.2);
}

.payment-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

