.list-vouchers {
  font-size: 0.652vw;
  padding-top: 6em;
}

.list-vouchers__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.list-vouchers__wrapper .voucher-item {
  flex: 0 0 calc(25% - 1.5em);
  box-sizing: border-box;
}

.checkout-notification {
  position: fixed;
  top: 5.5em;
  right: 2em;
  background: var(--primary);
  color: var(--white);
  padding: 1.2em 2em;
  border-radius: 0.5em;
  font-size: 1.4em;
  font-weight: 500;
  z-index: 10000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0.4em 1.2em rgba(var(--rgb-black), 0.2);
}

.checkout-notification.show {
  transform: translateX(0);
  transform: translateY(100%);
  opacity: 1;
}

.discount-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.discount-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: fadeIn 0.2s ease;
  overflow-y: auto;
  max-height: 90vh;
  font-family: system-ui, sans-serif;
}

.discount-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

.discount-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.discount-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 15px;
}

.discount-copy {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.discount-section {
  margin-bottom: 16px;
}

.discount-section h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.discount-section ul {
  margin: 0;
  padding-left: 18px;
}

.discount-section li {
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
  line-height: 1.4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.discount-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.discount-section {
  margin-bottom: 16px;
}

.discount-subtitle {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.discount-code-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.discount-code {
  font-size: 20px;
  font-weight: 500;
}

.discount-copy-icon {
  font-size: 22px;
  color: #007bff;
  cursor: pointer;
  transition: color 0.2s;
}

.discount-copy-icon:hover {
  color: #0056b3;
}

.discount-list {
  margin: 0;
  padding-left: 18px;
  color: #555;
}

.discount-list li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.discount-list b {
  font-weight: 600;
  color: #333;
}

.voucher-item__btn-condition {
  color: #0d6efd;
}