.rp-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9970;
  background: #fff;
  border-bottom: 1px solid #dde3ec;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
  transform: translateY(-110%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

.rp-sticky-bar.is-visible {
  transform: translateY(0);
}

.rp-sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  min-height: 60px;
  box-sizing: border-box;
}

.rp-sticky-title {
  margin: 0;
  min-width: 0;
  flex: 1;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1a1a2e;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.rp-sticky-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.rp-sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 8px 15px;
  box-sizing: border-box;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none !important;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #fff !important;
  transition: opacity .18s, transform .18s;
}

.rp-sticky-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
  color: #fff !important;
}

.rp-sticky-btn--sample {
  background: #399999;
}

.rp-sticky-btn--buy {
  background: #0052CC;
}

.rp-sticky-btn--custom {
  background: #8443ce;
}

@media (max-width: 991px) {
  .rp-sticky-title {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .rp-sticky-title {
    display: none;
  }

  .rp-sticky-bar-inner {
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  .rp-sticky-btn {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }
}