/* footer-style.css */

.custom-footer {
  background-color: #1f1f2c;
  color: #ffffff;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  padding: 3rem 1.5rem;
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand .logo img {
  width: 64px;
  height: 64px;
}

.footer-brand p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid #475569;
  padding-top: 1.5rem;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: #cbd5e1;
}

.footer-copy img {
  height: 32px;
  margin-inline-start: 0.5rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.icon-container {
  width: 48px;
  height: 32px;
  background-color: white;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.divider {
  display: inline-block;
  margin: 0 0.5rem;
}



