/* Footer base */
.site-footer {
  background-color: #2e6f40;
  color: white;
  padding: 50px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px;
}

/* Footer columns layout */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* Individual column */
.footer-column {
  flex: 1 1 220px;
}

/* Footer headings */
.footer-column h5 {
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Footer text and links */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: white;
  display: flex;
  align-items: center;
}

.footer-column ul li i {
  margin-right: 8px;
  color: white;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Newsletter form */
.footer-column form {
  display: flex;
  border: 1px solid gray;
  border-radius: 50px;
  overflow: hidden;
  max-width: 400px;
  background-color: #fff;
}

.footer-column input[type="email"] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 0;
  font-size: 16px;
  outline: none;
  color: #333;
}

.footer-column button {
  padding: 12px 20px;
  background-color: rgb(41, 39, 39);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  border-radius: 50px;
  transition: background 0.3s;
}



/* Social icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #2e6f40;
  font-size: 20px;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #cfffdc;
}

/* Payment logos */
.payment-methods {
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 0px 60px;
  padding-top: 30px;
  border-top: 1px solid #aaa;
  margin-top: 40px;
}

.payment-methods img {
  height: 30px;
  margin: 0 10px;
  vertical-align: middle;
}


/* Container for both FABs */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

/* Common FAB button style */
.floating-buttons a,
.floating-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* WhatsApp specific */
.whatsapp-button {
  background-color: #25D366;
}

.whatsapp-button:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
}

/* Scroll to Top specific */
.scroll-to-top-button {
  background-color: #333;
}

.scroll-to-top-button:hover {
  background-color: #555;
  transform: scale(1.05);
}

/* Optional: icon color override for safety */
.floating-buttons i {
  color: #fff;
}