@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.coupon-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.coupon-popup-overlay.show {
  display: flex;
  opacity: 1;
}

.coupon-popup-content {
  background: #F9F9F9;
  border-radius: 12px;
  padding: 30px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 12px 40px rgba(4, 63, 109, 0.15);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.coupon-popup-overlay.show .coupon-popup-content {
  transform: scale(1);
}

.coupon-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  transition: all 0.2s ease;
}
.coupon-popup-close:hover {
  color: #333;
  transform: rotate(90deg);
}

.coupon-popup-header {
  text-align: center;
  margin-bottom: 25px;
}

.coupon-popup-icon {
  font-size: 48px;
  margin-bottom: 12px;
  color: #043F6D;
}

.coupon-popup-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.coupon-popup-subtitle {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.coupon-form {
  margin-top: 20px;
}

.coupon-form-group {
  margin-bottom: 15px;
}

.coupon-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 14px;
}
.coupon-form-label .required {
  color: #EB4878;
  margin-left: 4px;
}

.coupon-form-input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.coupon-form-input:focus {
  outline: none;
  border-color: #043F6D;
  box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
}
.coupon-form-input::-moz-placeholder {
  color: #999;
}
.coupon-form-input::placeholder {
  color: #999;
}

.coupon-form-row {
  display: flex;
  gap: 12px;
}
.coupon-form-row .coupon-form-group {
  flex: 1;
  margin-bottom: 15px;
}

.coupon-submit-btn {
  width: 100%;
  padding: 12px 16px;
  background-color: #043F6D;
  color: #F9F9F9;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}
.coupon-submit-btn:hover:not(:disabled) {
  background-color: #032846;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}
.coupon-submit-btn:active:not(:disabled) {
  transform: translateY(0);
}
.coupon-submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.coupon-message {
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-left: 4px solid;
}
.coupon-message.success {
  background-color: #f0f9ff;
  color: #065f46;
  border-left-color: #10b981;
}
.coupon-message.error {
  background-color: #fef2f2;
  color: #991b1b;
  border-left-color: #ef4444;
}/*# sourceMappingURL=coupon.css.map */