:root {
  --oe-ink: #16181d;
  --oe-mute: #6b7280;
  --oe-line: #e5e7eb;
  --oe-bg: #f6f7f9;
  --oe-brand: #4338ca;
  --oe-good: #059669;
  --lv-green: #22a34a;
  --lv-red: #e11d2e;
  --lv-blue: #007ffd;
  --lv-purple: #6b3fa0;
  --oe-r: 10px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--oe-ink);
  background: #fff;
}

.lv-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 16px 14px;
  border-bottom: 1px solid #d8dbe3;
  background: #fff;
}

.lv-timer__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1e1b4b;
}

.lv-timer__units {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.lv-timer__unit {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.lv-timer__box {
  min-width: 46px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--oe-brand);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
}

.lv-timer__sep {
  color: var(--oe-brand);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  padding-bottom: 16px;
}

.lv-timer__cap {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.oe {
  max-width: 1240px;
  margin-inline: auto;
  padding: 24px 16px 64px;
}

.oe__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 950px) {
  .oe__grid {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 48px;
    align-items: start;
  }

  .oe__side {
    position: sticky;
    top: 16px;
  }
}

.lv-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.lv-benefits__item {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.lv-benefits__item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.lv-benefits__item span {
  font-size: 12px;
  font-weight: 700;
  color: #4c1d95;
  line-height: 1.25;
}

.lv-promo {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--oe-line);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 22px;
  background: #fff;
}

.lv-promo__badge {
  width: 78px;
  height: 78px;
  flex: none;
  object-fit: contain;
}

.lv-promo__ok {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  color: var(--lv-red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.lv-promo__ok img {
  width: 16px;
  height: 16px;
}

.lv-promo__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #374151;
}

.lv-promo__copy b { color: var(--lv-red); }
.lv-promo__copy strong { color: var(--lv-green); }

.oe__step {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.oe__step img {
  width: 20px;
  height: 20px;
}

.lv-packs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lv-pack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--oe-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.lv-pack:has(:checked) {
  border-color: var(--lv-blue);
  box-shadow: inset 0 0 0 1px var(--lv-blue);
}

.lv-pack__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lv-pack__tag {
  min-height: 28px;
  width: 100%;
  display: grid;
  place-items: center;
}

.lv-pack__tag span {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 4px;
}

.lv-pack__tag--pop span { background: var(--lv-purple); }
.lv-pack__tag--best span { background: var(--lv-blue); }

.lv-pack__img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 6px 0 4px;
}

.lv-pack__qty {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

.lv-pack__name,
.lv-pack__count {
  margin: 0;
  font-size: 13px;
  color: #374151;
}

.lv-pack__off {
  display: inline-block;
  margin: 8px 0 6px;
  background: var(--lv-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
}

.lv-pack__each {
  color: var(--lv-green);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.lv-pack__unit {
  margin: 4px 0 12px;
  font-size: 12px;
  color: var(--oe-mute);
}

.lv-pack__foot {
  width: 100%;
  margin-top: auto;
  background: #f3f4f6;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
}

.lv-pack__was {
  color: var(--lv-red);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 600;
}

.lv-trustbox {
  border: 1px solid var(--oe-line);
  border-radius: 10px;
  padding: 18px 16px 16px;
  margin-top: 18px;
}

.lv-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--oe-mute);
  text-align: center;
}

.lv-rule:before,
.lv-rule:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--oe-line);
}

.lv-couriers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.lv-couriers svg { display: block; }

.lv-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lv-quick__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lv-quick__item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: none;
}

.lv-quick__item span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.oe-cta {
  width: 100%;
  margin-top: 18px;
  background: var(--oe-brand);
  color: #fff;
  border: 0;
  border-radius: var(--oe-r);
  padding: 18px 24px;
  font-size: 17px;
  font-weight: 650;
  cursor: pointer;
  font-family: inherit;
}

.oe-cta:hover { filter: brightness(1.08); }
.oe-cta[aria-busy="true"] { opacity: 0.6; pointer-events: none; }

.oe__fineprint {
  font-size: 12px;
  color: var(--oe-mute);
  text-align: center;
  margin: 12px 0 0;
}

.lv-guarantees {
  border: 1px solid var(--oe-line);
  border-radius: 10px;
  padding: 8px 16px 16px;
  margin-top: 18px;
}

.lv-guarantee {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 0;
}

.lv-guarantee + .lv-guarantee {
  border-top: 1px solid var(--oe-line);
}

.lv-guarantee img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.lv-guarantee h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.lv-guarantee p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #4b5563;
}

.oe-card {
  border: 1px solid var(--oe-line);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
}

.oe-summary { background: var(--oe-bg); }

.oe-card__h {
  font-size: 16px;
  font-weight: 650;
  margin: 0 0 16px;
}

.oe-summary__line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--oe-line);
}

.oe-summary__thumb { position: relative; }

.oe-summary__thumb img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--oe-line);
  border-radius: 8px;
}

.oe-summary__count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--oe-ink);
  color: #fff;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.oe-summary__name {
  font-weight: 600;
  font-size: 15px;
}

.oe-summary__amt { display: grid; justify-items: end; }
.oe-summary__amt s { color: var(--oe-mute); font-size: 13px; }
.oe-summary__amt b { font-size: 18px; }

.oe-summary__totals {
  margin: 18px 0 0;
  display: grid;
  gap: 11px;
  font-size: 15px;
}

.oe-summary__totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.oe-summary__totals dt,
.oe-summary__totals dd { margin: 0; }

.oe-summary__totals .is-save {
  color: var(--oe-good);
  font-weight: 600;
}

.oe-summary__totals .is-total {
  border-top: 1px solid var(--oe-line);
  padding-top: 14px;
  font-size: 20px;
  font-weight: 700;
}

.oe-summary__tax {
  font-size: 12px;
  color: var(--oe-mute);
  margin: 12px 0 0;
}

.oe-reviews { margin-top: 20px; }

.oe-reviews__h {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px;
}

.oe-reviews__stars {
  display: inline-flex;
  gap: 2px;
}

.oe-review {
  border: 1px solid var(--oe-line);
  border-radius: 12px;
  background: #fff;
  padding: 20px;
}

.oe-review + .oe-review { margin-top: 14px; }

.oe-review__top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.oe-star {
  width: 19px;
  height: 19px;
  border-radius: 3px;
  background: #12b886;
  color: #fff;
  display: grid;
  place-items: center;
}

.oe-star svg { width: 13px; height: 13px; }

.oe-review__who { font-size: 15px; font-weight: 600; }

.oe-review__ver {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: #12b886;
}

.oe-review__body {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 800px) {
  .lv-packs { grid-template-columns: 1fr; }
  .lv-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lv-quick { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .lv-promo { flex-direction: column; text-align: center; }
  .lv-promo__ok { justify-content: center; }
  .oe-review__ver { margin-left: 0; flex-basis: 100%; }
}
