/* Overlay */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}

/* Modal box */
.quote-modal-content {
    background: #fff;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 4px;
}

/* Header */
.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.close-btn {
    font-size: 22px;
    cursor: pointer;
}

/* Product side */
.quote-products {
    background: #f7f7f7;
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}

/* Item */
.quote-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

/* Left */
.quote-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Image */
.quote-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

/* Title */
.quote-title {
    font-size: 14px;
}

/* Remove */
.remove-item {
    font-size: 18px;
    cursor: pointer;
    color: #999;
}

.remove-item:hover {
    color: red;
}

/* Responsive */
@media (max-width: 767px) {
    .quote-body {
        display: block;
    }
}