.oly-voucher-empty {
  max-width: 430px;
  margin: 16px auto;
  padding: 18px;
  border-radius: 18px;
  background: #fbf5ff;
  color: #4c1d95;
  text-align: center;
  font-size: 14px;
}

.oly-voucher-shell {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oly-voucher-track-wrap {
  overflow: hidden;
  border-radius: 26px;
}

.oly-voucher-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.oly-voucher-slide {
  min-width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.oly-voucher-card {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(153, 35, 250, 0.12);
}

.oly-voucher-img,
.oly-voucher-placeholder {
  width: 100%;
  height: 245px;
  display: block;
}

.oly-voucher-img {
  object-fit: cover;
}

.oly-voucher-placeholder {
  background: linear-gradient(135deg, #9923fa, #f0c4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 26px;
  box-sizing: border-box;
}

.oly-voucher-placeholder span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.oly-voucher-content {
  padding: 18px 18px 20px;
}

.oly-voucher-label {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #fbf5ff;
  color: #9923fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.oly-voucher-content h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 850;
}

.oly-voucher-content p {
  margin: 0 0 16px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.oly-voucher-benefit-text {
  margin: 0 0 16px;
  color: #1d4ed8;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
  white-space: normal;
}

.oly-voucher-benefit-text br {
  display: block;
  content: "";
  line-height: 1.25;
}

.oly-voucher-details-btn,
.oly-voucher-redeem-link {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #9923fa;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(153, 35, 250, 0.28);
}

.oly-voucher-details-btn:active,
.oly-voucher-redeem-link:active {
  transform: translateY(1px);
}

.oly-voucher-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 4px 2px;
}

.oly-voucher-nav {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fbf5ff;
  color: #9923fa;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.oly-voucher-dots {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.oly-voucher-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #d8b4fe;
  cursor: pointer;
}

.oly-voucher-dot.active {
  width: 22px;
  border-radius: 999px;
  background: #9923fa;
}

.oly-voucher-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: flex-end;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oly-voucher-modal.is-open {
  display: flex;
}

.oly-voucher-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.oly-voucher-modal-panel {
  position: relative;
  width: 100%;
  max-width: 430px;
  max-height: 92vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -16px 40px rgba(15, 23, 42, 0.25);
  -webkit-overflow-scrolling: touch;
  animation: olyVoucherUp 220ms ease-out;
}

@keyframes olyVoucherUp {
  from { transform: translateY(24px); opacity: 0.7; }
  to { transform: translateY(0); opacity: 1; }
}

.oly-voucher-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.oly-voucher-modal-image-wrap {
  width: 100%;
  min-height: 170px;
  background: #fbf5ff;
}

.oly-voucher-modal-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.oly-voucher-modal-body {
  padding: 20px 18px 26px;
}

.oly-voucher-modal-title {
  margin: 0 0 10px;
  color: #111827;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 850;
}

.oly-voucher-modal-description {
  color: #1d4ed8;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 12px;
  font-weight: 850;
  white-space: pre-line;
}

.oly-voucher-terms-box {
  margin: 14px 0 18px;
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.oly-voucher-terms-box h4 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 850;
}

.oly-voucher-modal-terms {
  max-height: 230px;
  overflow-y: auto;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-line;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

.oly-voucher-modal-terms p,
.oly-voucher-modal-description p {
  margin: 0 0 8px;
}

body.oly-voucher-modal-lock {
  overflow: hidden;
}

@media (min-width: 768px) {
  .oly-mobile-only {
    max-width: 430px;
  }

  .oly-voucher-modal {
    align-items: center;
  }

  .oly-voucher-modal-panel {
    border-radius: 28px;
    max-height: 88vh;
  }
}

@media (max-width: 380px) {
  .oly-voucher-img,
  .oly-voucher-placeholder {
    height: 220px;
  }
  .oly-voucher-content h3 {
    font-size: 19px;
  }
}

.oly-voucher-no-promo {
  min-height: 150px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(153, 35, 250, 0.15);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.oly-voucher-no-promo strong {
  display: block;
  color: #111827;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.15;
}

.oly-voucher-no-promo span {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.4;
}
