.bpk-pack-box {
  margin-top: 24px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(9, 20, 17, 0.08);
}

.bpk-pack-discount {
  margin: 10px 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f5faf7;
  border: 1px solid #cde5d8;
  color: #0b6a5b;
  display: grid;
  gap: 4px;
}

.bpk-pack-discount strong,
.bpk-pack-discount span {
  font-weight: 700;
}

.bpk-pack-discount small {
  color: #567065;
}

.bpk-pack-discount--loop {
  margin: 10px 0 0;
  padding: 8px 12px;
  display: inline-flex;
  width: auto;
}

.bpk-pack-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bpk-pack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8f9f7;
}

.bpk-open-modal {
  border: 1px solid #d9dee6;
  border-radius: 999px;
  background: #fff;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.bpk-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.bpk-modal.is-open {
  display: block;
}

.bpk-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 17, 0.45);
}

.bpk-modal__content {
  position: relative;
  width: min(760px, 92vw);
  max-height: 88vh;
  overflow: auto;
  margin: 5vh auto 0;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  z-index: 1;
}

.bpk-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f1f2f4;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.bpk-modal__image img {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  margin: 12px 0 18px;
}

body.bpk-modal-open {
  overflow: hidden;
}
