footer {
/* background-color: var(--main, #EB6824);*/
 background-color: var(--neutral-70);
  
  
  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px;
  direction: ltr;
}

.footer-newsletter {
  flex: 1 1 250px;
  margin: 10px;
  direction: rtl;
}
.links-column {
  direction: rtl;
}

.footer-newsletter h4 {
  margin-bottom: 10px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: right;
  color: #0d0d0d;
}

.newsletter-form {
  display: flex;
  gap: 5px;
  direction: rtl;
}

.newsletter-form input {
  flex: 1;
  width: 320px;
height: 46px;
direction: rtl;
border-radius: 8px;
border: 1px solid var(--Gray-Scales-Off-White, #E1E3E5);
background: var(--Gray-Scales-White, #FFF);
}

.newsletter-form button {
  color: var(--Gray-Scales-White, #FFF);
text-align: center;

font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 19.8px */
text-transform: capitalize;
display: flex;
width: 133.843px;
padding: 14px 24px;
justify-content: center;
align-items: center;
gap: 20px;
border-radius: 8px;
background: var(--main, #EB6824);
border: none;
}

.app-download p {
  margin: 10px 0 5px;
}

.store-links a img {
  width: 120px;
  margin: 5px;
}

.footer-links {
  display: flex;
  flex: 2 1 400px;
  justify-content: space-around;
  margin: 10px;
}

.links-column h4 {
  margin-bottom: 10px;

  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: right;
  color: #0d0d0d;
}

.links-column ul {
  list-style: none;
  padding: 0;
}

.links-column ul li {
  margin-bottom: 5px;
}

.links-column ul li a {
   font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: right;
  color: #0d0d0d;
  text-decoration: none;
}

.footer-logo {
  flex: 1 1 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-logo img {
 /* max-width: 100px;*/
}

.footer-bottom {
 background-color: var(--neutral-70);
  color: #0d0d0d;
  text-align: center;
  padding: 4px;
}
.footer-bottom p , .footer-newsletter p{
 
color: #0d0d0d !important;
}
.social-links{
  display: flex;
  gap: 41px;
  margin-top: 14px;
}
.social-links a img {
  width: 24px;
  margin: 0 5px;
  vertical-align: middle;
}


/* Mobile-specific styles (applies only below 768px) */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    padding: 15px;
  }

  .footer-newsletter {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
.footer-newsletter p 
{
    font-size: 14px !important;
  }
  .footer-links {
    display: none;
    order: 3;
    flex-direction: column;
    gap: 25px;

  }

  .footer-logo {
    order: 2;
   
  }
.footer-logo img 
{
   
     margin-bottom: 0 !important; 
}
  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 26%;
  }

  .store-links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .store-links a img {
    width: 140px;
    margin: 5px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 14px;
  }
}