/* ==========================================================
   RFQ PAGES
========================================================== */

.rfq-page,
.rfq-basket,
.rfq-customer {

    background: transparent;

}


/* ==========================================================
   RFQ TABLE
========================================================== */

.rfq-table {

    background: #ffffff;

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

}

.rfq-table thead {

    background: var(--bg-dark);

    color: #ffffff;

}

.rfq-table th {

    padding: 16px;

    text-align: left;

}

.rfq-table td {

    padding: 16px;

    border-bottom: 1px solid var(--border-color);

}


/* ==========================================================
   RFQ EMPTY STATE
========================================================== */

.rfq-empty {

    padding: 60px 20px;

    text-align: center;

    color: var(--text-secondary);

}


/* ==========================================================
   CUSTOMER FORM
========================================================== */

#rfq-form {

    padding: 32px;

    background: #ffffff;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

}

.form-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0,1fr));

    gap: 20px;

}

.form-group {

    margin-bottom: 20px;

}

.form-group label {

    display: block;

    margin-bottom: 8px;

    font-weight: 600;

}

.form-actions {

    display: flex;

    justify-content: flex-end;

    margin-top: 32px;

}


/* ==========================================================
   RFQ QUANTITY
========================================================== */

.rfq-qty {

    display: flex;

    align-items: center;

    gap: 12px;

}

.rfq-qty button {

    width: 32px;

    height: 32px;

    border: none;

    border-radius: 6px;

    cursor: pointer;

}

.remove-rfq {

    border: none;

    background: none;

    color: #d32f2f;

    cursor: pointer;

}


/* ==========================================================
   RFQ BADGE
========================================================== */

.rfq-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 24px;

    height: 24px;

    padding: 0 8px;

    background: var(--color-primary);

    border-radius: 999px;

    color: #ffffff;

    font-size: .75rem;

    font-weight: 700;

}


/* ==========================================================
   THANK YOU PAGE
========================================================== */

.thank-you-page {

    padding: 100px 0;

}

.confirmation-box {

    max-width: 800px;

    margin: 0 auto;

    padding: 48px;

    background: #ffffff;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);

    text-align: center;

}

.reference-number {

    display: inline-block;

    margin: 24px 0;

    padding: 12px 20px;

    background: #F3F4F6;

    border-radius: var(--radius-md);

    font-weight: 700;

}

.thank-you-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 32px;

}