/* Shared theme form text / inputs for reviews, order verify, etc. */

.st-txt-primary {
    color: var(--theme-text-primary);
}

.st-txt-muted {
    color: var(--theme-text-muted);
}

.st-txt-secondary {
    color: var(--theme-text-secondary);
}

.st-input-themed {
    background-color: var(--theme-bg-surface);
    color: var(--theme-text-primary);
    border-color: var(--theme-border);
}

.st-border-theme {
    border-color: var(--theme-border);
}

.st-btn-primary-solid {
    background-color: var(--theme-primary);
    color: var(--theme-primary-fg, #fff);
}

.st-upload-dashed {
    border-color: var(--theme-border-subtle, var(--theme-border));
}

.st-icon-muted-soft {
    color: var(--theme-text-muted);
    opacity: 0.6;
}

.st-heading-font {
    font-family: var(--theme-heading-font, 'Inter', sans-serif);
}

.st-link-primary {
    color: var(--theme-text-primary);
    text-decoration: underline;
    font-weight: 500;
}

.st-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-primary);
    color: var(--theme-button-text, #fff);
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.st-cta-btn:hover {
    transform: scale(1.02);
}
