img.prod__img {
 border-radius: 30px; 
}
.reassurance-block {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  transition: background .15s;
}
.reassurance-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.reassurance-item:hover { background: #fafafa; }

.ri-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.ri-icon.blue   { background: #eff6ff; }
.ri-icon.green  { background: #f0fdf4; }
.ri-icon.amber  { background: #fffbeb; }
.ri-icon.purple { background: #faf5ff; }

.ri-text { flex: 1; }
.ri-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}
.ri-sub {
  font-size: 12px;
  color: #888;
  margin-top: 1px;
  font-weight: 400;
}

.ri-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ri-badge.orange {
  background: #fff3e8;
  color: #d4500a;
}
.ri-badge.green {
  background: #f0fdf4;
  color: #16a34a;
}

/* live dot */
.live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
  animation: blink 1.6s ease infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:.3; }
}
@media (max-width: 500px) {
  .reassurance-block {
    display: none;
  }
}
