/* TRS Quote System — Frontend Order Page Styles */

.trs-quote-verify-wrap {
    max-width: 680px;
    margin: 0 auto 40px;
    font-family: inherit;
}
.trs-verify-title {
    font-size: 22px;
    color: #2c5f2e;
    margin-bottom: 8px;
}
.trs-verify-desc {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}
.trs-verify-form {
    background: #f8faf8;
    border: 2px solid #2c5f2e;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}
.trs-verify-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.trs-verify-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.trs-verify-row input[type="text"] {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.trs-verify-row input[type="text"]:focus {
    border-color: #2c5f2e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(44,95,46,0.15);
}
.trs-btn {
    background: #2c5f2e;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}
.trs-btn:hover { background: #1e4220; color: #fff; }

.trs-verify-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}
.trs-verify-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.trs-verify-message.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Quote Details Card */
.trs-quote-details {
    background: #fff;
    border: 2px solid #2c5f2e;
    border-radius: 8px;
    padding: 24px;
    margin-top: 16px;
}
.trs-quote-details h4 {
    color: #2c5f2e;
    font-size: 18px;
    margin-bottom: 16px;
}
.trs-quote-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
}
.trs-quote-table th {
    text-align: left;
    padding: 8px 12px;
    background: #f0f7f0;
    color: #2c5f2e;
    font-weight: 700;
    width: 40%;
    border-bottom: 1px solid #ddd;
}
.trs-quote-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}
.trs-total-row th,
.trs-total-row td {
    background: #2c5f2e !important;
    color: #fff !important;
    font-size: 16px;
    border-bottom: none !important;
}
.trs-expiry-note {
    font-size: 12px;
    color: #856404;
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.trs-btn-checkout {
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.trs-checkout-note {
    font-size: 12px;
    color: #777;
    text-align: center;
}
