/**
 * dprint — hlavná pätička (nad právnym pruhom).
 * Nahrádza pôvodnú Elementor pätičku (tá sa skrýva nižšie).
 * Tmavá `#0B0B0B` nadväzuje na právny pruh `.dprint-footer-legal` bez prechodu.
 * Rollback: odstrániť `add_action('wp_footer', … 'render_footer')` v class-core.php
 *           + pravidlo `.elementor-location-footer { display:none }` nižšie.
 */

/* Pôvodná Elementor pätička — skrytá, obsah prebrala .dprint-footer */
.elementor-location-footer { display: none !important; }

.dprint-footer {
  background: #0B0B0B;
  color: rgba(255,255,255,.72);
  font-family: "Noto Sans", sans-serif;
  padding: 72px 20px 40px;
  box-sizing: border-box;
}
.dprint-footer *, .dprint-footer *::before, .dprint-footer *::after { box-sizing: border-box; }

.dprint-footer__in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  /* brand | informácie | prevádzkovateľ | otváracia doba
     (brand širší, aby sa kontaktné pilulky zmestili vedľa seba) */
  grid-template-columns: 1.65fr .95fr 1.15fr .95fr;
  gap: 44px 40px;
  align-items: start;
}

/* ── Brand stĺpec ─────────────────────────────────────────────────────────── */
.dprint-footer__logo { display: inline-block; }
.dprint-footer__logo img {
  width: 168px; height: auto; display: block;
  transition: opacity .18s ease;
}
.dprint-footer__logo:hover img { opacity: .78; }

.dprint-footer__claim {
  margin: 22px 0 24px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 380px;
}

/* Pilulky vedľa seba (nezalamovať) — inak zbytočne naťahujú pätičku do výšky */
.dprint-footer__quick { display: flex; flex-wrap: wrap; gap: 8px; }
.dprint-footer__pill {
  display: inline-block;
  padding: 8px 14px;
  border: 1.5px solid rgba(255,255,255,.18) !important;
  border-radius: 40px;
  color: #fff !important;
  font-family: Inter, sans-serif;
  font-weight: 700; font-style: italic;
  font-size: 12.5px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.dprint-footer__pill:hover {
  background: #5BC4BC !important;
  border-color: #5BC4BC !important;
  color: #0B0B0B !important;
}

/* ── Stĺpce s odkazmi ─────────────────────────────────────────────────────── */
.dprint-footer__title {
  font-family: Inter, sans-serif;
  font-weight: 900; font-style: italic; text-transform: uppercase;
  color: #fff;
  font-size: 15px; letter-spacing: .02em;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,.12);
}
.dprint-footer__title--spaced { margin-top: 32px; }

.dprint-footer__list { list-style: none; margin: 0; padding: 0; }
.dprint-footer__list li { margin-bottom: 11px; font-size: 14px; line-height: 1.6; }
.dprint-footer__list li:last-child { margin-bottom: 0; }
.dprint-footer__list a {
  color: rgba(255,255,255,.68) !important;
  text-decoration: none !important;
  transition: color .16s ease, padding-left .16s ease;
}
.dprint-footer__list a:hover { color: #5BC4BC !important; padding-left: 4px; }
.dprint-footer__list--plain li { color: rgba(255,255,255,.6); }

/* Kontakt — prevádzkovateľ + fakturačné údaje ako plynulý text.
   Bloky oddelené medzerou, aby sa údaje nezlievali. */
.dprint-footer__contact {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.66);
}
.dprint-footer__contact:last-child { margin-bottom: 0; }

/* Uvádzacia veta — tlmená, na vlastnom riadku */
.dprint-footer__lead {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.42);
  margin-bottom: 2px;
}

/* IČO / DIČ / IČ DPH — každé na vlastnom riadku */
.dprint-footer__contact--ids span { display: block; }
.dprint-footer__contact a {
  color: rgba(255,255,255,.68) !important;
  text-decoration: none !important;
  transition: color .16s ease;
}
.dprint-footer__contact a:hover { color: #5BC4BC !important; }

/* Otváracia doba */
.dprint-footer__list--plain li + li { margin-top: 14px; }
.dprint-footer__days { display: block; color: rgba(255,255,255,.6); }
.dprint-footer__hours {
  display: block;
  font-family: Inter, sans-serif; font-weight: 900; font-style: italic;
  color: #5BC4BC; font-size: 17px; margin-top: 2px;
}
.dprint-footer__closed {
  display: block;
  font-family: Inter, sans-serif; font-weight: 700; font-style: italic;
  color: rgba(255,255,255,.38); font-size: 15px; margin-top: 2px;
}
.dprint-footer__note {
  margin: 14px 0 0;
  font-size: 12.5px; line-height: 1.6;
  color: rgba(255,255,255,.42);
}

/* ── Responzívnosť ────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .dprint-footer__in { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .dprint-footer__brand { grid-column: 1 / -1; }
  .dprint-footer__claim { max-width: none; }
}
@media (max-width: 560px) {
  .dprint-footer { padding: 52px 16px 32px; }
  .dprint-footer__in { grid-template-columns: 1fr; gap: 34px; }
  .dprint-footer__logo img { width: 140px; }
}
