/* ================================================================== */
/* BEORGANIC – ZÁPATÍ – OPRAVA FULL WIDTH                             */
/* Cielené na skutočný HTML footer                                    */
/* ================================================================== */

/* Vonkajší wrapper – roztiahnutie cez celú šírku */
.page-width[style*="background-color: #f2f2f2"],
.page-width[style*="background-color:#f2f2f2"] {
  background-color: #f0ebe4 !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Grid stĺpcov – centrovaný obsah, nie wrapper */
.footer-columns {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  background-color: transparent !important;
}

/* Dolná lišta */
.footer-bottom {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  background-color: transparent !important;
}

/* Sociálne ikony */
.footer-social {
  display: flex !important;
  gap: 16px !important;
  align-items: center !important;
}

.bo-social-link {
  display: flex !important;
  align-items: center !important;
  opacity: 0.7 !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.bo-social-link:hover {
  opacity: 1 !important;
  transform: translateY(-2px) !important;
}

.bo-social-link img {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
}

/* Stĺpce – hover efekt */
.footer-column a:hover {
  color: #738671 !important;
  padding-left: 4px !important;
}

/* Copyright */
.footer-copyright {
  font-size: 12px !important;
  color: #999 !important;
}

/* Mobilné zobrazenie */
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    padding: 32px 16px 28px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 14px !important;
    text-align: center !important;
    padding: 16px 16px 24px !important;
  }
}

@media (max-width: 400px) {
  .footer-columns {
    grid-template-columns: 1fr !important;
  }
}
