/**
 * HoneyPot Deals & Bundles UI
 */
.honeypot-deals-bundles .section-head {
  margin-bottom: 20px;
}

.honeypot-deals-bundles .section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.honeypot-deals-bundles .section-head p {
  margin: 0;
  color: #57606a;
  line-height: 1.65;
}

.honeypot-bundle-section {
  margin-bottom: 42px;
}

.honeypot-bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.honeypot-bundle-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.honeypot-bundle-card .badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 142, 214, 0.1);
  color: #008ed6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.honeypot-bundle-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.honeypot-bundle-card p {
  margin: 0 0 12px;
  color: #57606a;
  line-height: 1.6;
}

.honeypot-bundle-price {
  margin-bottom: 14px;
  font-weight: 800;
}

.honeypot-bundle-buy,
.honeypot-custom-bundle__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #008ed6;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.honeypot-custom-bundle__picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.honeypot-custom-bundle__option {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  background: #f7f8fa;
  cursor: pointer;
}

.honeypot-custom-bundle__option input {
  accent-color: #008ed6;
}

.honeypot-custom-bundle__option small {
  color: #57606a;
}

@media (max-width: 760px) {
  .honeypot-bundle-grid,
  .honeypot-custom-bundle__picker {
    grid-template-columns: 1fr;
  }
}
