.footer-morkas {
  background-color: #121212; 
  color: #e5e5e5;
  padding: 60px 40px 20px 40px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-top: 80px;
  font-size: 13px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}
.footer-brand {
  flex: 2;
  min-width: 250px;
  margin-bottom: 30px;
}
.brand-logo {
  color: white;
  font-size: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.brand-slogan {
  color: #888;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-mini p {
  margin: 5px 0;
  color: #aaa;
  user-select: text;
}
.footer-col {
  flex: 1;
  min-width: 150px;
  margin-bottom: 20px;
}
.footer-col h3 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: white;
}
.social-list i {
  width: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}
.copyright-text {
  color: #666;
  font-size: 12px;
}
.payment-icons {
  display: flex;
  gap: 15px;
  font-size: 24px;
  color: white;
}
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 46px;
  left: 0px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.6);
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-brand, .footer-col {
    margin-bottom: 30px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}