/* Footer Styling */
.site-footer {
  background-color: #f8f4ff;
  padding: 0;
  color: #555;
  font-size: 14px;
}

.toy-store-footer {
  width: 100%;
}

.footer-top {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid #e9e2f5;
}

.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-widget-area {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  padding-right: 20px;
}

.widget-title {
  color: #1e944d;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: #9b5de5;
}

.social-icons {
  display: flex;
  margin-top: 15px;
}



.footer-subscribe-form {
  display: flex;
  margin-top: 15px;
}

.footer-subscribe-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #e9e2f5;
  border-radius: 4px 0 0 4px;
}

.footer-subscribe-form button {
  background-color: #ff9e00;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer-subscribe-form button:hover {
  background-color: #e88e00;
}

.footer-bottom {
  padding: 1.5rem 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  margin: 0 auto;
  text-align: center;
}
.footer-logo img {
  /* height: 60px; */
  width: 240px;
}

.payment-methods {
  display: flex;
  align-items: center;
}

.payment-methods img {
  height: 30px;
  margin-left: 10px;
}

.copyright {
  width: 100%;
  text-align: center;
  margin-top: 15px;
  color: #888;
}


.social-icon {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8f2e2;
  border-radius: 50%;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  font-size: 1.2rem;
  border: 1px solid #bfd8bf;
}

.social-icon:hover {

  transform: translateY(-3px);
}

.social-icon svg {
  fill: black;
  width: 32px;
  height: 32px;
}

.social-icon.facebook:hover {
  background-color: rgba(24, 119, 242, 0.2);
  /* Facebook blue with reduced opacity */
  color: #1877f2;
}

.social-icon.instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    rgba(253, 244, 151, 0.2) 0%,
    rgba(253, 244, 151, 0.2) 5%,
    rgba(253, 89, 73, 0.2) 45%,
    rgba(214, 36, 159, 0.2) 60%,
    rgba(40, 90, 235, 0.2) 90%
  );
  color: #d6249f;
}

.social-icon.facebook:hover svg,
.social-icon.instagram:hover svg {
  fill: currentColor;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-widgets {
    flex-direction: column;
  }

  .footer-widget-area {
    width: 100%;
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .payment-methods {
    margin: 15px 0;
    justify-content: center;
  }

  .payment-methods img {
    margin: 0 5px;
  }
}
