/* M16 — Pakiety produktów: front */

.m16bundles {
  margin: 30px 0;
}

.m16bundles__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.m16bundle {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 230px;
  gap: 22px;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e4e7de;
  border-radius: 8px;
}

.m16bundle__cover {
  position: relative;
  display: block;
}

.m16bundle__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.m16bundle__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 9px;
  border-radius: 3px;
  background: #93c13d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.m16bundle__name {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
}

.m16bundle__name a {
  color: #253237;
}

.m16bundle__label {
  margin: 0 0 8px;
  font-size: 13px;
  color: #777777;
}

.m16bundle__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.m16bundle__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 112px;
  padding: 6px;
  border: 1px solid #ececec;
  border-radius: 6px;
  color: #444444;
  text-align: center;
}

.m16bundle__item.is-current a {
  border-color: #93c13d;
  box-shadow: inset 0 0 0 1px #93c13d;
}

.m16bundle__item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.m16bundle__item-name {
  display: -webkit-box;
  margin-top: 4px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.35;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.m16bundle__plus {
  font-size: 20px;
  font-weight: 700;
  color: #93c13d;
}

.m16bundle__buy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  text-align: center;
}

.m16bundle__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.m16bundle__regular {
  font-size: 13px;
  color: #888888;
}

.m16bundle__price {
  font-size: 24px;
  font-weight: 700;
  color: #253237;
}

.m16bundle__saving {
  display: inline-block;
  align-self: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: #f2f7e8;
  color: #6f9a2a;
  font-size: 13px;
  font-weight: 600;
}

.m16bundle__form {
  margin: 0;
}

.m16bundle__cart {
  width: 100%;
  white-space: normal;
}

.m16bundle__more {
  font-size: 13px;
  text-decoration: underline;
}

.m16bundle__unavailable {
  color: #c62828;
  font-size: 14px;
}

@media (max-width: 991px) {
  .m16bundle {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .m16bundle__buy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .m16bundle {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .m16bundle__cover {
    max-width: 220px;
    margin: 0 auto;
  }

  .m16bundle__items {
    justify-content: center;
  }

  .m16bundle__item a {
    width: 96px;
  }
}
