/* Main Quote Button Styles */
.rfq-add-to-quote-button {
    display: inline-block;
    background: #007cba;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    line-height: 1.5;
}

.rfq-add-to-quote-button:hover {
    background: #005a87;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.rfq-add-to-quote-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.rfq-button-text {
    display: inline-block;
}

.rfq-loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: rfq-spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes rfq-spin {
    to { transform: rotate(360deg); }
}

/* Button Variations */
.rfq-button-outline {
    background: transparent;
    border: 2px solid #007cba;
    color: #007cba;
}

.rfq-button-outline:hover {
    background: #007cba;
    color: #fff;
}

.rfq-button-small {
    padding: 8px 16px;
    font-size: 12px;
}

.rfq-button-large {
    padding: 16px 32px;
    font-size: 16px;
}


/* Quote Page */
.rfq-page-header {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.rfq-page-title {
    margin: 0 0 10px 0;
    color: #333;
}

.rfq-page-description {
    color: #666;
    margin: 0;
}

.rfq-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.rfq-items-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}

.rfq-items-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.rfq-totals-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.rfq-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.rfq-totals-row:last-child {
    border-bottom: none;
    font-size: 18px;
    font-weight: 600;
    color: #007cba;
}

/* Quote Form */
.rfq-form-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.rfq-form-title {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
}

.rfq-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.rfq-form-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .rfq-form-col-half {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.rfq-form-field {
    margin-bottom: 20px;
}

.rfq-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.rfq-form-label .required {
    color: #dc3545;
}

.rfq-form-input,
.rfq-form-textarea,
.rfq-form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.rfq-form-input:focus,
.rfq-form-textarea:focus,
.rfq-form-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.rfq-form-field.has-error .rfq-form-input,
.rfq-form-field.has-error .rfq-form-textarea,
.rfq-form-field.has-error .rfq-form-select {
    border-color: #dc3545;
}

.rfq-field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.rfq-form-checkbox,
.rfq-form-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rfq-form-checkbox input,
.rfq-form-radio input {
    margin: 0;
}

.rfq-form-file {
    position: relative;
}

.rfq-file-input {
    width: 100%;
    height: 120px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rfq-file-input:hover {
    border-color: #007cba;
    background: #f8f9fa;
}

.rfq-file-input i {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

.rfq-file-input span {
    color: #666;
    font-size: 14px;
}

.rfq-file-input input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.rfq-form-submit {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rfq-form-submit:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.rfq-form-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Notifications */
.rfq-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.rfq-notification {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    margin-bottom: 10px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rfq-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.rfq-notification-success {
    border-left: 4px solid #28a745;
}

.rfq-notification-error {
    border-left: 4px solid #dc3545;
}

.rfq-notification-info {
    border-left: 4px solid #17a2b8;
}

.rfq-notification-content {
    flex: 1;
    padding-right: 10px;
}

.rfq-notification-close {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0;
}

.rfq-notification-close:hover {
    color: #333;
}

/* Loading States */
.rfq-global-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfq-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 124, 186, 0.3);
    border-radius: 50%;
    border-top-color: #007cba;
    animation: rfq-spin 1s ease-in-out infinite;
}

/* Empty States */
.rfq-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.rfq-empty-icon {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.rfq-empty-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.rfq-empty-description {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rfq-sidebar {
        width: 100%;
        right: -100%;
    }

    .rfq-form-row {
        margin: 0;
    }

    .rfq-form-col {
        padding: 0;
    }

    .rfq-items-table {
        display: block;
        overflow-x: auto;
    }

    .rfq-notification {
        min-width: 280px;
        max-width: 280px;
    }
}


/* Price replacement */
.rfq-price-hidden {
    color: #666;
    font-style: italic;
}


/* Print styles */
@media print {
    .rfq-sidebar,
    .rfq-mini-quote-toggle,
    .rfq-add-to-quote-button {
        display: none !important;
    }
}

/* Professional Quote Cart Styles */
.rfq-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.rfq-page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f1;
}

.rfq-page-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #1d2327;
    margin-bottom: 10px;
}

.rfq-page-subtitle {
    font-size: 1.1em;
    color: #646970;
    margin: 0;
}

/* Cart Container */
.rfq-cart-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 40px;
}

.rfq-items-table {
    width: 100%;
    border-collapse: collapse;
}

.rfq-items-table th {
    background: #f8f9fa;
    color: #1d2327;
    font-weight: 600;
    padding: 20px;
    text-align: left;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #dcdcde;
}

.rfq-items-table td {
    padding: 24px 20px;
    border-bottom: 1px solid #f0f0f1;
    vertical-align: middle;
}

/* Product Column */
.rfq-product-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rfq-product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rfq-product-name {
    display: block;
    font-weight: 600;
    color: #2271b1;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 5px;
}

.rfq-product-name:hover {
    color: #135e96;
}

.rfq-item-meta {
    font-size: 13px;
    color: #646970;
}

.rfq-meta-item {
    display: block;
    margin-top: 2px;
}

/* Quantity Control */
.rfq-quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    width: fit-content;
    overflow: hidden;
}

