/**
 * Purchase / subscription option cards.
 */

.ht-purchase-options {
    max-width: 960px;
    margin: 0 auto 32px;
    padding: 20px 0;
}

.ht-purchase-options__intro {
    margin: 0 0 20px;
    color: #444;
}

.ht-purchase-section {
    margin-bottom: 28px;
}

.ht-purchase-section h3 {
    margin: 0 0 16px;
}

.ht-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ht-option-card {
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    background: #fff;
}

.ht-option-card h4 {
    margin: 0 0 10px;
}

.ht-option-description {
    margin: 0 0 10px;
    color: #555;
    font-size: 14px;
}

.ht-option-summary {
    margin: 0 0 12px;
    color: #333;
    font-weight: 500;
}

.ht-option--subscription {
    border-color: #007cba;
}

.ht-option--credits {
    border-color: #666;
}

.ht-option-price {
    font-size: 24px;
    font-weight: bold;
    color: #007cba;
    margin: 0 0 15px;
}

.ht-submission-form-wrapper {
    position: relative;
}

.ht-status-banner {
    margin-bottom: 20px;
    padding: 15px;
    background: #f0f8ff;
    border-left: 4px solid #007cba;
}

.ht-status-active {
    margin: 0;
    color: #0a7a0a;
}

.ht-status-credits {
    margin: 0;
    color: #666;
}

.ht-status-card {
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.ht-status-card--active {
    border-left: 4px solid #0a7a0a;
}

.ht-status-card--credits {
    border-left: 4px solid #007cba;
}

.ht-status-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.ht-status-card h3 {
    margin: 0 0 8px;
}

.ht-status-detail {
    margin: 0 0 12px;
    color: #555;
}

.ht-status-warning {
    margin: 0 0 12px;
    color: #6b4f00;
    font-weight: 600;
}
