.product-detail__bundle {
  margin: 10px 0 4px;
  padding: 12px 11px 10px;
  background: linear-gradient(180deg, #fbf6ec, #f6ecda);
  border: 1px solid #e8d8ba;
  border-radius: 14px;
  box-sizing: border-box;
}

.product-detail__bundle .bundle-offer__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.product-detail__bundle .bundle-offer__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #241d14;
  line-height: 1.2;
}

.product-detail__bundle .bundle-offer__hint {
  font-size: 11px;
  color: #7c6a55;
  line-height: 1.3;
}

.product-detail__bundle .bundle-offer__cards {
  display: flex;
  gap: 7px;
}

.product-detail__bundle .bundle-offer__card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: block;
  background: #fff;
  border: 1px solid #e3d3b4;
  border-radius: 10px;
  padding: 7px 4px 6px;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-detail__bundle .bundle-offer__card input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-detail__bundle .bundle-offer__card.is-active {
  border: 2px solid #9a6a2f;
  box-shadow: 0 0 0 1px #9a6a2f inset;
  padding: 6px 3px 5px;
}

.product-detail__bundle .bundle-offer__card.is-soldout {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-detail__bundle .bundle-offer__badge {
  display: inline-block;
  min-height: 15px;
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 15px;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-detail__bundle .bundle-offer__badge.is-popular {
  background: #d96c2c;
}

.product-detail__bundle .bundle-offer__badge.is-value {
  background: #8a5a2b;
}

.product-detail__bundle .bundle-offer__buy {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #2a2118;
  line-height: 1.2;
  margin-bottom: 3px;
  white-space: nowrap;
}

.product-detail__bundle .bundle-offer__price {
  line-height: 1.15;
  margin-bottom: 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 3px;
}

.product-detail__bundle .bundle-offer__price .now {
  font-size: 15px;
  font-weight: 800;
  color: #b3402a;
}

.product-detail__bundle .bundle-offer__price .was {
  font-size: 10px;
  color: #9b8c75;
  text-decoration: line-through;
}

.product-detail__bundle .bundle-offer__save {
  display: none;
  margin: 0 auto 3px;
  width: fit-content;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: #b3402a;
  border-radius: 4px;
  padding: 1px 5px;
  line-height: 1.5;
  white-space: nowrap;
}

.product-detail__bundle .bundle-offer__save.is-show {
  display: block;
}

.product-detail__bundle .bundle-offer__each {
  font-size: 10px;
  color: #7c6a55;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-detail__bundle .bundle-offer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.3;
}

.product-detail__bundle .bundle-offer__stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: #2f7d4f;
}

.product-detail__bundle .bundle-offer__stock.is-out {
  color: #b3402a;
}

.product-detail__bundle .bundle-offer__stock .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.product-detail__bundle .bundle-offer__shipping {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #7c6a55;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.product-detail__bundle .bundle-offer__shipping .ship-ico {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2f9e5b;
  position: relative;
}

.product-detail__bundle .bundle-offer__shipping .ship-ico::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 4px;
  height: 2.2px;
  border-left: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(-45deg);
}
