/* Sticky Floor Ad – fixed bottom CTA on all public pages */
.herando-floor-ad {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.herando-floor-ad__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.herando-floor-ad__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 36px;
  background: #c99b5d;
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  box-shadow: 0 2px 10px rgba(201, 155, 93, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.herando-floor-ad__btn:hover,
.herando-floor-ad__btn:focus-visible {
  background: #b8894f;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(201, 155, 93, 0.45);
}

body.herando-has-floor-ad {
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 575.98px) {
  .herando-floor-ad {
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .herando-floor-ad__btn {
    width: 100%;
    max-width: 360px;
    font-size: 0.95rem;
    min-height: 44px;
  }

  body.herando-has-floor-ad {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
}
