/* ═══════════════════════════════════════════════════════════════
   Remco Smart RFQ & BOQ Builder v3.0 Stylesheet
   Reemco Official Brand Identity: Forest Green & Royal Gold
   ═══════════════════════════════════════════════════════════════ */

:root {
    --rc-green-dark: #1a3c2a;
    --rc-green: #2d6a4f;
    --rc-green-light: #40916c;
    --rc-gold: #d4a843;
    --rc-gold-light: #e8c96a;
    --rc-gold-dark: #b8922f;
    --rc-white: #ffffff;
    --rc-off-white: #f8f7f4;
    
    --rfq-primary: #1a3c2a;
    --rfq-primary-hover: #122a1d;
    --rfq-gold: #d4a843;
    --rfq-gold-light: #fef3c7;
    --rfq-border: #e2e8f0;
    --rfq-bg-soft: #f8f7f4;
    --rfq-card-bg: #ffffff;
    --rfq-text: #1a1a1a;
    --rfq-text-muted: #64748b;
    --rfq-radius: 12px;
    --rfq-shadow: 0 4px 20px -2px rgba(26, 60, 42, 0.08);
    --rfq-shadow-lg: 0 12px 32px -4px rgba(26, 60, 42, 0.12);
}

.remco-rfq-page {
    background-color: #f8f7f4;
    color: var(--rfq-text);
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.rfq-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══ HERO SECTION (Official Reemco Identity) ═══ */
.rfq-hero {
    position: relative;
    background: linear-gradient(145deg, #0f261a 0%, #1a3c2a 45%, #234d36 100%);
    color: #ffffff;
    padding: 56px 0 44px;
    overflow: hidden;
    border-bottom: 3px solid #d4a843;
}

.rfq-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.rfq-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.rfq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.28);
    color: #d4a843;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.rfq-badge svg {
    stroke: #d4a843;
}

.rfq-hero-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.rfq-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 820px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.rfq-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.rfq-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 168, 67, 0.25);
    backdrop-filter: blur(8px);
    padding: 10px 22px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s ease;
}

.rfq-stat:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: #d4a843;
    transform: translateY(-2px);
}

.rfq-stat-num {
    font-size: 14px;
    font-weight: 800;
    color: #d4a843;
}

.rfq-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

/* ═══ 2-COLUMN WORKSPACE ═══ */
.rfq-sec {
    padding: 32px 0 60px;
}

.rfq-workspace {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 28px;
    align-items: start;
}

@media (max-width: 1024px) {
    .rfq-workspace {
        grid-template-columns: 1fr;
    }
}

/* ── Panels & Cards ── */
.rfq-panel-card {
    background: var(--rfq-card-bg);
    border-radius: var(--rfq-radius);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--rfq-border);
    box-shadow: var(--rfq-shadow);
}

.rfq-panel-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.rfq-panel-badge {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #1a3c2a;
    color: #d4a843;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.rfq-panel-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a3c2a;
    margin: 0 0 4px;
}

.rfq-panel-desc {
    font-size: 13px;
    color: var(--rfq-text-muted);
    margin: 0;
}

.rfq-badge-count {
    background: rgba(212, 168, 67, 0.12);
    color: #b8922f;
    border: 1px solid rgba(212, 168, 67, 0.3);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

/* ── Form Inputs ── */
.rfq-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 640px) {
    .rfq-form-grid {
        grid-template-columns: 1fr;
    }
}

.rfq-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rfq-field label {
    font-size: 13px;
    font-weight: 700;
    color: #1a3c2a;
}

.rfq-req {
    color: #dc2626;
}

.rfq-opt {
    color: #94a3b8;
    font-weight: 400;
    font-size: 11px;
}

.rfq-input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    color: var(--rfq-text);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

textarea.rfq-input {
    height: auto;
    padding: 10px 14px;
    resize: vertical;
}

.rfq-input:focus {
    outline: none;
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

/* ── Pill Selectors ── */
.rfq-sub-block {
    margin-top: 16px;
}

.rfq-sub-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a3c2a;
    display: block;
    margin-bottom: 8px;
}

.rfq-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rfq-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rfq-pill:hover {
    background: #fdf8eb;
    border-color: #d4a843;
    color: #1a3c2a;
}

.rfq-pill.active {
    background: #1a3c2a;
    color: #ffffff;
    border-color: #1a3c2a;
    box-shadow: 0 2px 8px rgba(26, 60, 42, 0.2);
}

/* ── Copilot Section ── */
.rfq-panel--copilot {
    border: 1px solid #cbd5e1;
    background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
}

.copilot-voice-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1a3c2a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copilot-voice-btn:hover {
    background: #fdf8eb;
    border-color: #d4a843;
}

.copilot-voice-btn.recording {
    background: #fee2e2;
    border-color: #ef4444;
    color: #dc2626;
    animation: pulse 1.5s infinite;
}