.rfq-qty-btn {
    background: #f8f9fa;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 16px;
    color: #1d2327;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfq-qty-btn:hover {
    background: #e5e5e5;
}

.rfq-qty-input {
    width: 50px;
    height: 36px;
    border: none;
    border-left: 1px solid #dcdcde;
    border-right: 1px solid #dcdcde;
    text-align: center;
    font-weight: 600;
    -moz-appearance: textfield;
    appearance: textfield;
}

.rfq-qty-input::-webkit-outer-spin-button,
.rfq-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove Button */
.rfq-remove-btn {
    background: transparent;
    border: none;
    color: #d63638;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

.rfq-remove-btn:hover {
    background: #fbeaea;
}

/* Totals Section */
.rfq-cart-totals {
    background: #fbfbfb;
    padding: 30px;
    border-top: 1px solid #dcdcde;
}

.rfq-total-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #646970;
}

.rfq-total-row.rfq-grand-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dcdcde;
    font-size: 20px;
    font-weight: 700;
    color: #1d2327;
}

.rfq-total-value {
    min-width: 100px;
    text-align: right;
}

/* Cart Actions */
.rfq-cart-actions {
    padding: 25px 30px;
    background: #fff;
    border-top: 1px solid #f0f0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rfq-btn-secondary {
    background: transparent;
    color: #646970;
    border: 1px solid #dcdcde;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.rfq-btn-secondary:hover {
    border-color: #646970;
    color: #1d2327;
}

.rfq-btn-primary {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    font-size: 16px;
}

.rfq-btn-primary:hover {
    background: #135e96;
    color: #fff;
}

/* Empty State */
.rfq-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.rfq-empty-icon {
    font-size: 64px;
    color: #dcdcde;
    margin-bottom: 20px;
}

.rfq-empty-icon .dashicons {
    width: 64px;
    height: 64px;
    font-size: 64px;
}

.rfq-empty-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d2327;
    margin-bottom: 10px;
}

.rfq-empty-text {
    font-size: 16px;
    color: #646970;
    margin-bottom: 30px;
}

/* Quote Request Form */
.rfq-quote-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.rfq-form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d2327;
    border-bottom: 2px solid #2271b1;
    display: inline-block;
    padding-bottom: 5px;
}

.rfq-form-description {
    color: #646970;
    margin-bottom: 30px;
}

.rfq-form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.rfq-form-group {
    margin-bottom: 24px;
}

.rfq-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d2327;
}

.rfq-form-group label .required {
    color: #d63638;
}

.rfq-input,
.rfq-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.rfq-input:focus,
.rfq-textarea:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

