.bundle-voucher-page {
  margin: 0 auto;
  padding: 18px 12px 48px;
}

.bundle-voucher-hero {
  margin: 0 0 26px;
  text-align: center;
}

.bundle-voucher-hero__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.bundle-voucher-hero__text {
  max-width: 680px;
  margin: 0 auto;
  color: #5f6368;
  font-size: 15px;
  line-height: 1.5;
}

.bundle-voucher-section {
  margin: 20px 0;
}

.bundle-voucher-section__head {
  display: flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 0 0 8px;
  border-bottom: 2px solid #165290;
}

.bundle-voucher-section__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.bundle-voucher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bundle-voucher-random-card {
  display: flex;
  min-width: 0;
}

.bundle-voucher-random-card[hidden] {
  display: none !important;
}

.bundle-voucher-random-card > .bundle-voucher-card {
  width: 100%;
}

@media (min-width: 992px) {
  .bundle-voucher-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.bundle-voucher-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: box-shadow .18s ease, transform .18s ease;
}

.bundle-voucher-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .09);
}

.bundle-voucher-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #f6f6f6;
}

.bundle-voucher-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .26s ease;
}

.bundle-voucher-card__image--back {
  opacity: 0;
}

.bundle-voucher-card:hover .bundle-voucher-card__image--back {
  opacity: 1;
}

.bundle-voucher-card__badge {
  display: none !important;
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  max-width: calc(100% - 16px);
  padding: 4px 8px;
  border-radius: 999px;
  background: #d93025;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.bundle-voucher-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.bundle-voucher-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.bundle-voucher-card__items {
  display: none !important;
  margin: 0;
  color: #70757a;
  font-size: 12px;
  line-height: 1.35;
}

.bundle-voucher-card__plus {
  margin: 0 3px;
  color: #b88300;
  font-weight: 800;
}

.bundle-voucher-card__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-top: auto;
}

.bundle-voucher-card__price-final {
  color: #d93025;
  font-size: 17px;
  font-weight: 900;
}

.bundle-voucher-card__price-origin {
  color: #8a8a8a;
  font-size: 13px;
  text-decoration: line-through;
}

.bundle-voucher-card__note {
  min-height: 16px;
  margin: 0;
  color: #188038;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.bundle-voucher-card__note--hint {
  color: #b06000;
}

.bundle-voucher-card__button {
  width: 100%;
  margin: 4px 0 0;
  padding: 9px 8px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: background .16s ease;
}

.bundle-voucher-card__button:hover,
.bundle-voucher-card__button:focus {
  background: #d93025;
}

.bundle-voucher-modal {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: none;
}

.bundle-voucher-modal.is-open {
  display: block;
}

.bundle-voucher-modal__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, .58);
  cursor: pointer;
}

.bundle-voucher-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 94vw);
  max-height: 92vh;
  margin: 4vh auto;
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.bundle-voucher-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #555;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.bundle-voucher-modal__title {
  margin: 0 38px 16px 0;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
}

.bundle-voucher-modal__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 560px) {
  .bundle-voucher-modal__products {
    grid-template-columns: 1fr;
  }
  .bundle-voucher-section {
    margin: 10px 0;
  }
}

.bundle-voucher-modal__product {
  min-width: 0;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 10px;
}

.bundle-voucher-modal__media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0 0 9px;
  border-radius: 8px;
  background: #f6f6f6;
}

.bundle-voucher-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-voucher-modal__product-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.bundle-voucher-modal__product-price {
  margin: 0 0 8px;
  color: #d93025;
  font-size: 14px;
  font-weight: 800;
}

.bundle-voucher-modal__option {
  margin: 0 0 10px;
}

.bundle-voucher-modal__option-label {
  margin: 0 0 5px;
  color: #555;
  font-size: 12px;
  font-weight: 800;
}

.bundle-voucher-modal__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bundle-voucher-modal__option-button {
  padding: 6px 10px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  background: #fff;
  color: #222;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.2;
}

.bundle-voucher-modal__option-button.is-selected {
  border-color: #111;
  background: #111;
  color: #fff;
}

.bundle-voucher-modal__option-button.is-disabled {
  opacity: .42;
  cursor: not-allowed;
  text-decoration: line-through;
}

.bundle-voucher-modal__stock {
  min-height: 16px;
  color: #d93025;
  font-size: 12px;
  line-height: 1.35;
}

.bundle-voucher-modal__summary {
  margin: 16px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid #ececec;
}

.bundle-voucher-modal__summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 5px;
  font-size: 14px;
}

.bundle-voucher-modal__origin {
  color: #8a8a8a;
  text-decoration: line-through;
}

.bundle-voucher-modal__summary-row--final {
  font-size: 18px;
  font-weight: 900;
}

.bundle-voucher-modal__summary-row--final span:last-child {
  color: #d93025;
}

.bundle-voucher-modal__voucher-note {
  min-height: 18px;
  margin: 4px 0 0;
  color: #188038;
  font-size: 12px;
  font-weight: 800;
}

.bundle-voucher-modal__add {
  width: 100%;
  margin: 14px 0 0;
  padding: 13px 12px;
  border: 0;
  border-radius: 8px;
  background: #d93025;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
}

.bundle-voucher-modal__add:disabled {
  background: #c8c8c8;
  cursor: not-allowed;
}

.bundle-voucher-modal__message {
  min-height: 18px;
  margin: 8px 0 0;
  color: #555;
  font-size: 13px;
  text-align: center;
}

body.bundle-voucher-modal-open {
  overflow: hidden;
}

.bundle-voucher-section .btn-icon{
  margin: 1em auto;
  display: table;
}