/* استایل موجودی انبار */
.knd-stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    direction: rtl;
}

/* ساختار دو کانتینری */
.knd-price-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
}

.knd-price-section {
    flex: 1;
}

.knd-stock-section {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.knd-stock-section .knd-stock-status {
    margin-left: 40px;
}

/* اطمینان از نمایش درست قیمت و تومان */
.knd-price-final-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* موجود در انبار */
.knd-stock-status.in-stock {
    border-color: #27ae60;
    color: #27ae60;
    background-color: rgba(39, 174, 96, 0.05);
}

.knd-stock-status.in-stock::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #27ae60;
    flex-shrink: 0;
}

/* ناموجود */
.knd-stock-status.out-of-stock {
    border-color: #e74c3c;
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.knd-stock-status.out-of-stock::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e74c3c;
    flex-shrink: 0;
}

/* موجودی کم */
.knd-stock-status.low-stock {
    border-color: #f39c12;
    color: #f39c12;
    background-color: rgba(243, 156, 18, 0.05);
}

.knd-stock-status.low-stock::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f39c12;
    flex-shrink: 0;
}