/* Footer styles for Doma Furni */

.df-footer {
  background-color: #0f172a;
  color: #e5e7eb;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.df-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.df-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.df-footer__brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 20%, #fbbf77, #a67a45);
}

.df-footer__site-name {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.15rem;
}

.df-footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

.df-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .df-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.df-footer__heading {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e7eb;
  margin: 0 0 0.75rem;
}

.df-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.df-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #9ca3af;
  text-decoration: none;
  padding: 0.15rem 0;
}

.df-footer__link::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: #6b7280;
}

.df-footer__link:hover,
.df-footer__link:focus-visible {
  color: #fbbf77;
}

.df-footer__link:focus-visible {
  outline: 2px solid #fbbf77;
  outline-offset: 3px;
}

.df-footer__text {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.df-footer__column--contact {
  max-width: 260px;
}

.df-footer__bottom {
  border-top: 1px solid rgba(249, 250, 251, 0.06);
  padding-top: 1.25rem;
}

.df-footer__copyright {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Cookie banner */

.df-cookie {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 1100;
  background-color: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.22);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out, visibility 0.25s ease-out;
}

.df-cookie--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.df-cookie--hidden {
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.df-cookie__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.df-cookie__title {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.df-cookie__description {
  font-size: 0.9rem;
  margin: 0;
  color: #d1d5db;
}

.df-cookie__description--secondary {
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

.df-cookie__link {
  color: #fbbf77;
  text-decoration: underline;
}

.df-cookie__link:hover,
.df-cookie__link:focus-visible {
  color: #fed7aa;
}

.df-cookie__link:focus-visible {
  outline: 2px solid #fbbf77;
  outline-offset: 2px;
}

.df-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.df-cookie__button {
  border-radius: 999px;
  font-size: 0.9rem;
  padding: 0.5rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.df-cookie__button--primary {
  background: #fbbf77;
  border-color: #f59e0b;
  color: #111827;
}

.df-cookie__button--primary:hover {
  background: #f59e0b;
}

.df-cookie__button--secondary {
  background: transparent;
  border-color: #4b5563;
  color: #e5e7eb;
}

.df-cookie__button--secondary:hover {
  background: rgba(31, 41, 55, 0.8);
}

.df-cookie__button:focus-visible {
  outline: 2px solid #fbbf77;
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .df-cookie__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .df-cookie__text-wrap {
    max-width: 70%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .df-cookie {
    transition: none;
  }
}
