/* 搭配套装：左侧文案 + 右侧白卡片（上半底图区放图，下半标题价格） */
.lp-kit {
  display: flex;
  align-items: stretch;
  gap: var(--lp-kit-gap, 20px);
  width: 100%;
  padding: var(--lp-kit-pad, 18px);
  background: var(--lp-kit-bg, #eef5ef);
  border: 1px solid var(--lp-kit-border, #d7e5d9);
  border-radius: var(--lp-kit-radius, 18px);
  box-sizing: border-box;
}

.lp-kit__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex: 0 0 34%;
  min-width: 0;
}

.lp-kit__title {
  margin: 0;
  color: var(--lp-kit-title, #214f2f);
  font-size: var(--lp-kit-title-size, 28px);
  font-weight: 700;
  line-height: 1.15;
}

.lp-kit__desc {
  margin: 0;
  color: var(--lp-kit-desc, #5b655e);
  font-size: var(--lp-kit-desc-size, 13px);
  line-height: 1.5;
}

.lp-kit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 0 20px;
  color: var(--lp-kit-btn-text, #ffffff);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: var(--lp-kit-btn-bg, #214f2f);
  border-radius: 999px;
}

.lp-kit__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  flex: 1;
  align-content: stretch;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-kit__item {
  min-width: 0;
}

.lp-kit__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* 白卡片外壳 */
.lp-kit__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 16px;
  box-sizing: border-box;
}

/* 上半：桃色底图区域，图片/占位形居中叠在上面 */
.lp-kit__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 0.92;
  margin: 10px 10px 0;
  background: var(--lp-kit-item-bg, #f6e4db);
  border-radius: 12px;
}

.lp-kit__media img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.lp-kit__shape {
  display: block;
  flex-shrink: 0;
}

.lp-kit__media--pouch .lp-kit__shape {
  width: 56%;
  height: 28%;
  background: #214f2f;
  border-radius: 999px;
}

.lp-kit__media--bowl .lp-kit__shape {
  width: 42%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #8ec5e8;
  border-radius: 50%;
}

.lp-kit__media--roller .lp-kit__shape {
  width: 26%;
  height: 58%;
  background: #f0c84a;
  border-radius: 999px;
}

/* 下半：标题 + 价格，在底图区域下方 */
.lp-kit__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 12px 10px 14px;
  text-align: center;
}

.lp-kit__name {
  margin: 0;
  color: #214f2f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.lp-kit__price {
  margin: 0;
  color: #5b655e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

@media (max-width: 767.98px) {
  .lp-kit {
    flex-direction: column;
  }

  .lp-kit__copy {
    flex-basis: auto;
  }

  .lp-kit__title {
    font-size: calc(var(--lp-kit-title-size, 28px) - 6px);
  }

  .lp-kit__products {
    gap: 8px;
  }

  .lp-kit__media {
    margin: 8px 8px 0;
  }

  .lp-kit__info {
    padding: 10px 6px 12px;
  }
}
