/* Homey Decor approved logo treatment — preview only */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.logo img.homey-site-logo {
  display: block;
  width: clamp(72px, 13vw, 122px);
  height: auto;
  max-width: 100%;
  max-height: 122px;
  object-fit: contain;
  object-position: center;
  filter: none !important;
  opacity: 1;
  background: transparent;
}
.site-header .logo img.homey-site-logo,
header .logo img.homey-site-logo {
  width: clamp(66px, 12vw, 108px);
  max-height: 108px;
}
.site-footer .logo img.homey-site-logo,
footer .logo img.homey-site-logo {
  width: clamp(132px, 28vw, 218px);
  max-height: 218px;
}
@media (max-width: 640px) {
  .site-header .logo img.homey-site-logo,
  header .logo img.homey-site-logo {
    width: 76px;
    max-height: 76px;
  }
  .site-footer .logo img.homey-site-logo,
  footer .logo img.homey-site-logo {
    width: 164px;
    max-height: 164px;
  }
}

/* Footer logo visibility override: keep the approved mark readable on dark footer surfaces. */
footer .footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 22px;
  padding: 16px 0 8px;
}
footer .footer-brand .logo.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(44vw, 220px) !important;
  height: auto !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}
footer .footer-brand img.homey-footer-logo {
  display: block !important;
  width: min(44vw, 220px) !important;
  height: auto !important;
  max-width: 220px !important;
  max-height: 220px !important;
  min-width: 150px !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
  opacity: 1 !important;
}
@media (max-width: 640px) {
  footer .footer-brand {
    margin-bottom: 18px;
    padding: 12px 0 6px;
  }
  footer .footer-brand img.homey-footer-logo {
    width: 174px !important;
    min-width: 174px !important;
    max-width: 174px !important;
    max-height: 174px !important;
  }
}
