.wc-fbt-container {
    margin: 0 0 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

.wc-fbt-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.wc-fbt-products-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wc-fbt-product-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e1e1e1;
}

.wc-fbt-product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wc-fbt-product-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.wc-fbt-product-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.wc-fbt-product-image {
    flex-shrink: 0;
}

.wc-fbt-product-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #e1e1e1;
}

.wc-fbt-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wc-fbt-product-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.wc-fbt-product-price {
    font-size: 14px;
    font-weight: 600;
    color: #0073aa;
}

.wc-fbt-product-price del {
    opacity: 0.7;
    font-weight: normal;
}

.wc-fbt-variations-container {
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
}

.wc-fbt-variation-select {
    margin-bottom: 10px;
}

.wc-fbt-variation-select:last-child {
    margin-bottom: 0;
}

.wc-fbt-variation-select label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.wc-fbt-variation-select select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

@media (max-width: 480px) {
    .wc-fbt-product-label {
        gap: 8px;
    }

    .wc-fbt-product-image img {
        width: 40px;
        height: 40px;
    }

    .wc-fbt-product-name {
        font-size: 13px;
    }

    .wc-fbt-product-price {
        font-size: 13px;
    }
}