.rfq-form-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rfq-submit-btn {
    padding: 14px 40px;
    font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .rfq-form-row-half {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rfq-th-price,
    .rfq-td-price,
    .rfq-th-product {
        display: none;
    }

    .rfq-cart-actions {
        flex-direction: column-reverse;
    }

    .rfq-cart-actions a {
        width: 100%;
        text-align: center;
    }

    .rfq-product-details {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Sidebar Mini Quote Items */
.rfq-mini-quote-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rfq-mini-quote-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.rfq-mini-quote-item:last-child {
    border-bottom: none;
}

.rfq-mini-item-thumbnail {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f1f1f1;
}

.rfq-mini-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rfq-mini-item-details {
    flex: 1;
    padding-right: 20px;
}

.rfq-mini-item-name {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    text-decoration: none;
    line-height: 1.3;
}

.rfq-mini-item-name:hover {
    color: #007cba;
}

.rfq-mini-item-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.rfq-mini-item-meta .rfq-meta {
    display: block;
    margin-bottom: 2px;
}

.rfq-mini-item-price-qty {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rfq-mini-item-price-qty .qty {
    color: #888;
}

.rfq-mini-item-price-qty .price {
    font-weight: 600;
}

.rfq-remove-item {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.2s;
}

.rfq-remove-item:hover {
    color: #dc3545;
    background: #fff0f0;
}

.rfq-mini-empty {
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-style: italic;
}

/* ----------------------------------------------------------------
    My Quotes - Professional UI
---------------------------------------------------------------- */

.rfq-my-account-container {
    max-width: 1200px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.rfq-page-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 20px;
}

.rfq-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rfq-header-icon {
    background: #eef2ff;
    color: #4f46e5;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.rfq-header-text h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #111827 !important;
    line-height: 1.2;
}

.rfq-header-text p {
    margin: 5px 0 0;
    color: #6b7280;
    font-size: 15px;
}

/* Empty State */
.rfq-empty-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.rfq-empty-illustration {
    color: #d1d5db;
    margin-bottom: 20px;
}

.rfq-empty-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 10px;
}

.rfq-empty-card p {
    color: #6b7280;
    max-width: 400px;
    margin: 0 auto 25px;
}

.rfq-primary-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #4f46e5;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
}

.rfq-primary-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

/* Quotes Card Table */
.rfq-quotes-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
}

.rfq-table-responsive {
    width: 100%;
    overflow-x: auto;
}

.rfq-pro-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
}

.rfq-pro-table th {
    background: #f9fafb !important;
    padding: 16px 20px !important;
    text-align: left !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #4b5563 !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.rfq-table-row {
    transition: background 0.15s;
}

.rfq-table-row:hover {
    background: #fbfcfe;
}

.rfq-pro-table td {
    padding: 20px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #f3f4f6 !important;
    color: #1f2937 !important;
    font-size: 15px !important;
}

.rfq-ref-link {
    font-weight: 600 !important;
    color: #4f46e5 !important;
    text-decoration: none !important;
}

.rfq-ref-link:hover {
    text-decoration: underline !important;
}

.rfq-date-text {
    color: #6b7280;
}

.rfq-price-text {
    font-weight: 600;
    color: #111827;
}

