/* Dentoria Footer – бои преку CSS променливи од поставките */

.dentoria-footer {
  position: relative;
  background: var(--df-bg, #1a1a1a);
  color: var(--df-text, #e5e5e5);
  padding: 3rem 0 0;
  overflow: hidden;
}

.dentoria-footer__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--df-grid-rgba, rgba(255, 255, 255, 0.03)) 1px, transparent 1px),
    linear-gradient(90deg, var(--df-grid-rgba, rgba(255, 255, 255, 0.03)) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.dentoria-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.dentoria-footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .dentoria-footer__columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .dentoria-footer__columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.dentoria-footer__col {
  min-width: 0;
  text-align: center;
}

/* Сите колони центрирани на мобилен (една колона) */
@media (max-width: 560px) {
  .dentoria-footer__col {
    justify-self: center;
    max-width: 100%;
  }
}

/* Бренд – центрирано со точен вертикален простор */
.dentoria-footer__brand {
  text-align: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dentoria-footer__logo {
  margin-bottom: 1.5rem;
  text-align: center;
  display: block !important;
  visibility: visible !important;
}

.dentoria-footer__logo:empty {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  display: none !important;
}

.dentoria-footer__logo img,
.dentoria-footer__logo .dentoria-footer__logo-img {
  width: 160px;
  height: 48px;
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
  object-position: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-left: auto;
  margin-right: auto;
}

.dentoria-footer__legal {
  font-size: 0.8rem;
  margin: 0;
  text-align: center;
}

.dentoria-footer__legal a,
.dentoria-footer__legal span {
  display: block;
  margin-bottom: 0.25rem;
}

.dentoria-footer__legal a:last-child,
.dentoria-footer__legal span:last-child {
  margin-bottom: 0;
}

.dentoria-footer__legal a {
  color: var(--df-link, #e5e5e5);
  text-decoration: none;
}

.dentoria-footer__legal a:hover {
  text-decoration: underline;
}

/* Наслови – центрирани во сите колони */
.dentoria-footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--df-heading, #fff);
  margin: 0 0 1rem;
  text-align: center;
}

.dentoria-footer__heading--newsletter {
  margin-top: 1.5rem;
}

/* Мени – центрирано */
.dentoria-footer__menu-wrap {
  margin: 0;
  text-align: center;
}

.dentoria-footer__menu {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: inline-block;
  text-align: center;
}

.dentoria-footer__menu li {
  margin: 0 0 0.5rem;
  text-align: center;
}

.dentoria-footer__menu a {
  color: var(--df-link, #e5e5e5);
  text-decoration: none;
  font-size: 0.95rem;
}

.dentoria-footer__menu a:hover {
  text-decoration: underline;
}

/* За нас – центрирано */
.dentoria-footer__about .dentoria-footer__heading,
.dentoria-footer__about .dentoria-footer__menu-wrap {
  text-align: center;
}

.dentoria-footer__about-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--df-text, #a3a3a3);
  margin: 0;
  text-align: center;
}

/* Социјални мрежи – сопствени SVG икони, стил од админ */
.dentoria-footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.dentoria-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  padding: 0;
  text-align: center;
}

/* Стил: кругови со рамка */
.dentoria-footer__socials--circle-outline .dentoria-footer__social-link {
  border-radius: 50%;
}

/* Стил: кругови исполнети */
.dentoria-footer__socials--circle-filled .dentoria-footer__social-link {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.dentoria-footer__socials--circle-filled .dentoria-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Стил: квадрати заоблени (како на сликата) */
.dentoria-footer__socials--square-rounded .dentoria-footer__social-link {
  border-radius: 8px;
}

.dentoria-footer__social-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.dentoria-footer__socials--circle-filled .dentoria-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.25);
}

.dentoria-footer__social-link:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.dentoria-footer__social-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

.dentoria-footer__social-link .dentoria-footer__social-fallback {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.dentoria-footer__socials--under-logo {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/* Форма за новости – центрирано */
.dentoria-footer__newsletter-col .dentoria-footer__heading {
  text-align: center;
}

.dentoria-footer__newsletter-wrap {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.dentoria-footer__newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

/* На мобилен: инпут горе, дугме долу – од крај до крај, централно */
@media (max-width: 560px) {
  .dentoria-footer__newsletter-wrap {
    width: 100%;
  }
  .dentoria-footer__newsletter {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
  }
  .dentoria-footer__newsletter .dentoria-footer__email-input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    order: 1;
    box-sizing: border-box;
  }
  .dentoria-footer__newsletter .dentoria-footer__submit {
    width: 100%;
    order: 2;
    box-sizing: border-box;
  }
}

.dentoria-footer__newsletter-msg {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
}

.dentoria-footer__newsletter-msg.success {
  color: #86efac;
}

.dentoria-footer__newsletter-msg.error {
  color: #fca5a5;
}

.dentoria-footer__email-input {
  flex: 1;
  min-width: 180px;
  padding: 1rem 1rem;
  min-height: 2.75rem;
  font-size: 0.9rem;
  color: var(--df-text, #fff);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
}

.dentoria-footer__email-input::placeholder {
  color: #a3a3a3;
}

.dentoria-footer__email-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.dentoria-footer__submit {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--df-btn-text, #1a1a1a);
  background: var(--df-btn-bg, #fff);
  border: 1px solid var(--df-btn-bg, #fff);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.dentoria-footer__submit:hover {
  opacity: 0.95;
}

.dentoria-footer__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Градиент долу – боја од поставки */
.dentoria-footer__gradient {
  height: 8px;
  margin-top: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--df-gradient-rgba, rgba(220, 100, 50, 0.4)) 20%,
    var(--df-gradient-rgba, rgba(230, 120, 50, 0.7)) 50%,
    var(--df-gradient-rgba, rgba(220, 100, 50, 0.4)) 80%,
    transparent 100%
  );
}
