.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.55;
}

.footer-contact-list i {
  color: var(--accent-gold);
  font-size: 1.05rem;
  line-height: 1.55;
}

.footer-contact-list a,
.footer-contact-list span {
  color: var(--text-light);
  word-break: break-word;
}

.footer-contact-list a:hover {
  color: var(--primary);
}

.footer-contact-block .footer-social-wrap {
  margin-top: 8px;
  padding-top: 6px;
}

.footer-social-icon-whatsapp:hover {
  background-color: #25d366;
  border-color: #25d366;
}

.footer-story-block .footer-nav-title {
  margin-top: 4px;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 88px;
  }

  .footer-contact-list li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 9998;
    display: grid;
    grid-template-columns: 1fr 1fr 66px 1fr 1fr;
    align-items: center;
    min-height: 60px;
    padding: 6px 9px;
    border: 1px solid rgba(29, 35, 45, 0.1);
    border-radius: 27px;
    background: rgba(253, 249, 241, 0.97);
    box-shadow:
      0 16px 34px rgba(13, 31, 51, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav-link {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    border-radius: 18px;
    color: #263241;
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    transition: var(--transition);
  }

  .mobile-bottom-nav-link i {
    color: #263241;
    font-size: 1.28rem;
    line-height: 1;
  }

  .mobile-bottom-nav-link:hover,
  .mobile-bottom-nav-link:focus-visible {
    color: var(--primary);
    background: rgba(45, 95, 125, 0.07);
  }

  .mobile-bottom-nav-link:hover i,
  .mobile-bottom-nav-link:focus-visible i {
    color: var(--primary);
  }

  .mobile-bottom-nav-whatsapp {
    position: relative;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    justify-self: center;
    margin-top: -28px;
    border: 3px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    background: radial-gradient(circle at 34% 26%, #75f59b 0%, #28d869 46%, #12a84c 100%);
    color: var(--white);
    font-size: 1.72rem;
    text-decoration: none;
    box-shadow:
      0 0 0 8px rgba(37, 211, 102, 0.16),
      0 0 22px rgba(37, 211, 102, 0.76),
      0 12px 24px rgba(16, 132, 66, 0.34);
    transition: var(--transition);
  }

  .mobile-bottom-nav-whatsapp::after {
    content: "";
    position: absolute;
    inset: -11px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.18);
    filter: blur(8px);
  }

  .mobile-bottom-nav-whatsapp:hover,
  .mobile-bottom-nav-whatsapp:focus-visible {
    background: radial-gradient(circle at 34% 26%, #84ffa8 0%, #2ee06e 46%, #12a84c 100%);
    color: var(--white);
    transform: translateY(-3px);
  }

  .mobile-bottom-nav-cart .cart-count {
    position: absolute;
    top: 3px;
    right: 10px;
    display: inline-flex;
    min-width: 17px;
    height: 17px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--white);
    border-radius: 999px;
    background: #304765;
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
  }
}
