@font-face {
  font-family: "Cera Pro";
  src: url("../Fonts/CeraPro-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Cera Pro";
  src: url("../Fonts/CeraPro-Bold.ttf") format("truetype");
  font-weight: 700;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.text-regular {
  font-family: "Cera Pro", sans-serif;
  font-weight: 400;
}

.text-bold {
  font-family: "Cera Pro", sans-serif;
  font-weight: 700;
}

.text-small {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.text-medium {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.text-large {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

body {
  background: #FBFBFB;
  color: #222;
}

.footer-wrapper {
  width: 95%;
  max-width: 1440px;
  margin: 100px auto 0;
  background: #F5F5F5;
  padding: 40px 0;
  border-radius: 12px;
}

.footer {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: center;
  padding: 80px 0;
  gap: 50px;
  background: #F5F5F5;
}

.footer-card {
  flex: 1;
  max-width: 250px;
}

.icon {
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 18px;
}

.garden { background-image: url('../Images/icon-garden.png'); }
.renovation { background-image: url('../Images/icon-renovation.png'); }
.watering { background-image: url('../Images/icon-watering.png'); }

.footer-card .title {
  margin-bottom: 10px;
}

.divider {
  width: 1px;
  background: #46A3581A;
}

.newsletter {
  flex: 1.2;
  max-width: 340px;
}

.newsletter-input {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.newsletter-input input {
  flex: 1;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  outline: none;
  font-family: "Cera Pro", sans-serif;
}

.newsletter-input button {
  background: #46A358;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-family: "Cera Pro", sans-serif;
}

.footer-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 207px;
  padding: 26px 80px;
  background: linear-gradient(90deg, #EDF6EF 0%, #52C368 100%);
  color: #fff;
}

.footer-middle .logo img {
  width: 150px;
}

.footer-middle a {
  color: #3D3D3D;
  text-decoration: none;
  transition: color 0.3s;
  font-family: "Cera Pro", sans-serif;
}

.footer-middle a:hover {
  color: #d4f2d3;
}

.footer-bottom {
  background: #F5F5F5;
  padding: 50px 80px 30px;
  color: #555;
}

.footer-columns {
  display: flex;
  justify-content: center;
  gap: 200px;
}

.footer-columns .column-title {
  margin-bottom: 14px;
}

.footer-columns ul {
  list-style: none;
}

.footer-columns li {
  margin-bottom: 8px;
  cursor: pointer;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.social {
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: 1px solid #eee;
  border-radius: 6px;
}

.fb { background-image: url('../Images/icon-fb.svg'); }
.ig { background-image: url('../Images/icon-ig.svg'); }
.tw { background-image: url('../Images/icon-tw.svg'); }
.in { background-image: url('../Images/icon-in.svg'); }
.yt { background-image: url('../Images/icon-yt.svg'); }

.accept {
  margin-top: 20px;
  margin-bottom: 10px;
}

.payment {
  width: 230px;
  height: 35px;
  background-image: url('../Images/payment.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #888;
  padding: 20px 0;
  border-top: 1px solid #46A3581A;
  font-family: "Cera Pro", sans-serif;
}