/* Footer social icons: global refinements for all pages */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
.footer-social .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid rgba(242,224,200,0.22);
  background: rgba(255,255,255,0.015);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(242,224,200,0.58);
  transition: border-color .25s ease, background .25s ease, transform .2s ease, color .25s ease, box-shadow .25s ease;
}
.footer-social .social-icon:hover,
.footer-social .social-icon:focus-visible {
  border-color: var(--caramelo);
  background: rgba(196,135,74,0.12);
  color: var(--caramelo);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  outline: none;
}
.footer-social .social-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social .social-icon.youtube svg,
.footer-social .social-icon.tiktok svg,
.footer-social .social-icon.yelp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}
.footer-social .social-icon.youtube svg { width: 21px; }
.footer-social .social-icon.yelp svg { width: 21px; height: 21px; }
.footer-social .social-icon.yelp .yelp-petal { fill: currentColor; }
@media (max-width: 900px) {
  .footer-social { max-width: 240px; }
}
