/* 报价按钮 */
.wq-add-to-quote,
.wq-add-to-quote-loop {
    cursor: pointer;
}

/* 模态框遮罩 */
.wq-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}
.wq-modal-overlay.active {
    display: flex;
}

/* 模态框主体 */
.wq-modal {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.wq-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wq-modal-header h3 {
    margin: 0;
    font-size: 20px;
}
.wq-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    color: #666;
}

.wq-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.wq-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: right;
}
.wq-modal-footer .button {
    margin-left: 10px;
}

/* 报价清单表格 */
.wq-quote-table {
    width: 100%;
    border-collapse: collapse;
}
.wq-quote-table th,
.wq-quote-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    vertical-align: middle;
}
.wq-quote-table th {
    font-weight: 600;
    background: #f9f9f9;
}
.wq-item-image img {
    width: 60px;
    height: auto;
    display: block;
}
.wq-item-name {
    font-weight: 500;
}
.wq-item-sku {
    font-size: 12px;
    color: #777;
}
.wq-item-moq {
    font-size: 12px;
    color: #b32d2e;
}
.wq-item-price {
    font-weight: 500;
}
.wq-item-qty {
    width: 70px;
    text-align: center;
}
.wq-remove-item {
    background: none;
    border: none;
    color: #b32d2e;
    cursor: pointer;
    font-size: 14px;
}
.wq-update-item {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    margin-left: 5px;
}
.wq-empty-message {
    text-align: center;
    padding: 30px;
    color: #888;
}

/* MOQ 显示 */
.wq-moq-info,
.wq-moq-notice {
    margin: 5px 0;
    font-weight: 600;
    color: #b32d2e;
}
.wq-price-hidden {
    font-style: italic;
    color: #777;
}