/* Status Badges */
.rfq-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.rfq-status-new { background: #eff6ff !important; color: #1e40af !important; }
.rfq-status-pending { background: #fff7ed !important; color: #9a3412 !important; }
.rfq-status-approved { background: #f0fdf4 !important; color: #166534 !important; }
.rfq-status-rejected { background: #fef2f2 !important; color: #991b1b !important; }
.rfq-status-expired { background: #f3f4f6 !important; color: #374151 !important; }
.rfq-status-converted { background: #faf5ff !important; color: #6b21a8 !important; }

/* Actions */
.rfq-text-right { text-align: right !important; }

.rfq-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px;
    color: #374151 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.rfq-action-link:hover {
    border-color: #4f46e5 !important;
    color: #4f46e5 !important;
    background: #f5f3ff;
}

/* Pagination */
.rfq-pagination-container {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.rfq-pagination-info {
    font-size: 14px;
    color: #6b7280;
}

.rfq-pro-pagination {
    display: flex;
    gap: 10px;
}

.rfq-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #d1d5db !important;
    border-radius: 8px;
    color: #374151 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s;
}

.rfq-pagination-btn:hover {
    color: #4f46e5 !important;
}

/* Quote Details Specific */
.rfq-details-container {
    max-width: 1200px;
    margin: 20px auto;
}

.rfq-details-header {
    margin-bottom: 30px;
}

.rfq-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280 !important;
    text-decoration: none !important;
    font-size: 14px;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.rfq-back-link:hover {
    color: #4f46e5 !important;
}

.rfq-details-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.rfq-title-group h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    color: #111827;
}

.rfq-meta-info {
    margin: 8px 0 0;
    color: #6b7280;
    font-size: 15px;
}

.rfq-badge.rfq-large {
    padding: 6px 16px;
    font-size: 14px;
}

.rfq-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

@media (max-width: 991px) {
    .rfq-details-grid {
        grid-template-columns: 1fr;
    }
}

.rfq-pro-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.rfq-card-header {
    padding: 20px 24px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.rfq-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.rfq-card-content {
    padding: 24px;
}

.rfq-product-info {
    display: flex;
    flex-direction: column;
}

.rfq-product-name {
    font-weight: 600;
    color: #111827;
}

.rfq-product-sku {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.rfq-grand-total {
    font-size: 20px;
    font-weight: 800;
    color: #4f46e5 !important;
}

.rfq-info-block label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.rfq-info-block p {
    margin: 0 0 5px;
    color: #374151;
}

.rfq-text-center { text-align: center !important; }

/* Quote Thank You Specific */
.rfq-thankyou-container {
    max-width: 800px;
    margin: 40px auto;
}

.rfq-thankyou-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.rfq-success-illustration {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.rfq-thankyou-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.rfq-thankyou-content p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.rfq-ref-box {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    padding: 15px 30px;
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.rfq-ref-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.rfq-ref-value {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
}

.rfq-thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.rfq-secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #d1d5db;
    color: #374151 !important;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
}

.rfq-secondary-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5 !important;
    background: #f9fafb;
}

@media (max-width: 640px) {
    .rfq-thankyou-actions {
        flex-direction: column;
    }
    .rfq-thankyou-actions a {
        width: 100%;
    }
}

/* Quote List - Professional Page UI */
.rfq-pro-page-container {
    max-width: 1200px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.rfq-pro-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 30px;
}

.rfq-header-icon-main {
    background: #4f46e5;
    color: #fff;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.rfq-header-text-main h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    color: #111827 !important;
}

.rfq-header-text-main p {
    margin: 8px 0 0;
    font-size: 16px;
    color: #6b7280;
}

.rfq-pro-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .rfq-pro-grid {
        grid-template-columns: 1fr;
    }
}

.rfq-pro-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 24px;
    margin-bottom: 32px;
}

.rfq-pro-card.no-padding {
    padding: 0;
}

.rfq-pro-card.no-padding .rfq-card-header {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.rfq-pro-sidebar {
    min-width: 0;
}

.rfq-card-header {
    padding: 20px 24px;
    background: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
}

.rfq-card-header h3 {
    margin: 0 !important;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rfq-card-content {
    padding: 24px;
}

.rfq-item-count-badge {
    background: #eef2ff;
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.rfq-pro-table {
    width: 100%;
    border-collapse: collapse;
}

.rfq-pro-item-row td {
    padding: 24px 20px !important;
}

.rfq-pro-product-bundle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rfq-pro-thumb img {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    object-fit: cover;
}

.rfq-pro-info {
    display: flex;
    flex-direction: column;
}

.rfq-pro-name {
    font-weight: 700;
    color: #111827 !important;
    text-decoration: none !important;
    font-size: 16px;
    margin-bottom: 4px;
}

.rfq-pro-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.rfq-pro-meta-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
}

.rfq-pro-qty-control {
    display: inline-flex;
    align-items: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 4px;
}

.rfq-pro-qty-control .rfq-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    color: #4b5563;
    transition: all 0.2s;
}

.rfq-pro-qty-control .rfq-qty-btn:hover {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
}

.rfq-pro-input {
    width: 50px !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    font-weight: 700 !important;
    color: #111827 !important;
    padding: 0 !important;
    margin: 0 5px !important;
    box-shadow: none !important;
}

.rfq-pro-remove-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.rfq-pro-remove-btn:hover {
    color: #ef4444;
    background: #fef2f2;
}

.rfq-weight-semibold { font-weight: 600; }
.rfq-weight-bold { font-weight: 700; }
.color-primary { color: #4f46e5 !important; }

/* Sidebar Summary */
.rfq-sticky-card {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.rfq-pro-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
}

.rfq-pro-summary-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 16px 0;
}

.rfq-grand-total-row {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid #f3f4f6;
}

.rfq-grand-total-row .rfq-total-label {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.rfq-grand-total-row .rfq-total-value {
    font-size: 28px;
    font-weight: 900;
    color: #4f46e5 !important;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.rfq-pro-summary-note {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    background: #f0f9ff;
    padding: 16px;
    border-radius: 12px;
    color: #0369a1;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid #e0f2fe;
}

.rfq-pro-summary-note svg {
    flex-shrink: 0;
    color: #0ea5e9;
    margin-top: 2px;
}

.rfq-card-footer {
    padding: 20px 24px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.rfq-pro-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151 !important;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.rfq-pro-secondary-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111827 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rfq-pro-secondary-btn:active {
    transform: translateY(0);
}

.full-width { width: 100%; }

/* Form UI Tweaks */
#rfq-form-section h3 { margin-top: 0; }
.rfq-form-field { margin-bottom: 20px; }
.rfq-form-field label { display: block; margin-bottom: 8px; font-weight: 600; }
.rfq-form-field input[type="text"],
.rfq-form-field input[type="email"],
.rfq-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
}

/* Empty State Pro */
.rfq-pro-empty-card {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 20px;
    border: 2px dashed #e5e7eb;
}

.rfq-empty-illustration-pro {
    color: #d1d5db;
    margin-bottom: 30px;
}

.rfq-pro-empty-card h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 15px;
}

.rfq-pro-empty-card p {
    font-size: 18px;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto 30px;
}

.rfq-pro-primary-btn.large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Professional Form Design System */
.rfq-pro-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    padding: 32px;
    margin-top: 24px;
}

.rfq-form-premium-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.rfq-form-icon-badge {
    background: #4f46e5;
    color: #ffffff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.rfq-pro-form-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 4px 0 !important;
}

.rfq-pro-form-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0 !important;
}

.rfq-pro-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 640px) {
    .rfq-pro-form-grid {
        grid-template-columns: 1fr;
    }
}

.rfq-form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rfq-form-field-group.full-width {
    grid-column: span 2;
}

@media (max-width: 640px) {
    .rfq-form-field-group.full-width {
        grid-column: span 1;
    }
}

.rfq-pro-label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.rfq-input-with-icon,
.rfq-textarea-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.rfq-field-icon {
    position: absolute;
    left: 14px;
    color: #9ca3af;
    pointer-events: none;
    transition: color 0.2s;
}

.rfq-field-icon.textarea-icon {
    top: 14px;
}

.rfq-pro-input,
.rfq-pro-textarea {
    width: 100% !important;
    padding: 12px 14px 12px 42px !important;
    background: #f9fafb !important;
    border: 1px solid #d1d5db !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    color: #111827 !important;
    transition: all 0.2s !important;
    outline: none !important;
}

.rfq-pro-input:focus,
.rfq-pro-textarea:focus {
    background: #ffffff !important;
    border-color: #4f46e5 !important;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1) !important;
    color: #111827 !important;
}

.rfq-pro-input:focus + .rfq-field-icon,
.rfq-input-with-icon:focus-within .rfq-field-icon,
.rfq-textarea-with-icon:focus-within .rfq-field-icon {
    color: #4f46e5;
}

/* Attachment UI */
.rfq-pro-file-upload-zone {
    position: relative;
    min-height: 120px;
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 24px;
}

.rfq-pro-file-upload-zone:hover,
.rfq-pro-file-upload-zone.dragover {
    background: #f0fdf4;
    border-color: #22c55e;
}

.rfq-file-input-hidden {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.rfq-file-upload-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #6b7280;
    pointer-events: none;
}

.rfq-file-upload-ui svg {
    color: #9ca3af;
    transition: color 0.2s;
}

.rfq-pro-file-upload-zone:hover .rfq-file-upload-ui svg,
.rfq-pro-file-upload-zone.dragover .rfq-file-upload-ui svg {
    color: #22c55e;
}

.rfq-upload-text {
    font-size: 14px;
    font-weight: 500;
}

.rfq-file-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    width: 100%;
    margin-top: 20px;
}

.rfq-file-preview-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.rfq-file-preview-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.rfq-file-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
}

