.bundle-pdp-stats {
  width: 100%;
  background-color: var(--bps-section-bg, transparent);
}

.bundle-pdp-stats__inner {
  max-width: var(--bps-inner-max, 960px);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--bps-card-bg, #fff);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.bundle-pdp-stats__title {
  margin: 0 0 1.35rem;
  letter-spacing: -0.02em;
}

.bundle-pdp-stats__title p {
  margin: 0;
}

.bundle-pdp-stats--heading-left .bundle-pdp-stats__title {
  text-align: left;
}

.bundle-pdp-stats--heading-center .bundle-pdp-stats__title {
  text-align: center;
}

.bundle-pdp-stats--heading-right .bundle-pdp-stats__title {
  text-align: right;
}

.bundle-pdp-stats__grid {
  display: grid;
  gap: 1.5rem;
}

@media screen and (min-width: 750px) {
  .bundle-pdp-stats__grid {
    grid-template-columns: repeat(var(--bps-columns, 3), minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
  }

  .bundle-pdp-stats--dividers .bundle-pdp-stats__item:not(:last-child) {
    border-inline-end: 1px solid rgba(0, 0, 0, 0.08);
  }

  .bundle-pdp-stats--dividers .bundle-pdp-stats__item {
    padding-inline: 1.25rem;
  }

  .bundle-pdp-stats--dividers .bundle-pdp-stats__item:first-child {
    padding-inline-start: 0;
  }

  .bundle-pdp-stats--dividers .bundle-pdp-stats__item:last-child {
    padding-inline-end: 0;
  }
}

.bundle-pdp-stats__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.bundle-pdp-stats--item-icon-right .bundle-pdp-stats__item {
  flex-direction: row;
}

.bundle-pdp-stats--item-icon-left .bundle-pdp-stats__item {
  flex-direction: row-reverse;
}

.bundle-pdp-stats--item-stacked .bundle-pdp-stats__item {
  flex-direction: column;
  align-items: flex-start;
}

.bundle-pdp-stats--text-left .bundle-pdp-stats__item-body {
  text-align: left;
}

.bundle-pdp-stats--text-center .bundle-pdp-stats__item-body {
  text-align: center;
}

.bundle-pdp-stats--text-center.bundle-pdp-stats--item-stacked .bundle-pdp-stats__item {
  align-items: center;
}

.bundle-pdp-stats--text-right .bundle-pdp-stats__item-body {
  text-align: right;
}

.bundle-pdp-stats--text-right.bundle-pdp-stats--item-stacked .bundle-pdp-stats__item {
  align-items: flex-end;
}

.bundle-pdp-stats__item-body {
  flex: 1 1 auto;
  min-width: 0;
}

.bundle-pdp-stats__headline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.5rem;
}

.bundle-pdp-stats__headline {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--bps-headline-color, rgb(var(--color-text)));
  font-family: var(--bps-stat-font, inherit);
}

.bundle-pdp-stats__label {
  margin: 0;
  font-size: clamp(0.65rem, 1.6vw, 0.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bps-label-color, rgb(var(--color-text)));
  font-family: var(--bps-stat-font, inherit);
}

.bundle-pdp-stats__text {
  margin: 0;
  opacity: 0.88;
  line-height: 1.45;
  font-family: var(--bps-stat-font, inherit);
}

.bundle-pdp-stats__icon-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--bps-icon-size, 72px);
  height: var(--bps-icon-size, 72px);
  border-radius: 50%;
  background: var(--bps-icon-bg, #e8f0fa);
  overflow: hidden;
}

.bundle-pdp-stats__icon-img {
  display: block;
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.bundle-pdp-stats__footer {
  margin: 1.25rem 0 0;
  text-align: center;
  opacity: 0.55;
  line-height: 1.4;
}

@media screen and (max-width: 749px) {
  .bundle-pdp-stats__inner {
    padding: 1.25rem 1rem;
  }

  .bundle-pdp-stats--dividers .bundle-pdp-stats__grid {
    gap: 0;
  }

  .bundle-pdp-stats--dividers .bundle-pdp-stats__item:not(:last-child) {
    border-block-end: 1px solid rgba(0, 0, 0, 0.08);
    padding-block-end: 1.25rem;
    margin-block-end: 1.25rem;
  }

  .bundle-pdp-stats--hide-icon-mobile .bundle-pdp-stats__icon-wrap {
    display: none;
  }

  .bundle-pdp-stats--item-icon-right .bundle-pdp-stats__item,
  .bundle-pdp-stats--item-icon-left .bundle-pdp-stats__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .bundle-pdp-stats--text-center .bundle-pdp-stats__item {
    align-items: center;
  }

  .bundle-pdp-stats--text-right .bundle-pdp-stats__item {
    align-items: flex-end;
  }
}
