/* Quote box */
.quote-box {
    width: 300px;
    border: 1px solid #dce6ed;
    border-radius: 9px;
    padding: 26px 24px;
    background-color: #fff;
    box-shadow: 0 16px 36px rgba(22, 52, 109, 0.08);
    margin: auto;
}

.quote-title {
    color: #17365f;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

.info-line {
    display: flex;
    align-items: center;
    color: #18a65b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 20px;
}

.info-line::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #18a65b;
    margin-right: 12px;
}

.quote-message {
    margin: 0 0 22px;
    color: #43566d;
    font-size: 15px;
    line-height: 1.65;
}

.quantity-label {
    margin-bottom: 10px;
    color: #17365f;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.quantity-control {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #d3e0e9;
    border-radius: 7px;
    background: #f8fbfd;
}

.quantity-control button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 48px;
    padding: 0;
    font-size: 16px;
    background-color: #f5f9fc;
    border: none;
    color: #0c71c3;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-control button i {
    display: inline-flex;
    line-height: 1;
}

.quantity-control button:hover {
    background: #16346d;
    color: #ffffff;
}

.quantity-control input {
    width: 100%;
    text-align: center;
    height: 48px;
    margin: 0;
    font-size: 17px;
    border: 0;
    border-right: 1px solid #dbe8f1;
    border-left: 1px solid #dbe8f1;
    border-radius: 0;
    background: #ffffff;
    color: #17365f;
    font-weight: 700;
}

.quote-button {
    background: #ffc20a;
    color: #17365f;
    padding: 15px 12px;
    width: 100%;
    border: 1px solid #f2b800;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 194, 10, 0.2);
    transition: all 0.2s ease;
}

.quote-button:hover {
    background: #ffcf3a;
    color: #17365f;
    transform: translateY(-1px);
}

.quote-assurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 19px;
    color: #17365f;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

.quote-assurance > i {
    display: inline-flex;
    color: #0c71c3;
    font-size: 19px;
    line-height: 1;
}

.quote-assurance-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #0c71c3;
}