/* lem-bundle.css — upsell card Lem + Avo */
.lem-bundle-upsell {
  background: #faf6f2;
  border: 2px solid #ff30cc;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 14px 0;
  transition: background 0.2s;
}
.lem-bundle-upsell:hover { background: #fdf0ec; }

.lem-bundle-upsell__label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.lem-bundle-upsell input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.lem-bundle-upsell__check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  background: #fff;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.lem-bundle-upsell input[type="checkbox"]:checked ~ .lem-bundle-upsell__check {
  background: #ff30cc;
  border-color: #ff30cc;
}
.lem-bundle-upsell input[type="checkbox"]:checked ~ .lem-bundle-upsell__check::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.lem-bundle-upsell__img {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f5;
}

.lem-bundle-upsell__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.lem-bundle-upsell__title {
  font-family: 'ESRebondGrotesque-Semibold', 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
}
.lem-bundle-upsell__title strong { font-weight: 700; }
.lem-bundle-upsell__sub {
  font-size: 13px;
  color: #555;
}
.lem-bundle-upsell__sub strong { color: #ff30cc; font-weight: 700; }
.lem-bundle-upsell__sub s { color: #999; margin-left: 2px; }

.lem-bundle-upsell__badge {
  flex: 0 0 auto;
  background: #ccfd28;
  color: #1a1a1a;
  font-family: 'ESRebondGrotesque-Semibold', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .lem-bundle-upsell__title { font-size: 13px; }
  .lem-bundle-upsell__sub { font-size: 12px; }
  .lem-bundle-upsell__badge { font-size: 10px; padding: 3px 6px; }
}
