.bonus-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.bonus-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #ff612e;
  background: rgba(255, 97, 46, 0.08);
  color: #ff612e;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.bonus-info-btn:hover {
  background: rgba(255, 97, 46, 0.16);
}

.bonus-info-btn svg {
  display: block;
}

body.bonus-modal-open {
  overflow: hidden;
}

.bonus-info-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.bonus-info-modal.is-open {
  display: block;
}

.bonus-info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
}

.bonus-info-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: calc(100% - 32px);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 22px 22px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bonus-info-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.bonus-info-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.2px;
}

.bonus-info-modal__close {
  border: none;
  background: #f3f4f6;
  color: #111827;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.bonus-info-modal__subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.bonus-info-modal__text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.bonus-info-modal__text ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

.bonus-info-modal__text li {
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 16px;
}

.bonus-info-modal__text li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff612e;
  position: absolute;
  left: 0;
  top: 0.55em;
}

.bonus-info-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  background: #ff612e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 18px;
  text-align: center;
  border: 1px solid #ff612e;
  transition: all 0.2s ease;
}

.bonus-info-modal__section {
  border-top: 1px solid #f1f2f4;
  padding-top: 12px;
}

.bonus-info-modal__cta:hover {
  background: #ff7a4c;
  border-color: #ff7a4c;
}

@media (max-width: 768px) {
  .bonus-info-modal__dialog {
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: absolute;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    padding: 20px 16px 24px;
    max-height: 80vh;
    overflow: auto;
  }

  .bonus-info-modal__cta {
    display: flex;
    width: 100%;
  }
}