.copilot-box {
    margin-bottom: 16px;
}

.copilot-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copilot-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    color: #1a1a1a;
    resize: vertical;
    background: #ffffff;
    box-sizing: border-box;
}

.copilot-textarea:focus {
    outline: none;
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.copilot-gen-btn {
    background: linear-gradient(135deg, #1a3c2a 0%, #2d6a4f 100%);
    color: #ffffff;
    border: 1px solid rgba(212, 168, 67, 0.4);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    transition: all 0.2s ease;
}

.copilot-gen-btn:hover {
    background: #122a1d;
    border-color: #d4a843;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 60, 42, 0.25);
}

.copilot-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(212, 168, 67, 0.1);
    color: #1a3c2a;
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4a843;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.85); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.7; }
}

/* ── In-Step BOQ Dropzone ── */
.rfq-instep-boq {
    margin-top: 14px;
}

.instep-dropzone {
    border: 2px dashed #cbd5e1;
    background: #ffffff;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.instep-dropzone:hover, .instep-dropzone.dragover {
    border-color: #2d6a4f;
    background: rgba(45, 106, 79, 0.04);
}

.instep-dropzone svg {
    color: #2d6a4f;
    flex-shrink: 0;
}

.instep-text strong {
    display: block;
    font-size: 13px;
    color: #1a3c2a;
}

.instep-text span {
    font-size: 11px;
    color: #64748b;
}

.instep-file-badge {
    background: #e2e8f0;
    color: #0f172a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.instep-file-badge button {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
}

/* ── Materials Table ── */
.rfq-table-responsive {
    overflow-x: auto;
    border: 1px solid var(--rfq-border);
    border-radius: 8px;
    background: #ffffff;
    margin-bottom: 12px;
}

.rfq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.rfq-table th {
    background: #fdfbf7;
    color: #1a3c2a;
    font-weight: 700;
    padding: 10px 12px;
    border-bottom: 2px solid var(--rfq-border);
    text-align: right;
    white-space: nowrap;
}

.rfq-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.rfq-table tr:hover {
    background: #fdfbf7;
}

.td-index {
    text-align: center;
    font-weight: 700;
    color: #94a3b8;
    font-size: 12px;
}

.td-autocomplete-cell {
    position: relative;
    min-width: 240px;
}

.mat-sub-spec {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 3px;
}

.td-line-total {
    font-weight: 700;
    color: #1a3c2a;
    white-space: nowrap;
    text-align: center;
}

.rfq-del-row-btn {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.rfq-del-row-btn:hover {
    background: #dc2626;
    color: #ffffff;
}

.rfq-ac-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: var(--rfq-shadow-lg);
    z-index: 50;
    max-height: 220px;
    overflow-y: auto;
    display: none;
}

.rfq-ac-item {
    padding: 8px 12px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s ease;
}

.rfq-ac-item:hover {
    background: #fdf8eb;
}

.rfq-ac-thumb {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 4px;
}

.rfq-ac-meta {
    display: flex;
    flex-direction: column;
}

.rfq-ac-title {
    font-weight: 700;
    font-size: 12px;
    color: #1a3c2a;
}

.rfq-ac-price {
    font-size: 11px;
    color: #b8922f;
    font-weight: 700;
}

.rfq-table-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.rfq-add-btn {
    background: #ffffff;
    border: 1px dashed #2d6a4f;
    color: #1a3c2a;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.rfq-add-btn:hover {
    background: rgba(45, 106, 79, 0.06);
    border-color: #1a3c2a;
}

.rfq-table-hint {
    font-size: 12px;
    color: #64748b;
}

/* ═══ STICKY FINANCIAL SIDEBAR ═══ */
.rfq-side-pane {
    position: sticky;
    top: 24px;
}

.rfq-sticky-card {
    background: #ffffff;
    border-radius: var(--rfq-radius);
    padding: 24px;
    border: 2px solid #e2e8f0;
    box-shadow: var(--rfq-shadow-lg);
}

.sticky-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.sticky-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 168, 67, 0.12);
    color: #b8922f;
    border: 1px solid rgba(212, 168, 67, 0.25);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.rfq-ref-code {
    font-family: monospace;
    font-weight: 800;
    color: #1a3c2a;
    font-size: 13px;
}

.sticky-client-box {
    background: #f8f7f4;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: 12px;
    border: 1px solid #e2e8f0;
}

.sc-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
}

.sc-lbl {
    color: #64748b;
}

.sc-val {
    color: #1a3c2a;
    font-weight: 700;
}

/* Financial Totals */
.sticky-financial-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.fin-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
}

.fin-row strong {
    color: #1a3c2a;
    font-weight: 700;
}

.fin-total-box {
    background: #fdf8eb;
    border: 1px solid #e8c96a;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    margin-top: 6px;
}

