/* for quote box start */
.quote-box {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    margin: auto
}

.quote-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-line {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.info-line::before {
    content: '✔';
    color: #6abe45;
    font-weight: bold;
    margin-right: 6px;
}

.info-line span {
    margin-left: 12px;
    font-size: 13px;
    color: #555;
}

.lead-time {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

.multiples {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.quantity-control button {
    width: 30px;
    height: 30px;
    font-size: 18px;
    background-color: #eee;
    border: none;
    cursor: pointer;
}

.quantity-control input {
    width: 50px;
    text-align: center;
    height: 30px;
    margin: 0 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.quote-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.quote-button:hover {
    background-color: var(--secondary-color);
}

/* for quote  box end */