.rfq-file-name {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rfq-file-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid #fff;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.rfq-file-remove:hover {
    transform: scale(1.1);
    background: #dc2626;
}

.rfq-form-footer-actions {
    margin-top: 32px;
}

.rfq-submit-btn-full {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 28px !important;
    background: #4f46e5 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.rfq-submit-btn-full:hover {
    background: #4338ca !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25) !important;
}

.rfq-submit-btn-full:active {
    transform: translateY(0) !important;
}

.rfq-submit-btn-full .rfq-btn-icon {
    transition: transform 0.3s ease;
}

.rfq-submit-btn-full:hover .rfq-btn-icon {
    transform: translate(3px, -2px);
}

/* Row-level Loading States */
.rfq-pro-item-row {
    position: relative;
    transition: opacity 0.3s ease;
}

.rfq-relative {
    position: relative;
}

.rfq-pro-item-row.updating {
    opacity: 0.5;
    pointer-events: none;
}

.rfq-row-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 10;
}

.rfq-pro-item-row.updating .rfq-row-loader {
    display: block;
}

.rfq-mini-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(79, 70, 229, 0.1);
    border-top: 2px solid #4f46e5;
    border-radius: 50%;
    animation: rfq-spin 0.8s linear infinite;
}

@keyframes rfq-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Messages */
.rfq-form-message-container {
    margin-top: 20px;
}