.fin-total-label {
    font-size: 12px;
    font-weight: 700;
    color: #1a3c2a;
    display: block;
    margin-bottom: 4px;
}

.fin-total-val {
    font-size: 24px;
    font-weight: 900;
    color: #b8922f;
}

/* ── Primary Submit Button (Reemco Signature Gold CTA) ── */
.rfq-main-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4a843 0%, #b8922f 100%);
    color: #1a3c2a !important;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 15px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.35);
    transition: all 0.25s ease;
}

.rfq-main-submit-btn:hover {
    background: linear-gradient(135deg, #e8c96a 0%, #d4a843 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.45);
}

.btn-inner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.4;
}

.sticky-submit-note {
    font-size: 11px;
    color: #64748b;
    text-align: center;
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ── Post-Submission Success ── */
.sticky-success-box {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.succ-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #15803d;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 8px;
}

.succ-msg {
    font-size: 12px;
    color: #166534;
    margin: 0 0 16px;
    line-height: 1.6;
}

.succ-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.succ-wa-action {
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}

.succ-wa-action:hover {
    background: #1eb954;
    color: #ffffff;
    transform: translateY(-1px);
}

.succ-voucher-action {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1a3c2a;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.succ-voucher-action:hover {
    background: #fdf8eb;
    border-color: #d4a843;
}

/* ═══ VOUCHER MODAL & PRINT STYLES ═══ */
.rfq-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfq-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 38, 26, 0.7);
    backdrop-filter: blur(4px);
}

.rfq-modal-dialog {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 12px;
    max-width: 820px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--rfq-shadow-lg);
    margin: 20px;
}

.rfq-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.rfq-modal-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #1a3c2a;
}

.rfq-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rfq-modal-print-btn {
    background: #1a3c2a;
    color: #d4a843;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.rfq-modal-print-btn:hover {
    background: #122a1d;
}

.rfq-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.rfq-modal-body {
    padding: 24px;
}

/* Voucher Document Design */
.voucher-print-wrap {
    background: #ffffff;
    color: #1a1a1a;
    font-size: 13px;
}

.v-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 2px solid #1a3c2a;
    margin-bottom: 16px;
}

.v-company h2 {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 4px;
    color: #1a3c2a;
}

.v-company span {
    display: block;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
}

.v-company small {
    display: block;
    color: #94a3b8;
    font-size: 11px;
}

.v-meta {
    text-align: left;
    font-size: 12px;
}

.v-ref strong {
    font-family: monospace;
    font-size: 14px;
    color: #1a3c2a;
}

.v-status {
    color: #15803d;
    font-weight: 700;
    margin-top: 4px;
}

.v-client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: #f8f7f4;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}

.v-cg-item span {
    color: #64748b;
    margin-left: 6px;
}

.v-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.v-table th {
    background: #fdfbf7;
    color: #1a3c2a;
    padding: 8px 10px;
    border: 1px solid #cbd5e1;
    font-weight: 700;
    text-align: right;
}

.v-table td {
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
}

.v-totals-box {
    margin-right: auto;
    max-width: 320px;
    margin-bottom: 20px;
    border-top: 1px solid #cbd5e1;
    padding-top: 10px;
}

.v-tot-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
}

.v-tot-grand {
    font-size: 15px;
    font-weight: 800;
    color: #b8922f;
    border-top: 2px solid #1a3c2a;
    margin-top: 6px;
    padding-top: 6px;
}

.v-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
    font-size: 11px;
    color: #64748b;
    line-height: 1.6;
}

.v-footer p {
    margin: 2px 0;
}

/* Toast Notifications */
.rfq-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--rfq-shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.rfq-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.rfq-toast--success {
    background: #15803d;
    color: #ffffff;
}

.rfq-toast--error {
    background: #dc2626;
    color: #ffffff;
}

.rfq-toast--info {
    background: #1a3c2a;
    color: #d4a843;
    border: 1px solid #d4a843;
}

@media print {
    body * {
        visibility: hidden;
    }
    .rfq-modal, .rfq-modal-dialog, .voucher-print-wrap, .voucher-print-wrap * {
        visibility: visible;
    }
    .rfq-modal {
        position: absolute;
        inset: 0;
        background: #ffffff;
    }
    .rfq-modal-backdrop, .rfq-modal-header {
        display: none !important;
    }
    .rfq-modal-dialog {
        box-shadow: none;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
}

/* Table column width refinements for Arabic typography */
.rfq-table .mat-qty {
    width: 80px !important;
    min-width: 75px !important;
    text-align: center !important;
}
.rfq-table .mat-unit {
    width: 120px !important;
    min-width: 110px !important;
    font-size: 12px !important;
}
.rfq-table .mat-price {
    width: 95px !important;
    min-width: 90px !important;
    text-align: center !important;
}
