.dasty-footer {
  background: #1a2a4a;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

.dasty-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.dasty-footer__stores {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 30px 0;
}

.dasty-footer__stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dasty-footer__store-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1a2a4a;
  margin: 0 0 6px;
}

.dasty-footer__store-address {
  margin: 0;
  padding-left: 34px;
  color: #666;
  font-size: 13px;
}

.dasty-footer__main {
  padding: 50px 0 40px;
}

.dasty-footer__main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.dasty-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  line-height: 0;
}

.dasty-footer__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}

.dasty-footer__heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  margin: 0 0 16px;
}

.dasty-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dasty-footer__menu li {
  margin: 0 0 8px;
}

.dasty-footer__menu li a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.dasty-footer__menu li a:hover {
  color: #fcbe00;
}

.dasty-footer__social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dasty-footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

.dasty-footer__social-icon:hover {
  opacity: .85;
}

.dasty-footer__social-icon--fb { background: #1877f2; }
.dasty-footer__social-icon--x { background: #000; }
.dasty-footer__social-icon--pin { background: #e60023; }
.dasty-footer__social-icon--in { background: #0077b5; }
.dasty-footer__social-icon--tg { background: #0088cc; }

.dasty-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

.dasty-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dasty-footer__copyright-text {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.dasty-footer__copyright-text a {
  color: inherit;
  text-decoration: none;
}

.dasty-footer__copyright-text a:hover {
  color: #fcbe00;
}

.dasty-footer__payments img {
  max-width: 255px;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .dasty-footer__stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dasty-footer__main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .dasty-footer__stores-grid {
    grid-template-columns: 1fr;
  }

  .dasty-footer__main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dasty-footer__copyright {
    flex-direction: column;
    text-align: center;
  }

  .dasty-footer__bottom {
    padding: 16px 0;
  }
}