.order-insurance {
    padding: 8px 12px;
    border-bottom: 1px solid #f3f3f3;
}

.order-insurance__wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fafafa;
    transition: all 0.2s ease;
}

.order-insurance__wrapper:hover {
    background: #f5fffb;
}

.order-insurance__info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-insurance__input {
    display: none;
}

.order-insurance__checkmark {
    width: 15px;
    height: 15px;
    border: 2px solid #d8d8d8;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.order-insurance__input:checked + .order-insurance__checkmark {
    background: #00b894;
    border-color: #00b894;
}

.order-insurance__input:checked + .order-insurance__checkmark::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.order-insurance__title {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

.order-insurance__fee {
    font-size: 12px;
    font-weight: 600;
    color: #00b894;
    line-height: 1;
}