/**
 * SureVen WP Custom - Frontend Styles
 */

/* Custom Checkout Field Styling */
#sureven_custom_checkout_field {
  margin: 20px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}

#sureven_custom_checkout_field h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.sureven-custom-field-class textarea {
  width: 100%;
  min-height: 80px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
}

.sureven-custom-field-class textarea:focus {
  border-color: #007cba;
  box-shadow: 0 0 0 1px #007cba;
  outline: none;
}

/* Order Details Display */
.sureven-custom-field-order-details {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-left: 4px solid #007cba;
}

.sureven-custom-field-order-details h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.sureven-custom-field-order-details p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* Email Display */
.sureven-custom-field-email {
  margin: 15px 0;
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.sureven-custom-field-email h3 {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.sureven-custom-field-email p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Product Tab Content */
.sureven-custom-tab-content {
  padding: 20px 0;
  line-height: 1.6;
}

.sureven-custom-tab-content h1,
.sureven-custom-tab-content h2,
.sureven-custom-tab-content h3,
.sureven-custom-tab-content h4,
.sureven-custom-tab-content h5,
.sureven-custom-tab-content h6 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
}

.sureven-custom-tab-content p {
  margin-bottom: 15px;
}

.sureven-custom-tab-content ul,
.sureven-custom-tab-content ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

.sureven-custom-tab-content li {
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #sureven_custom_checkout_field {
    margin: 15px 0;
    padding: 15px;
  }

  #sureven_custom_checkout_field h3 {
    font-size: 16px;
  }

  .sureven-custom-field-class textarea {
    min-height: 60px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .sureven-custom-field-order-details {
    margin: 15px 0;
    padding: 12px;
  }

  .sureven-custom-tab-content {
    padding: 15px 0;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  #sureven_custom_checkout_field {
    background-color: #2a2a2a;
    border-color: #444;
  }

  #sureven_custom_checkout_field h3 {
    color: #fff;
  }

  .sureven-custom-field-class textarea {
    background-color: #333;
    border-color: #555;
    color: #fff;
  }

  .sureven-custom-field-class textarea:focus {
    border-color: #0073aa;
  }

  .sureven-custom-field-order-details {
    background-color: #2a2a2a;
    border-left-color: #0073aa;
  }

  .sureven-custom-field-order-details h3 {
    color: #fff;
  }

  .sureven-custom-field-order-details p {
    color: #ccc;
  }

  .sureven-custom-tab-content h1,
  .sureven-custom-tab-content h2,
  .sureven-custom-tab-content h3,
  .sureven-custom-tab-content h4,
  .sureven-custom-tab-content h5,
  .sureven-custom-tab-content h6 {
    color: #fff;
  }
}
