.price-marketplace-prompt[hidden] { display: none !important; }
.price-marketplace-prompt {
  position: fixed;
  z-index: 1040;
  left: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  width: calc(100% - 24px);
  max-width: 360px;
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  padding: 20px;
  border: 1px solid #c7dccd;
  border-top: 4px solid #247347;
  border-radius: 16px;
  background: #fff;
  color: #183c29;
  box-shadow: 0 8px 32px rgb(20 48 32 / 18%);
  animation: price-prompt-enter 220ms ease-out;
}
.price-marketplace-prompt__eyebrow {
  margin: 0 28px 6px 0;
  color: #466350;
  font-size: 12px;
  font-weight: 600;
}
.price-marketplace-prompt__intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.price-marketplace-prompt__image {
  flex: 0 0 80px;
  width: 80px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: #edf5ef;
}
.price-marketplace-prompt h2 {
  margin: 0;
  min-width: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}
.price-marketplace-prompt__description {
  margin: 0 0 14px;
  color: #4d5f53;
  font-size: 14px;
  line-height: 1.65;
}
.price-marketplace-prompt__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #216b40;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.price-marketplace-prompt__cta:hover { background: #174e2e; color: #fff; }
.price-marketplace-prompt__close {
  position: absolute;
  top: 2px;
  right: 2px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #466350;
  font-size: 28px;
  cursor: pointer;
}
.price-marketplace-prompt__close:hover { background: #edf5ef; }
.price-marketplace-prompt a:focus-visible,
.price-marketplace-prompt button:focus-visible { outline: 3px solid #c38315; outline-offset: 2px; }
@media (min-width: 768px) {
  .price-marketplace-prompt { left: 24px; bottom: 24px; padding: 24px; }
}
@keyframes price-prompt-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .price-marketplace-prompt { animation: none; }
}
