* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", Arial, sans-serif !important;
  background-color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.footer-wrapper {
  background: rgb(27, 50, 112);
  color: #fff;
  margin: 0;
}

.footer {
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-column {
  flex: 1 1 250px;
  padding: 20px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  font-weight: bold;
  font-size: 26px;
}

.footer h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #db0e0e;
  margin-top: 5px;
}

.footer p,
.footer a {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  text-decoration: none;
  font-weight: 400;
}

.footer a {
  display: block;
  padding: 5px 0;
  border-bottom: 1px dashed #888;
  transition: 0.3s;
}

.footer a:hover {
  color: #db0e0e;
}

.footer .footer-btns {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer .footer-btn {
  display: flex;
  align-items: center;
  border: 2px dashed #db0e0e;
  border-radius: 30px;
  padding: 8px 15px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.footer .footer-btn img {
  width: 20px;
  margin-right: 10px;
}

.trusted-seller {
  text-align: center;
}

.trusted-seller img {
  width: 120px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .trusted-seller {
    margin-top: 30px;
    text-align: left;
  }
}

.footer-column .footer-btns a {
  text-decoration: none;
}

/* top */
/* arrow */

.scroll-top {
  z-index: 10000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  /* background: #e10d25;
  color: white; */
  /* border: none;
  border-radius: 50%; */
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
/* 
.scroll-top:hover {
  background: #0056b3;
} */

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-copyright-2025 {
  background-color: #111; /* same as footer or slightly darker */
  color: #ccc;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #333;
}
