/**
 * Destiny Cards - Frontend Styles
 *
 * @package Destiny_Cards
 */

/* Form Wrapper */
.destiny-cards-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5em;
    background: transparent;
}

@media (max-width: 768px) {
    .destiny-cards-form-wrapper {
        padding: 1em;
    }
}

/* Consent Notice */
.destiny-cards-consent-notice {
    background: #f0f7ff;
    border-left: 4px solid #0073aa;
    padding: 1.5em;
    margin-bottom: 2em;
}

.destiny-cards-consent-notice h3 {
    margin-top: 0;
    color: #0073aa;
}

.destiny-cards-consent-notice ul {
    margin: 0.5em 0;
    padding-left: 1.5em;
}

.destiny-cards-privacy-link {
    margin-top: 1em;
    font-size: 0.9em;
}

/* Form Sections */
.destiny-cards-form-section {
    margin-bottom: 1.5em;
}

.destiny-cards-form-section h3 {
    margin: 0 0 1em 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .destiny-cards-form-section h3 {
        font-size: 1em;
        margin-bottom: 0.75em;
    }
}

/* Form Fields */
.destiny-cards-form-field {
    margin-bottom: 1em;
}

.destiny-cards-form-field label {
    display: none; /* Hide labels - use placeholders instead */
}

.destiny-cards-form-field input[type="text"],
.destiny-cards-form-field input[type="email"],
.destiny-cards-form-field input[type="date"] {
    width: 100%;
    padding: 0.85em 1em;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.destiny-cards-form-field input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.destiny-cards-form-field small {
    display: none; /* Hide helper text by default */
}

/* Date field helper text - visible on mobile */
.destiny-cards-date-field .destiny-cards-date-helper {
    display: block;
    color: #666;
    font-size: 0.85em;
    margin-top: 0.25em;
    font-style: italic;
}

/* Date input styling for better mobile UX */
.destiny-cards-date-field input[type="date"] {
    position: relative;
    background: #fff;
    cursor: pointer;
}

/* Make date input look more clickable on mobile */
.destiny-cards-date-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    font-size: 1.2em;
    opacity: 0.8;
}

.destiny-cards-date-field input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

@media (max-width: 768px) {
    .destiny-cards-form-field {
        margin-bottom: 0.75em;
    }

    .destiny-cards-form-field input[type="text"],
    .destiny-cards-form-field input[type="email"],
    .destiny-cards-form-field input[type="date"] {
        padding: 0.75em;
        font-size: 16px; /* Prevents iOS zoom */
    }
}

.destiny-cards-consent-checkbox {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1em;
    border-radius: 4px;
}

.destiny-cards-consent-checkbox label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.destiny-cards-consent-checkbox input[type="checkbox"] {
    margin-right: 0.5em;
    width: auto;
}

/* Submit Button */
.destiny-cards-form-submit {
    text-align: center;
    margin-top: 1.5em;
}

.destiny-cards-submit-btn {
    background: #0073aa;
    color: #fff;
    padding: 1em 3em;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 300px;
}

.destiny-cards-submit-btn:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.destiny-cards-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .destiny-cards-submit-btn {
        font-size: 1em;
        padding: 0.9em 2em;
    }
}

/* Messages */
.destiny-cards-form-message {
    margin-top: 1em;
    padding: 1em;
    border-radius: 4px;
}

.destiny-cards-form-message .success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1em;
    border-radius: 4px;
}

.destiny-cards-form-message .error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1em;
    border-radius: 4px;
}

.destiny-cards-form-loading {
    text-align: center;
    margin-top: 1em;
    color: #666;
}

.destiny-cards-form-loading .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reading Display */
.destiny-cards-reading {
    max-width: 900px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.destiny-cards-reading-header {
    text-align: center;
    margin-bottom: 2em;
    border-bottom: 3px solid #0073aa;
    padding-bottom: 1em;
}

.destiny-cards-reading-header h2 {
    margin: 0;
    color: #0073aa;
}

.destiny-cards-names {
    font-size: 1.2em;
    margin-top: 0.5em;
}

/* Card Sections */
.destiny-cards-reading-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
}

@media (max-width: 768px) {
    .destiny-cards-reading-content {
        grid-template-columns: 1fr;
    }
}

.destiny-cards-card-section {
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.destiny-cards-card-section h3 {
    margin-top: 0;
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 0.5em;
}

.destiny-cards-card-name {
    font-size: 1.5em;
    color: #d32f2f;
    margin: 0.5em 0;
}

.destiny-cards-card-title {
    font-style: italic;
    color: #666;
    margin: 0.5em 0 1em;
}

/* Fields */
.destiny-cards-field {
    margin-bottom: 1.5em;
}

.destiny-cards-field-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5em;
}

.destiny-cards-field-value {
    color: #555;
    line-height: 1.6;
}

.destiny-cards-long-reveal {
    margin-top: 1em;
    line-height: 1.8;
}

/* Reading Footer */
.destiny-cards-reading-footer {
    margin-top: 2em;
    text-align: center;
    border-top: 2px solid #e0e0e0;
    padding-top: 2em;
}

.destiny-cards-expiry-notice {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 1.5em;
}

.destiny-cards-cta-button {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 1em 2.5em;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background 0.3s;
}

.destiny-cards-cta-button:hover {
    background: #b71c1c;
    color: #fff;
}

/* Thank You Page */
.destiny-cards-thankyou {
    max-width: 800px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.destiny-cards-thankyou-header {
    text-align: center;
    background: #d4edda;
    padding: 2em;
    border-radius: 8px;
    margin-bottom: 2em;
}

.destiny-cards-thankyou-header h1 {
    color: #155724;
    margin: 0;
}

.destiny-cards-purchase-details {
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 4px;
    margin-bottom: 2em;
}

.destiny-cards-order-table {
    width: 100%;
    border-collapse: collapse;
}

.destiny-cards-order-table td {
    padding: 0.5em;
    border-bottom: 1px solid #e0e0e0;
}

.destiny-cards-reading-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin: 2em 0;
}

@media (max-width: 768px) {
    .destiny-cards-reading-summary {
        grid-template-columns: 1fr;
    }
}

.destiny-cards-summary-card {
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.destiny-cards-summary-card h4 {
    color: #d32f2f;
    font-size: 1.3em;
}

.destiny-cards-next-steps {
    background: #fff3cd;
    padding: 1.5em;
    border-radius: 4px;
    border: 1px solid #ffc107;
    margin: 2em 0;
}

.destiny-cards-next-steps ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.destiny-cards-next-steps li {
    margin-bottom: 0.75em;
}

.destiny-cards-support {
    text-align: center;
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid #e0e0e0;
}

/* Notices */
.destiny-cards-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1em;
    border-radius: 4px;
    margin: 1em 0;
}

.destiny-cards-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1em;
    border-radius: 4px;
    margin: 1em 0;
}
