/* ======================================================
   FOOTER — DESKTOP
   Auto-Tech Elektronika
   PLIK: footer-deskop.css
   ZAKRES: TYLKO DESKTOP
   (ładowany przez <link media>)
====================================================== */

/* ======================================================
winda-button-hop
====================================================== */

.fab-top {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 48px;
  height: 48px;
  border-radius: 14px; /* 🔑 zamiast koła */

  background: rgba(52, 124, 179, 0.92);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(2px);

  box-shadow:
    0 4px 10px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.25);

  z-index: 400;

  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.fab-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.fab-top:hover {
  transform: translateY(-2px);
}

.fab-top:active {
  transform: translateY(0);
}



  .footer-col.footer-hours {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col.footer-hours > a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 10px;
  }

/* ==============================
   BASE FOOTER
============================== */

.site-footer {
  display: block;
  background: #3f5c77;
  color: #ffffff;
  padding: 48px 32px;
}

/* ==============================
   GRID
============================== */

.site-footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr 1fr;
  column-gap: 48px;
  row-gap: 0px;
  align-items: start;
}

/* ==============================
   BRAND
============================== */

.site-footer .footer-brand {

  max-width: 520px;
  padding-right: 48px;
}

.site-footer .footer-brand img {
  max-width: 140px;
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

/* DESKTOP ONLY */
.site-footer .footer-claim {
  display: block;
  margin-top: 10px;

  font-size: 0.70rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}

/* ==============================
   PRAWE KOLUMNY
============================== */

.site-footer .footer-brand   { grid-column: 1; grid-row: 1; }
.site-footer .footer-address { grid-column: 2; grid-row: 1; }
.site-footer .footer-hours   { grid-column: 3; grid-row: 1; }
.site-footer .footer-nav     { grid-column: 4; grid-row: 1; }
.site-footer .footer-legal   { grid-column: 4; grid-row: 2; }

/* ==============================
   TITLES
============================== */

.site-footer .footer-title {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  width: 100%; /* 🔑 klucz */
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.site-footer .footer-title::after {
  
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 12px;
  background: rgba(255,255,255,0.35);
}


.site-footer .footer-address a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 8px;
  padding: 6px 12px;

  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  white-space: nowrap;
}

.site-footer .footer-address a:hover {
  background: rgba(0,0,0,0.1);
  
}

/* ==============================
   LINKI
============================== */

.site-footer .footer-nav a,
.site-footer .footer-legal a {
  display: inline;
  padding: 2px 0;

  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 500;

  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.site-footer .footer-nav a:hover,
.site-footer .footer-legal a:hover {
  color: #ffffff;
}

/* ==============================
   ADRES / GODZINY
============================== */

.site-footer .footer-address span,
.site-footer .footer-hours span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

.site-footer .footer-hours br {
  display: none;
}

.site-footer .footer-hours a {
  display: block;              /* jeden pod drugim */
  margin-top: 6px;
  padding: 0;                  /* żadnych „pillów” */
  background: none;
  border-radius: 0;

  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 1.5;
}

.site-footer .footer-hours a:hover {
  color: #ffffff;
  text-decoration: underline;
}



.site-footer .footer-nav a {
  display: block;
  margin-top: 6px;

  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 1.5;
}

.site-footer .footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}