/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 40px 20px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--color-white);
}

.footer-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-section-label h3 {
  margin-bottom: 0;
}
.footer-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-sub {
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-tel {
  display: block;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 2px;
}
.footer-tel:hover {
  color: var(--color-accent);
}

.footer-emails {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.email-row {
  display: flex;
  gap: 8px;
}
.email-label {
  font-weight: 700;
  min-width: 90px;
  color: var(--color-accent);
}
.email-row a {
  color: var(--color-white);
  text-decoration: none;
}
.email-row a:hover {
  text-decoration: underline;
}

.footer-shipping {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.8rem;
}
.footer-bottom p {
  margin: 4px 0;
}
.footer-bottom a {
  color: var(--color-accent);
  text-decoration: none;
  margin: 0 6px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom .sub {
  margin-top: 8px;
  font-size: 0.7rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-col h3 {
    font-size: 0.95rem;
  }
  .footer-icon {
    width: 32px;
    height: 32px;
  }
  .email-label {
    min-width: 84px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Floating WhatsApp button (fixed, site-wide) ===== */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
  z-index: 9000;
  transition: transform .2s, box-shadow .2s;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
}
@media (max-width: 600px) {
  .wa-float { width: 50px; height: 50px; right: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
  .wa-float svg { width: 27px; height: 27px; }
}
