/* Nový 4. sloupec ve footeru - O nás */
.footer-custom-column {
  min-width: 200px;
  padding: 0 15px;
}

.footer-custom-column h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-custom-column p {
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: var(--color-text, #555);
  font-size: 0.95em;
}

.footer-custom-column a {
  color: var(--color-primary, #c0392b);
  text-decoration: underline;
}

.footer-custom-column a:hover {
  text-decoration: none;
}

/* Černé sociální ikony */
.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #222;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s;
}

.footer-social-icons a:hover {
  background-color: #555;
}

.footer-social-icons a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Extra obsah pod Kontakt */
.footer-contact-extra {
  margin-top: 15px;
}

.footer-contact-extra p {
  margin: 0 0 10px 0;
  line-height: 1.6;
  font-size: 0.95em;
}

.footer-contact-extra a {
  color: var(--color-primary, #c0392b);
  text-decoration: underline;
}

.footer-contact-extra a:hover {
  text-decoration: none;
}

/* Fotka prodejny */
.footer-prodejna-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

/* Skrytí původních zelených ikon sociálních sítí */
.footer-links-icons {
  display: none !important;
}

/* Footer row - zajistit že sloupce jsou vedle sebe */
.row.custom-footer {
  display: flex;
  flex-wrap: wrap;
}

/* Responzivita */
@media (max-width: 768px) {
  .footer-custom-column {
    margin-top: 25px;
  }
}
