/* =====================================
   DESIGN DO ORDER BUMP
===================================== */

.order-bump {
  position: relative;
  border-radius: 18px;
  padding: 18px;
  margin-top: 24px;
  cursor: pointer;

  background: rgba(10, 18, 35, 0.6);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 255, 255, 0.08);

  transition: all 0.25s ease;
}

/* glow suave no hover */
.order-bump:hover {
  border-color: rgba(0, 255, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
}

/* estado ativo (selecionado) */
.order-bump.active {
  border-color: #00eaff;
  box-shadow:
    0 0 0 1px rgba(0, 234, 255, 0.3),
    0 0 25px rgba(0, 234, 255, 0.15);
}

/* layout interno */
.order-bump-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* checkbox estilo minimalista */
.order-bump input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #00eaff;
  cursor: pointer;
}

/* header */
.order-bump-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

/* badge */
.order-bump-badge {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;

  background: rgba(0, 234, 255, 0.1);
  color: #00eaff;

  border: 1px solid rgba(0, 234, 255, 0.2);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* preço */
.order-bump-price {
  font-size: 14px;
  font-weight: 700;
  color: #00eaff;
}
/* título */
.order-bump-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 4px 0;
}

/* descrição */
.order-bump-description {
  font-size: 13px;
  color: #9fb0c7;
  line-height: 1.5;
}

/* efeito de borda glow animada opcional */
.order-bump::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;

  background: radial-gradient(
    600px circle at var(--x, 50%) var(--y, 50%),
    rgba(0, 234, 255, 0.15),
    transparent 40%
  );

  opacity: 0;
  transition: opacity 0.3s;
}

.order-bump:hover::before {
  opacity: 1;
}
