/* =====================================================
   FOOTER EXTRA — CR/VAT/Est row, Social icons, Office Hours
   Shared across every page. Self-contained (explicit colors,
   no dependency on page-specific variables) so it renders
   consistently no matter which stylesheet the page also loads.
   ===================================================== */

/* CR No. / VAT / Est. row — sits where the CR line used to be */
.footer-cr-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 16px;
}

.footer-cr-row .footer-cr {
  margin: 0;
}

.fx-cr-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.fx-cr-item strong {
  color: #ffffff;
  font-weight: 600;
}

/* Social icons — sit under the CR/VAT/Est row */
.fx-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.fx-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.fx-social-icon:hover {
  border-color: #c41e1e;
  background: #c41e1e;
  color: #ffffff;
  transform: translateY(-2px);
}

.fx-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Office hours box — sits inside the Contact column, under the address */
.fx-hours {
  border: 1px solid rgba(196, 30, 30, 0.35);
  background: rgba(196, 30, 30, 0.07);
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 18px;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
}

.fx-hours-title {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #e0625f;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
}

.fx-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  padding: 2px 0;
  white-space: nowrap;
}

.fx-hours-row .fx-hours-day {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

@media (max-width: 600px) {
  .fx-hours {
    max-width: 100%;
  }
}
