.elementor-29890 .elementor-element.elementor-element-3e89177{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-9eca076 */.bundles-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 10px 0;
}

.bundle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #111827;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bundle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.bundle-left img {
  max-width: 90px;
  height: auto;
  display: block;
}

.bundle-right {
  flex: 1;
  text-align: right;
  padding-left: 10px;
}

.bundle-right h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

.bundle-title-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.bundle-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 手机一列显示 */
@media (max-width: 768px) {
  .bundles-wrapper {
    grid-template-columns: 1fr;
  }

  .bundle-right h3 {
    white-space: normal;
    text-align: left;
  }

  .bundle-right {
    text-align: left;
  }

  .bundle-title-row {
    justify-content: space-between;
  }
}/* End custom CSS */