/* Tchesus Custom Order Form — stylesheet */

.tch-custom-order-wrapper {
    max-width: 680px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.tch-form-header h2 {
    margin-top: 0;
    color: #1a1a1a;
}

.tch-form-header p {
    color: #555;
    margin-bottom: 1.5rem;
}

.tch-field-group {
    margin-bottom: 1.5rem;
}

.tch-field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.tch-field-group input,
.tch-field-group select,
.tch-field-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
}

.tch-field-group input:focus,
.tch-field-group select:focus,
.tch-field-group textarea:focus {
    outline: none;
    border-color: #c0392b;
    box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}

.tch-field-group textarea {
    resize: vertical;
}

.tch-hint {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.3rem;
}

.required {
    color: #c00;
}

.tch-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.tch-btn-primary {
    background: #c0392b;
    color: #fff;
    font-weight: 700;
    transition: background 0.2s;
}

.tch-btn-primary:hover,
.tch-btn-primary:focus {
    background: #a93226;
}

.tch-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.tch-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
}

.tch-response {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.tch-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tch-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.tch-response.loading {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

@media (max-width: 480px) {
    .tch-custom-order-wrapper {
        padding: 1.25rem;
        margin: 1rem;
    }

    .tch-btn {
        width: 100%;
        text-align: center;
    }
}
