/**
 * Coupon Creator Email Styles
 *
 * Combined entry point for all email-related styles.
 * Compiles to css/email.css
 *
 * @since 3.5.0
 */
/**
 * Coupon Creator Email Gate Styles
 *
 * @since 3.5.0
 */
/* Gate Container */
.cctor-email-gate {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  max-width: 400px;
  margin: 20px auto;
  box-sizing: border-box;
}

.cctor-email-gate-inner {
  max-width: 320px;
  margin: 0 auto;
}

/* Title */
.cctor-email-gate-title {
  font-size: 1.25em;
  font-weight: 600;
  color: #212529;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Message */
.cctor-email-gate-message {
  font-size: 0.95em;
  color: #495057;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Status Messages */
.cctor-email-gate-status {
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 0.9em;
}

.cctor-email-gate-status.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.cctor-email-gate-status.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

/* Form */
.cctor-email-gate-form {
  margin: 0;
}

.cctor-email-gate-field {
  margin-bottom: 12px;
}

.cctor-email-gate-input {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cctor-email-gate-input:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
}

.cctor-email-gate-input::placeholder {
  color: #6c757d;
}

/* Terms Checkbox */
.cctor-email-gate-terms {
  margin: 10px 0;
  font-size: 0.85em;
  color: #555;
  text-align: left;
}

.cctor-email-gate-terms label {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  cursor: pointer;
  line-height: 1.4;
}

.cctor-email-gate-terms input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
}

.cctor-email-gate-terms a {
  color: #0073aa;
  text-decoration: underline;
}

.cctor-email-gate-terms a:hover {
  color: #005a87;
}

/* Submit Button */
.cctor-email-gate-submit-wrap {
  margin-bottom: 12px;
}

.cctor-email-gate-submit {
  width: 100%;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #0073aa;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cctor-email-gate-submit:hover {
  background-color: #005a87;
}

.cctor-email-gate-submit:active {
  transform: scale(0.98);
}

.cctor-email-gate-submit:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  transform: none;
}

/* Spinner */
.cctor-email-gate-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: cctor-gate-spin 0.8s linear infinite;
}

@keyframes cctor-gate-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Expiration */
.cctor-email-gate-expiration {
  font-size: 0.85em;
  color: #6c757d;
  margin-top: 8px;
}

/* Success State */
.cctor-email-gate-success {
  padding: 20px;
}

.cctor-email-gate-success-icon {
  width: 50px;
  height: 50px;
  background-color: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 15px;
}

.cctor-email-gate-success-message {
  font-size: 1.1em;
  font-weight: 600;
  color: #28a745;
  margin-bottom: 10px;
}

.cctor-email-gate-success-hint {
  font-size: 0.85em;
  color: #6c757d;
}

/* Responsive */
@media (max-width: 480px) {
  .cctor-email-gate {
    padding: 20px 15px;
    margin: 15px 10px;
  }
  .cctor-email-gate-title {
    font-size: 1.1em;
  }
  .cctor-email-gate-input,
  .cctor-email-gate-submit {
    font-size: 15px;
    padding: 10px 12px;
  }
}
/* Within coupon loop - match coupon styling */
.cctor-coupon-wrap .cctor-email-gate {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/**
 * Coupon Creator Email Delivery Styles
 *
 * Mirrors Email Gate styling for consistent appearance.
 *
 * @since 3.5.0
 */
/* Delivery Container */
.cctor-email-delivery {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  max-width: 400px;
  margin: 20px auto;
  box-sizing: border-box;
}

.cctor-email-delivery-inner {
  max-width: 320px;
  margin: 0 auto;
}

/* Title */
.cctor-email-delivery-title {
  font-size: 1.25em;
  font-weight: 600;
  color: #212529;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Message */
.cctor-email-delivery-message {
  font-size: 0.95em;
  color: #495057;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Status Messages */
.cctor-email-delivery-status {
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 0.9em;
}

.cctor-email-delivery-status.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.cctor-email-delivery-status.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

/* Form */
.cctor-email-delivery-form {
  margin: 0;
}

.cctor-email-delivery-field {
  margin-bottom: 12px;
}

.cctor-email-delivery-input {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cctor-email-delivery-input:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
}

.cctor-email-delivery-input::placeholder {
  color: #6c757d;
}

/* Terms Checkbox */
.cctor-email-delivery-terms {
  margin: 10px 0;
  font-size: 0.85em;
  color: #555;
  text-align: left;
}

.cctor-email-delivery-terms label {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  cursor: pointer;
  line-height: 1.4;
}

.cctor-email-delivery-terms input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
}

.cctor-email-delivery-terms a {
  color: #0073aa;
  text-decoration: underline;
}

.cctor-email-delivery-terms a:hover {
  color: #005a87;
}

/* Submit Button */
.cctor-email-delivery-submit-wrap {
  margin-bottom: 12px;
}

.cctor-email-delivery-submit {
  width: 100%;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #0073aa;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cctor-email-delivery-submit:hover {
  background-color: #005a87;
}

.cctor-email-delivery-submit:active {
  transform: scale(0.98);
}

.cctor-email-delivery-submit:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  transform: none;
}

/* Spinner */
.cctor-email-delivery-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: cctor-delivery-spin 0.8s linear infinite;
}

@keyframes cctor-delivery-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Expiration */
.cctor-email-delivery-expiration {
  font-size: 0.85em;
  color: #6c757d;
  margin-top: 8px;
}

/* Success State */
.cctor-email-delivery-success {
  padding: 20px;
}

.cctor-email-delivery-success-icon {
  width: 50px;
  height: 50px;
  background-color: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 15px;
}

.cctor-email-delivery-success-message {
  font-size: 1.1em;
  font-weight: 600;
  color: #28a745;
  margin-bottom: 10px;
}

.cctor-email-delivery-success-hint {
  font-size: 0.85em;
  color: #6c757d;
}

/* Responsive */
@media (max-width: 480px) {
  .cctor-email-delivery {
    padding: 20px 15px;
    margin: 15px 10px;
  }
  .cctor-email-delivery-title {
    font-size: 1.1em;
  }
  .cctor-email-delivery-input,
  .cctor-email-delivery-submit {
    font-size: 15px;
    padding: 10px 12px;
  }
}
/* Within coupon loop - match coupon styling */
.cctor-coupon-wrap .cctor-email-delivery {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