.rfq-form-msg {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.rfq-form-msg.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.rfq-form-msg.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* Final Refinements for Quote List */
.rfq-pro-header.refine-header {
    border: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 50px !important;
    justify-content: space-between !important;
    display: flex !important;
}

.rfq-header-content-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.rfq-header-icon-main.glow {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px rgba(79, 70, 229, 0.2); }
    50% { box-shadow: 0 0 25px rgba(79, 70, 229, 0.5); }
    100% { box-shadow: 0 0 10px rgba(79, 70, 229, 0.2); }
}

.rfq-main-title {
    font-size: 38px !important;
    letter-spacing: -0.02em;
    margin-bottom: 8px !important;
    color: #111827 !important;
}

.rfq-main-subtitle {
    font-size: 16px !important;
    color: #4b5563 !important;
    max-width: 600px;
}

.pill-btn {
    border-radius: 9999px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    gap: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.rfq-submit-btn-full .rfq-spinner {
    width: 20px;
    height: 20px;
    border-width: 2px;
    margin-left: 10px;
    display: none;
}

.rfq-submit-btn-full.loading .rfq-spinner {
    display: inline-block;
}

.rfq-submit-btn-full.loading .rfq-btn-icon {
    display: none;
}

/* Responsive Mobile Optimizations */
@media screen and (max-width: 1024px) {
    .rfq-pro-page-container {
        padding: 0 20px;
        margin: 20px auto;
    }
}

@media screen and (max-width: 768px) {
    .rfq-pro-header.refine-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px !important;
    }

    .rfq-header-content-wrapper {
        gap: 16px;
    }

    .rfq-main-title {
        font-size: 28px !important;
    }

    .rfq-header-icon-main {
        width: 50px;
        height: 50px;
    }

    /* Stackable Table Strategy */
    .rfq-pro-table thead {
        display: none; /* Hide headers on mobile */
    }

    .rfq-pro-table,
    .rfq-pro-table tbody,
    .rfq-pro-table tr,
    .rfq-pro-table td {
        display: block;
        width: 100%;
    }

    .rfq-pro-table tr,
    .rfq-table-row,
    .rfq-item-row {
        margin-bottom: 24px;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 16px;
        background: #fff;
        position: relative;
    }

    .rfq-pro-table tfoot tr,
    .rfq-footer-row {
        background: #f9fafb !important;
        border: 2px solid #4f46e5 !important;
    }

    .rfq-footer-row th {
        display: none;
    }

    .rfq-footer-row td:before {
        content: "Grand Total";
        font-size: 14px;
        color: #111827;
    }

    .rfq-grand-total {
        font-size: 20px !important;
        color: #4f46e5 !important;
    }

    .rfq-pro-item-row td,
    .rfq-table-row td,
    .rfq-item-row td {
        padding: 10px 0 !important;
        text-align: left !important;
        border: none !important;
    }

    .rfq-pro-item-row td:before,
    .rfq-table-row td:before,
    .rfq-item-row td:before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: #9ca3af;
        margin-bottom: 4px;
    }

    /* Adjust specific cells */
    .rfq-pro-product-bundle,
    .rfq-product-info {
        align-items: flex-start;
    }

    .rfq-pro-thumb img {
        width: 60px;
        height: 60px;
    }

    .rfq-pro-remove-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #fef2f2;
        color: #ef4444;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rfq-cell-actions.rfq-text-right {
        text-align: left !important;
    }

    .rfq-action-link {
        display: inline-flex;
        margin-top: 10px;
    }

    .rfq-header-actions {
        width: 100%;
    }

    .rfq-header-actions a {
        width: 100%;
        justify-content: center;
    }

    .rfq-pro-qty-control {
        margin-top: 5px;
    }

    /* Account Page Tweaks */
    .rfq-my-account-container {
        padding: 0 15px;
    }

    .rfq-page-header .rfq-header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .rfq-details-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .rfq-status-group {
        width: 100%;
    }

    .rfq-details-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Form Tweaks */
    .rfq-pro-form-card {
        padding: 20px;
    }

    .rfq-pro-form-grid {
        grid-template-columns: 1fr;
    }

    .rfq-thankyou-card {
        padding: 40px 20px;
    }

    .rfq-thankyou-actions {
        flex-direction: column;
        width: 100%;
    }

    .rfq-thankyou-actions a {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Button and UI Helpers */
    .mobile-full {
        width: 100% !important;
    }

    .rfq-add-to-quote-button {
        width: 100%;
        padding: 14px 20px;
    }
}

