.wbo-offer {
  --wbo-green: #2e5233;
  --wbo-green-dark: #222622;
  --wbo-green-soft: #c7dcc9;
  --wbo-border: #b8cfbb;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0 0 22px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--wbo-border);
  border-radius: 12px;
  background: #fff;
  color: #173326;
}

.wbo-offer *,
.wbo-offer *::before,
.wbo-offer *::after {
  box-sizing: border-box;
}

.wbo-offer__title {
  display: block;
  width: auto;
  margin: 0 0 12px;
  padding: 0;
  color: var(--wbo-green-dark);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
  letter-spacing: .08em;
}

.wbo-option {
  position: relative;
  display: flex;
  gap: 11px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid #8eaa92;
  border-radius: 8px;
  background: var(--wbo-green-soft);
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.wbo-option + .wbo-option {
  margin-top: 11px;
}

.wbo-option:hover {
  border-color: #7fab8f;
}

.wbo-option.is-selected {
  border-color: var(--wbo-green-dark);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(46, 82, 51, .12);
}

.wbo-option__radio {
  flex: 0 0 auto;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  margin: 2px 0 0 !important;
  accent-color: var(--wbo-green);
}

.wbo-option__body,
.wbo-option__heading,
.wbo-products,
.wbo-product,
.wbo-product__details,
.wbo-total {
  min-width: 0;
}

.wbo-option__body {
  display: block;
  flex: 1 1 auto;
}

.wbo-option__heading,
.wbo-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wbo-option__name {
  overflow-wrap: anywhere;
  color: var(--wbo-green-dark);
  font-weight: 750;
  line-height: 1.3;
}

.wbo-option__price {
  flex: 0 0 auto;
  color: var(--wbo-green-dark);
  font-weight: 750;
  white-space: nowrap;
}

.wbo-option__subtitle {
  display: block;
  margin-top: 3px;
  color: #3d5144;
  font-size: .86rem;
}

.wbo-option__subtitle--saving {
  color: var(--wbo-green);
  font-weight: 750;
}

.wbo-option__badge {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--wbo-green);
  color: #fff;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .045em;
  white-space: nowrap;
}

.wbo-products {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 9px;
  margin: 14px 0;
}

.wbo-product {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border: 1px solid #d9e4dc;
  border-radius: 8px;
  background: #fff;
}

.wbo-product__image {
  flex: 0 0 54px;
}

.wbo-product__image img {
  display: block;
  width: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  object-fit: contain;
  border-radius: 6px;
  background: #f7faf8;
}

.wbo-product__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.wbo-product__name {
  overflow-wrap: anywhere;
  color: #253b30;
  font-size: .79rem;
  font-weight: 650;
  line-height: 1.3;
}

.wbo-product__price {
  color: var(--wbo-green-dark);
  font-size: .84rem;
  font-weight: 750;
}

.wbo-product__price del {
  color: #52645a;
  font-weight: 500;
}

.wbo-product__price ins {
  color: var(--wbo-green);
  text-decoration: none;
}

.wbo-product__saving {
  color: var(--wbo-green);
  font-size: .7rem;
  font-weight: 700;
}

.wbo-products__plus {
  align-self: center;
  color: var(--wbo-green);
  font-size: 1.2rem;
  font-weight: 800;
}

.wbo-total {
  padding-top: 11px;
  border-top: 1px solid #cfe0d4;
  color: var(--wbo-green-dark);
  font-size: .95rem;
}

.wbo-total strong {
  font-size: 1.08rem;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .wbo-offer {
    padding: 12px;
    border-radius: 13px;
  }

  .wbo-option {
    padding: 12px 10px;
  }

  .wbo-option__heading {
    align-items: flex-start;
  }

  .wbo-option__badge {
    font-size: .62rem;
  }

  .wbo-products {
    grid-template-columns: minmax(0, 1fr);
  }

  .wbo-products__plus {
    line-height: 1;
    text-align: center;
  }
}
