.footer {
  background-color: var(--color-white);
  padding-top: 56px;
  padding-bottom: 0;
  color: #1A1713;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-brown-900);
  line-height: 1;
}
.footer__logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
  box-shadow: 0px 0px 12px 0px rgba(212, 82, 42, 1);
}

.footer__tagline {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(26, 23, 19, 0.55);
  line-height: 1.55;
  max-width: 260px;
}

.footer__nav {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.footer__col-title {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A1713;
  margin-bottom: 12px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 400;
  color: #6F675F;
  line-height: normal;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--color-brown-900); }

.footer__bottom {
  border-top: 1px solid rgba(26, 23, 19, 0.06);
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

.footer__copy {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: rgba(26, 23, 19, 0.35);
}

/* Simplified footer modifier — success + cart empty pages */
.footer--success .footer__tagline,
.footer--success .footer__col--products,
.footer--success .footer__col--info,
.footer--simple .footer__tagline,
.footer--simple .footer__col--products,
.footer--simple .footer__col--info {
  display: none;
}

/* Адаптив */
@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }
  .footer__nav {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    gap: 32px;
  }
}
