.il-fbt-wrapper {
    width: 100%;
    padding: 20px;
    border: 1px solid #dedede;
    border-radius: 12px;
    background: #ffffff;
    box-sizing: border-box;
    font-family: inherit;
}

.il-fbt-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #111111;
    font-size: 16px;
    line-height: 1.3;
}

.il-fbt-title-icon {
    width: 20px;
    color: #FF751F;
    font-size: 19px;
}

.il-fbt-products {
    display: flex;
    flex-direction: column;
}

.il-fbt-product {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 80px;
    padding: 10px 12px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color .2s ease, background .2s ease;
}

.il-fbt-product:not(:first-child) {
    border-color: rgba(255, 117, 31, .28);
    background: #fff7f1;
}

.il-fbt-product + .il-fbt-product {
    margin-top: 16px;
}

.il-fbt-product + .il-fbt-product::before {
    content: "+";
    position: absolute;
    top: -13px;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid #dddddd;
    border-radius: 50%;
    background: #ffffff;
    color: #888888;
    font-size: 16px;
    line-height: 1;
    transform: translateX(-50%);
}

.il-fbt-checkbox-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-width: 28px;
}

.il-fbt-checkbox {
    width: 19px;
    height: 19px;
    margin: 0;
    accent-color: #FF751F;
    cursor: pointer;
}

.il-fbt-locked {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #FF751F;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.il-fbt-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    margin: 0 12px;
    border-radius: 5px;
    background: #fafafa;
    overflow: hidden;
}

.il-fbt-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.il-fbt-info {
    flex: 1;
    min-width: 0;
}

.il-fbt-name {
    display: block;
    margin-bottom: 4px;
    color: #111111;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.il-fbt-meta {
    overflow: hidden;
    color: #777777;
    font-size: 12px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.il-fbt-price {
    margin-left: 12px;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.il-fbt-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 18px;
    border-top: 1px solid #dddddd;
    color: #666666;
    font-size: 14px;
}

.il-fbt-total {
    color: #111111;
    font-size: 23px;
    font-weight: 800;
}

.il-fbt-add-button {
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: #111222;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: opacity .2s ease, transform .1s ease;
}

.il-fbt-add-button:hover {
    opacity: .92;
}

.il-fbt-add-button:active {
    transform: scale(.99);
}

.il-fbt-add-button:disabled {
    opacity: .55;
    cursor: wait;
}

.il-fbt-message {
    min-height: 18px;
    margin-top: 10px;
    color: #777777;
    font-size: 13px;
}

.il-fbt-message.is-error {
    color: #b00020;
}

.il-fbt-message.is-success {
    color: #177245;
}

@media (max-width: 600px) {
    .il-fbt-wrapper {
        padding: 15px;
    }

    .il-fbt-product {
        min-height: 74px;
        padding: 9px;
    }

    .il-fbt-image {
        width: 45px;
        height: 45px;
        min-width: 45px;
        margin: 0 8px;
    }

    .il-fbt-name {
        font-size: 14px;
    }

    .il-fbt-meta {
        font-size: 11px;
    }

    .il-fbt-price {
        margin-left: 8px;
        font-size: 13px;
    }

    .il-fbt-total {
        font-size: 20px;
    }

    .il-fbt-add-button {
        font-size: 14px;
    }
}
