.kaveh-fbt-container {
    margin: 25px 0;
    padding: 20px;
    border: 2px dashed #eee; /* استایل دش برای تمایز */
    background: #fff;
    border-radius: 15px;
    direction: rtl;
    width: 100%;
    clear: both;
}

.kaveh-fbt-container h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
    font-weight: bold;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.kaveh-fbt-wrapper {
    display: flex;
    flex-direction: column; /* در موبایل زیر هم */
    gap: 20px;
}

/* تصاویر */
.kaveh-fbt-images {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.kaveh-img-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 3px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.kaveh-plus {
    margin: 0 10px;
    font-size: 20px;
    color: #ccc;
}

/* لیست */
.kaveh-fbt-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kaveh-list-item {
    background: #f9f9f9;
    padding: 8px 12px;
    border-radius: 8px;
}

.kaveh-list-item label {
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin: 0;
    width: 100%;
}

.kaveh-fbt-checkbox {
    margin-left: 10px !important;
    width: 18px;
    height: 18px;
}

.kaveh-item-name {
    margin-left: auto; /* نام سمت راست بماند */
    color: #333;
}

.kaveh-item-price {
    color: #ff5722; /* رنگ نارنجی مشابه قالب‌های فروشگاهی */
    font-weight: 700;
    font-family: inherit; /* ارث‌بری فونت فارسی قالب */
}

/* جمع کل */
.kaveh-fbt-total {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kaveh-fbt-total .total-amount {
    font-size: 18px;
    color: #4caf50; /* سبز برای قیمت نهایی */
    font-weight: bold;
}

/* دسکتاپ */
@media (min-width: 768px) {
    .kaveh-fbt-wrapper {
        flex-direction: row;
        align-items: center;
    }
    .kaveh-fbt-list {
        flex: 1;
    }
    .kaveh-fbt-total {
        flex-direction: column;
        justify-content: center;
        border-top: none;
        border-right: 1px solid #eee;
        padding-top: 0;
        padding-right: 20px;
        min-width: 140px;
    }
}