/* 产品详情页询盘弹窗样式 */
.votralee-inquiry-btn {
    margin-left: 8px;
}

.votralee-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.votralee-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.votralee-modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 720px;
    width: calc(100% - 32px);
    max-height: 90vh;
    overflow-y: auto;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.votralee-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
}

.votralee-modal-body {
    display: flex;
    flex-wrap: wrap;
    padding: 28px;
    gap: 24px;
}

.votralee-modal-product {
    flex: 1 1 200px;
}

.votralee-modal-product-img img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.votralee-modal-product-name {
    font-size: 18px;
    font-weight: 700;
    margin-top: 12px;
    color: #222;
}

.votralee-modal-product-price {
    margin-top: 8px;
    color: #c5a363;
    font-weight: 700;
}

.votralee-product-form {
    flex: 1 1 260px;
}

.votralee-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.votralee-form-row input {
    flex: 1 1 45%;
    padding: 11px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.votralee-product-form textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    min-height: 90px;
    box-sizing: border-box;
    resize: vertical;
}

.votralee-products-select {
    margin-top: 14px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px;
    max-height: 180px;
    overflow-y: auto;
}

.votralee-products-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.votralee-product-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 4px 0;
    cursor: pointer;
    color: #333;
}

.votralee-submit-btn {
    width: 100%;
    margin-top: 14px;
    background: #c5a363;
    color: #fff;
    border: none;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.votralee-submit-btn:hover {
    opacity: 0.9;
}

.votralee-form-message {
    margin-top: 12px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.votralee-form-message.success {
    background: #d4edda;
    color: #155724;
}

.votralee-form-message.error {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 600px) {
    .votralee-modal-body {
        flex-direction: column;
        padding: 20px;
    }
    .votralee-form-row input {
        flex: 1 1 100%;
    }
}
