/* CAPSULE_HOMEPAGE_PRIORITY */
.hero-price-callout {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 660px;
  margin-top: 22px;
  padding: 14px 17px;
  border-left: 3px solid #cf7042;
  background: rgba(207, 112, 66, 0.08);
}

.hero-price-callout strong {
  color: #263128;
  font-size: 17px;
  line-height: 1.3;
}

.hero-price-callout span {
  color: #566057;
  font-size: 14px;
  line-height: 1.55;
}

.cb-sticky-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 152px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: #263128;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(20, 31, 24, 0.24);
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.cb-sticky-call span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cb-sticky-call strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
}

.cb-sticky-call:hover {
  background: #cf7042;
  color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(207, 112, 66, 0.32);
  transform: translateY(-2px);
}

.cb-sticky-call:focus-visible {
  outline: 3px solid rgba(207, 112, 66, 0.42);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-price-callout {
    margin-top: 18px;
    padding: 13px 15px;
  }

  .hero-price-callout strong {
    font-size: 16px;
  }

  .cb-sticky-call {
    display: none !important;
  }
}