@media screen and (max-width: 480px) {
    .rfq-main-title {
        font-size: 24px !important;
    }

    .rfq-pro-card {
        padding: 16px;
    }

    .rfq-grand-total-row .rfq-total-value {
        font-size: 24px;
    }
}

 / *   V i e w   Q u o t e   L i n k   A f t e r   A d d   t o   Q u o t e   * / 
 . r f q - v i e w - q u o t e - l i n k   { 
         d i s p l a y :   i n l i n e - b l o c k ; 
         m a r g i n - l e f t :   1 5 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 0 0 7 c b a ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         f o n t - s i z e :   1 4 p x ; 
         v e r t i c a l - a l i g n :   m i d d l e ; 
         a n i m a t i o n :   r f q - f a d e - i n   0 . 3 s   e a s e - o u t ; 
 } 
 
 . r f q - v i e w - q u o t e - l i n k : h o v e r   { 
         t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
         c o l o r :   # 0 0 5 a 8 7 ; 
 } 
 
 @ k e y f r a m e s   r f q - f a d e - i n   { 
         f r o m   { 
                 o p a c i t y :   0 ; 
                 t r a n s f o r m :   t r a n s l a t e X ( - 1 0 p x ) ; 
         } 
         t o   { 
                 o p a c i t y :   1 ; 
                 t r a n s f o r m :   t r a n s l a t e X ( 0 ) ; 
         } 
 } 
  
 